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

17 lines
422 B
VB.net
Raw Normal View History

Namespace Items.Stones
2016-09-07 18:50:38 +02:00
<Item(24, "Water Stone")>
2016-09-07 18:50:38 +02:00
Public Class WaterStone
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 can make certain species of Pokémon evolve. It is the blue of a pool of clear water."
2016-09-07 18:50:38 +02:00
Public Sub New()
2016-09-21 00:50:35 +02:00
_textureRectangle = New Rectangle(24, 24, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace