mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-07-31 01:35:20 +02:00
fixed fake-out/first impression working on 2 turns fixed protecting move breaking messages fixed trapping/binding moves and abilities fixed flinch message popping up unnecessarily updated natural gift BP calculation updated some moves' contest category and other stats added roseli, kee, maranga berry effects added alolan pokemon abilities added smacking down effect added terrain as well as its effects replaced polkadot bow (no use) with berserk gene other minor fixes such as typos, captalizations wrapping up other commits
20 lines
658 B
VB.net
20 lines
658 B
VB.net
Namespace Items.Standard
|
|
|
|
<Item(595, "Cell Battery")>
|
|
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
|
|
|
|
Public Sub New()
|
|
_textureRectangle = New Rectangle(192, 312, 24, 24)
|
|
End Sub
|
|
|
|
End Class
|
|
|
|
End Namespace
|