P3D-Legacy/P3D/Pokemon/Items/Balls/Masterball.vb

19 lines
575 B
VB.net
Raw Normal View History

Namespace Items.Balls
2016-09-07 18:50:38 +02:00
<Item(1, "Masterball")>
2016-09-07 18:50:38 +02:00
Public Class Masterball
2016-09-20 05:34:00 +02:00
Inherits BallItem
2016-09-07 18:50:38 +02:00
2016-09-20 05:34:00 +02:00
Public Overrides ReadOnly Property Description As String = "The best Pokéball with the ultimate level of performance. With it, you will catch any wild Pokémon without fail."
Public Overrides ReadOnly Property CanBeTraded As Boolean = False
Public Overrides ReadOnly Property CatchMultiplier As Single = 255.0F
2016-09-07 18:50:38 +02:00
2016-09-20 05:34:00 +02:00
Public Sub New()
_textureRectangle = New Rectangle(0, 0, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace