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

19 lines
565 B
VB.net
Raw Normal View History

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