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

17 lines
423 B
VB.net
Raw Normal View History

Namespace Items.Balls
2016-09-07 18:50:38 +02:00
<Item(174, "Luxury Ball")>
2016-09-07 18:50:38 +02:00
Public Class LuxuryBall
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 = "A particularly comfortable Pokéball that makes a wild Pokémon quickly grow friendlier after being caught."
2016-09-07 18:50:38 +02:00
2016-09-20 05:34:00 +02:00
Public Sub New()
_textureRectangle = New Rectangle(432, 216, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace