mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-08-20 09:18:34 +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
21 lines
670 B
VB.net
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
|
|
|