P3D-Legacy/P3D/Pokemon/Items/Repels/Repel.vb

19 lines
553 B
VB.net
Raw Normal View History

Namespace Items.Repels
2016-09-07 18:50:38 +02:00
<Item(20, "Repel")>
2016-09-07 18:50:38 +02:00
Public Class Repel
2016-09-20 06:29:17 +02:00
Inherits RepelItem
2016-09-07 18:50:38 +02:00
2016-09-20 06:29:17 +02:00
Public Overrides ReadOnly Property Description As String = "An item that prevents any low-level wild Pokémon from jumping out at you for 100 steps after its use."
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 350
Public Overrides ReadOnly Property RepelSteps As Integer = 100
2016-09-07 18:50:38 +02:00
2016-09-20 06:29:17 +02:00
Public Sub New()
_textureRectangle = New Rectangle(432, 0, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace