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

19 lines
361 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 Lopunnite.
''' </summary>
<Item(544, "Lopunnite")>
2016-09-07 18:50:38 +02:00
Public Class Lopunnite
Inherits MegaStone
Public Sub New()
2016-09-20 06:22:25 +02:00
MyBase.New("Lopunny", 428)
_textureRectangle = New Rectangle(216, 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