P3D-Legacy/P3D/Pokemon/Items/KeyItems/GSBall.vb

17 lines
356 B
VB.net

Namespace Items.KeyItems
<Item(115, "GS Ball")>
Public Class GSBall
Inherits KeyItem
Public Overrides ReadOnly Property Description As String = "A mysterious Pokéball. Its purpose is unknown."
Public Sub New()
_textureRectangle = New Rectangle(384, 96, 24, 24)
End Sub
End Class
End Namespace