19 lines
364 B
VB.net
19 lines
364 B
VB.net
|
Namespace Items.MegaStones
|
||
|
|
||
|
''' <summary>
|
||
|
''' The Mega Stone for Gyarados.
|
||
|
''' </summary>
|
||
|
<Item(521, "Gyaradosite")>
|
||
|
Public Class Gyaradosite
|
||
|
|
||
|
Inherits MegaStone
|
||
|
|
||
|
Public Sub New()
|
||
|
MyBase.New("Gyarados", 130)
|
||
|
_textureRectangle = New Rectangle(96, 24, 24, 24)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|