mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-22 10:18:40 +02:00
18 lines
455 B
VB.net
18 lines
455 B
VB.net
Namespace Items.Balls
|
|
|
|
<Item(165, "Moon Ball")>
|
|
Public Class MoonBall
|
|
|
|
Inherits BallItem
|
|
|
|
Public Overrides ReadOnly Property Description As String = "A Pokéball for catching Pokémon that evolve using the Moon Stone."
|
|
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 150
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(216, 144, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|