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

19 lines
561 B
VB.net
Raw Normal View History

Namespace Items.Repels
2016-09-07 18:50:38 +02:00
<Item(43, "Max Repel")>
2016-09-07 18:50:38 +02:00
Public Class MaxRepel
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 250 steps after its use."
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 700
Public Overrides ReadOnly Property RepelSteps As Integer = 250
2016-09-07 18:50:38 +02:00
2016-09-20 06:29:17 +02:00
Public Sub New()
_textureRectangle = New Rectangle(456, 24, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace