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

19 lines
520 B
VB.net
Raw Normal View History

2018-10-26 10:03:33 +02:00
Namespace Items.Standard
<Item(1996, "Burn Drive")>
Public Class BurnDrive
Inherits Item
Public Overrides ReadOnly Property Description As String = "Makes Techno Blast a Fire-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(0, 312, 24, 24)
End Sub
End Class
End Namespace