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

17 lines
425 B
VB.net
Raw Normal View History

Namespace Items.KeyItems
2016-09-07 18:50:38 +02:00
<Item(67, "SecretPotion")>
2016-09-07 18:50:38 +02:00
Public Class SecretPotion
2016-09-20 06:03:05 +02:00
Inherits KeyItem
2016-09-07 18:50:38 +02:00
2016-09-20 06:03:05 +02:00
Public Overrides ReadOnly Property Description As String = "A fantastic medicine dispensed by the pharmacy in Cianwood City. It fully heals a Pokémon of any ailment."
2016-09-07 18:50:38 +02:00
2016-09-20 06:03:05 +02:00
Public Sub New()
_textureRectangle = New Rectangle(456, 48, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace