2016-09-19 04:34:12 +02:00
Namespace Items . Balls
2016-09-07 18:50:38 +02:00
2016-09-19 04:34:12 +02:00
<Item(181, "Safari Ball")>
2016-09-07 18:50:38 +02:00
Public Class SafariBall
2016-09-20 05:34:00 +02:00
Inherits BallItem
2016-09-07 18:50:38 +02:00
2019-09-15 10:39:34 +02:00
Public Overrides ReadOnly Property CanBeHold As Boolean = False
2016-09-20 05:34:00 +02:00
Public Overrides ReadOnly Property Description As String = " A special Pokéball that is used only in the Great Marsh and the Safari Zone. It is decorated in a camouflage pattern. "
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
Public Overrides ReadOnly Property CatchMultiplier As Single = 1 . 5F
2016-09-07 18:50:38 +02:00
2016-09-20 05:34:00 +02:00
Public Sub New ( )
_textureRectangle = New Rectangle ( 72 , 144 , 24 , 24 )
2016-09-07 18:50:38 +02:00
End Sub
End Class
2016-09-19 04:34:12 +02:00
End Namespace