P3D-Legacy/P3D/Pokemon/Items/Stones/StickyRock.vb

20 lines
642 B
VB.net
Raw Normal View History

Namespace Items.Stones
2016-09-07 18:50:38 +02:00
<Item(262, "Sticky Rock")>
2016-09-07 18:50:38 +02:00
Public Class StickyRock
Inherits Item
2016-09-21 00:50:35 +02:00
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 300
Public Overrides ReadOnly Property Description As String = "It's a stone that sticks to other stones, but it's just a regular rock and has no effect on Pokémon."
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
2016-09-07 18:50:38 +02:00
2016-09-21 00:50:35 +02:00
Public Sub New()
_textureRectangle = New Rectangle(480, 240, 24, 24)
2016-09-07 18:50:38 +02:00
End Sub
End Class
End Namespace