P3D-Legacy/P3D/Pokemon/Items/Stones/ShinyStone.vb

17 lines
416 B
VB.net
Raw Normal View History

Namespace Items.Standard
2016-09-07 18:50:38 +02:00
<Item(135, "Shiny Stone")>
2016-09-07 18:50:38 +02:00
Public Class ShinyStone
Inherits StoneItem
2016-09-07 18:50:38 +02:00
2016-09-21 00:50:35 +02:00
Public Overrides ReadOnly Property Description As String = "A peculiar stone that makes certain species of Pokémon evolve. It shines with a dazzling light."
2016-09-07 18:50:38 +02:00
Public Sub New()
2016-09-21 00:50:35 +02:00
_textureRectangle = New Rectangle(336, 192, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace