21 lines
644 B
VB.net
21 lines
644 B
VB.net
|
Namespace Items.Standard
|
|||
|
|
|||
|
<Item(597, "Grassy Seed")>
|
|||
|
Public Class GrassySeed
|
|||
|
|
|||
|
Inherits Item
|
|||
|
|
|||
|
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It boosts Defense on Grassy Terrain. It can only be used once."
|
|||
|
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2000
|
|||
|
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
|||
|
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
|||
|
|
|||
|
Public Sub New()
|
|||
|
_textureRectangle = New Rectangle(336, 312, 24, 24)
|
|||
|
End Sub
|
|||
|
|
|||
|
End Class
|
|||
|
|
|||
|
End Namespace
|
|||
|
|