P3D-Legacy/P3D/Pokemon/Items/Standard/ChillDrive.vb

19 lines
523 B
VB.net
Raw Normal View History

2018-10-26 10:03:33 +02:00
Namespace Items.Standard
<Item(1997, "Chill Drive")>
Public Class ChillDrive
Inherits Item
Public Overrides ReadOnly Property Description As String = "Makes Techno Blast an Ice-type move if held by Genesect."
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
Public Sub New()
_textureRectangle = New Rectangle(24, 312, 24, 24)
End Sub
End Class
End Namespace