2019-02-19 06:40:44 +01:00
Namespace Items . Standard
2019-09-27 20:46:23 +02:00
<Item(595, "Cell Battery")>
2019-02-19 06:40:44 +01:00
Public Class CellBattery
Inherits Item
Public Overrides ReadOnly Property Description As String = " An item to be held by a Pokémon. It boosts Attack if hit with an Electric-type attack. It can only be used once. "
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 200
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
2022-05-07 00:45:59 +02:00
Public Overrides ReadOnly Property PluralName As String = " Cell Batteries "
2019-02-19 06:40:44 +01:00
Public Sub New ( )
_textureRectangle = New Rectangle ( 192 , 312 , 24 , 24 )
End Sub
End Class
End Namespace