P3D-Legacy/P3D/Pokemon/Items/Standard/TerrainExtender.vb
Ruan Pablo aedec48f93 Terrain final implementation + typos and move fixes
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
2019-09-27 15:46:23 -03:00

21 lines
670 B
VB.net

Namespace Items.Standard
<Item(600, "Terrain Extender")>
Public Class TerrainExtender
Inherits Item
Public Overrides ReadOnly Property Description As String = "An item to be held by a Pokémon. It extends the duration of the terrain caused by the holder's move or Ability."
Public Overrides ReadOnly Property PokeDollarPrice As Integer = 2000
Public Overrides ReadOnly Property CanBeUsedInBattle As Boolean = False
Public Overrides ReadOnly Property CanBeUsed As Boolean = False
Public Sub New()
_textureRectangle = New Rectangle(288, 312, 24, 24)
End Sub
End Class
End Namespace