21 lines
711 B
VB.net
21 lines
711 B
VB.net
|
Namespace Items.Standard
|
||
|
|
||
|
<Item(76, "Soft Sand")>
|
||
|
Public Class SoftSand
|
||
|
|
||
|
Inherits Item
|
||
|
|
||
|
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It is a loose, silky sand that boosts the power of Ground-type moves."
|
||
|
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 100
|
||
|
Public Overrides ReadOnly Property FlingDamage As Integer = 10
|
||
|
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
|
||
|
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
|
||
|
|
||
|
Public Sub New()
|
||
|
_textureRectangle = New Rectangle(144, 72, 24, 24)
|
||
|
End Sub
|
||
|
|
||
|
End Class
|
||
|
|
||
|
End Namespace
|