P3D-Legacy/P3D/Pokemon/Items/MegaStones/Latiasite.vb

19 lines
357 B
VB.net
Raw Normal View History

2016-09-19 03:26:44 +02:00
Namespace Items.MegaStones
2016-09-07 18:50:38 +02:00
''' <summary>
''' The Mega Stone for Latias.
''' </summary>
<Item(542, "Latiasite")>
2016-09-07 18:50:38 +02:00
Public Class Latiasite
Inherits MegaStone
Public Sub New()
2016-09-20 06:22:25 +02:00
MyBase.New("Latias", 380)
_textureRectangle = New Rectangle(168, 72, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
2016-09-19 03:26:44 +02:00
End Namespace