mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
Shortened ability/move descriptions to fit, added Howl's Gen 8 effect
This commit is contained in:
@@ -865,3 +865,40 @@ class PokeBattle_Move_199 < PokeBattle_Move
|
|||||||
@battle.field.terrain = :None
|
@battle.field.terrain = :None
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#===============================================================================
|
||||||
|
# Increases the user's and allies' Attack by 1 stage. (Howl in Gen 8+)
|
||||||
|
#===============================================================================
|
||||||
|
class PokeBattle_Move_19A < PokeBattle_Move
|
||||||
|
def canSnatch?; return true; end
|
||||||
|
|
||||||
|
def pbMoveFailed?(user, targets)
|
||||||
|
return false if damagingMove?
|
||||||
|
failed = true
|
||||||
|
targets.each do |b|
|
||||||
|
next if b.pbCanRaiseStatStage?(:ATTACK, user, self)
|
||||||
|
failed = false
|
||||||
|
break
|
||||||
|
end
|
||||||
|
if failed
|
||||||
|
@battle.pbDisplay(_INTL("But it failed!"))
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
def pbFailsAgainstTarget?(user, target)
|
||||||
|
return false if damagingMove?
|
||||||
|
return !target.pbCanRaiseStatStage?(:ATTACK, user, self, true)
|
||||||
|
end
|
||||||
|
|
||||||
|
def pbEffectAgainstTarget(user, target)
|
||||||
|
return if damagingMove?
|
||||||
|
target.pbRaiseStatStage(:ATTACK, 1, user)
|
||||||
|
end
|
||||||
|
|
||||||
|
def pbAdditionalEffect(user, target)
|
||||||
|
return if !target.pbCanRaiseStatStage?(:ATTACK, user, self)
|
||||||
|
target.pbRaiseStatStage(:ATTACK, 1, user)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|||||||
@@ -10,11 +10,6 @@ species because of this. This value is also shown in the Pokédex entry screen.
|
|||||||
(Will be implemented by me in the next PR)
|
(Will be implemented by me in the next PR)
|
||||||
|
|
||||||
Some moves have changed properties/effects:
|
Some moves have changed properties/effects:
|
||||||
- Howl's target changed to UserAndAllies, and is now a sound move. It is now
|
|
||||||
blocked by Soundproof (I don't know if it should be checking the allies for
|
|
||||||
pbImmunityByAbility, but leaning towards yes; will Volt Absorb block an
|
|
||||||
Electrified Howl?). Needs a new function code, since it now affects targets
|
|
||||||
rather than the user.
|
|
||||||
- Healing Wish's effect and Lunar Dance's effect are no longer used up if a
|
- Healing Wish's effect and Lunar Dance's effect are no longer used up if a
|
||||||
Pokémon that switches to the targeted position can't make use of it. Each
|
Pokémon that switches to the targeted position can't make use of it. Each
|
||||||
position can only have one of each effect applied at once. (Will be implemented by me in the next PR)
|
position can only have one of each effect applied at once. (Will be implemented by me in the next PR)
|
||||||
@@ -37,11 +32,10 @@ Other notes:
|
|||||||
reverts its form when deposited in the Day Care (all Gens).
|
reverts its form when deposited in the Day Care (all Gens).
|
||||||
- If a battle ends because of Rocky Helmet damage, the side that the Rocky
|
- If a battle ends because of Rocky Helmet damage, the side that the Rocky
|
||||||
Helmet holder is on should lose (Gen 7+) or win (Gen 6-).
|
Helmet holder is on should lose (Gen 7+) or win (Gen 6-).
|
||||||
- Maybe the N-Solarizer/N-Lunarizer/that other fusion item that changes
|
- Maybe the DNA Splicers/N-Solarizer/N-Lunarizer/Reins of Unity should actually
|
||||||
descriptions should actually be two items each (one that combines, one that
|
be two items each (one that combines, one that splits) and they alternate upon
|
||||||
splits) and they alternate upon use. No reasonable game would have multiple
|
use. No reasonable game would have multiple sets of Pokémon to fuse at once,
|
||||||
sets of Pokémon to fuse at once, so allowing just one of each fusion at a time
|
so allowing just one of each fusion at a time is probably fine.
|
||||||
is probably fine.
|
|
||||||
|
|
||||||
Can use Fly from within the Town Map if possible. (Good QoL, add if possible.)
|
Can use Fly from within the Town Map if possible. (Good QoL, add if possible.)
|
||||||
(Will be implemented by me in the next PR)
|
(Will be implemented by me in the next PR)
|
||||||
@@ -129,6 +123,11 @@ Move Effect Changes
|
|||||||
PP) if they were forced to be used by Instruct/Dancer.
|
PP) if they were forced to be used by Instruct/Dancer.
|
||||||
- Rapid Spin now raises the user's Speed by 1 stage (100% additional effect
|
- Rapid Spin now raises the user's Speed by 1 stage (100% additional effect
|
||||||
chance).
|
chance).
|
||||||
|
- Howl's target changed to UserAndAllies, and is now a sound move. It is now
|
||||||
|
blocked by Soundproof (I don't know if it should be checking the allies for
|
||||||
|
pbImmunityByAbility, but leaning towards yes; will Volt Absorb block an
|
||||||
|
Electrified Howl?). Needs a new function code, since it now affects targets
|
||||||
|
rather than the user.
|
||||||
|
|
||||||
Item Effect Changes
|
Item Effect Changes
|
||||||
- Escape Rope's code now supports both consumable and non-consumable versions,
|
- Escape Rope's code now supports both consumable and non-consumable versions,
|
||||||
@@ -158,7 +157,6 @@ Other changes:
|
|||||||
Noibat and Noivern: Flying to Flying/Dragon
|
Noibat and Noivern: Flying to Flying/Dragon
|
||||||
- Aegislash's stats changed.
|
- Aegislash's stats changed.
|
||||||
- Koffing/Weezing gained new abilities.
|
- Koffing/Weezing gained new abilities.
|
||||||
- Vice Grip becomes Vise Grip.
|
|
||||||
- Some items change names (Stick -> Leek, Bicycle -> Bike in Gen 6+, etc.). Only
|
- Some items change names (Stick -> Leek, Bicycle -> Bike in Gen 6+, etc.). Only
|
||||||
Stick changed.
|
Stick changed.
|
||||||
- Changes to evolutions due to removal of moss rock/ice rock/magnetic field.
|
- Changes to evolutions due to removal of moss rock/ice rock/magnetic field.
|
||||||
|
|||||||
@@ -934,55 +934,55 @@ Description = Powers up moves that are super-effective.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[INTREPIDSWORD]
|
[INTREPIDSWORD]
|
||||||
Name = Intrepid Sword
|
Name = Intrepid Sword
|
||||||
Description = Boosts the Pokémon's Attack stat when the Pokémon enters a battle.
|
Description = Boosts Attack when entering a battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DAUNTLESSSHIELD]
|
[DAUNTLESSSHIELD]
|
||||||
Name = Dauntless Shield
|
Name = Dauntless Shield
|
||||||
Description = Boosts the Pokémon's Defense stat when the Pokémon enters a battle.
|
Description = Boosts Defense when entering a battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LIBERO]
|
[LIBERO]
|
||||||
Name = Libero
|
Name = Libero
|
||||||
Description = Changes the Pokémon's type to the type of the move it's about to use.
|
Description = It changes type to that of the move it's about to use.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[BALLFETCH]
|
[BALLFETCH]
|
||||||
Name = Ball Fetch
|
Name = Ball Fetch
|
||||||
Description = If the Pokémon is not holding an item, it will fetch the Poké Ball from the first failed throw of the battle.
|
Description = Retrieves the first thrown Poké Ball if it failed.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[COTTONDOWN]
|
[COTTONDOWN]
|
||||||
Name = Cotton Down
|
Name = Cotton Down
|
||||||
Description = When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself.
|
Description = Scatters Speed-lowering cotton fluff when hit.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PROPELLERTAIL]
|
[PROPELLERTAIL]
|
||||||
Name = Propeller Tail
|
Name = Propeller Tail
|
||||||
Description = Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.
|
Description = This Pokémon's moves cannot be redirected.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MIRRORARMOR]
|
[MIRRORARMOR]
|
||||||
Name = Mirror Armor
|
Name = Mirror Armor
|
||||||
Description = Bounces back only the stat-lowering effects that the Pokémon receives.
|
Description = Bounces back stat-lowering effects.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GULPMISSILE]
|
[GULPMISSILE]
|
||||||
Name = Gulp Missile
|
Name = Gulp Missile
|
||||||
Description = When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack.
|
Description = Catches prey via Surf or Dive, spits it out when hit.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[STALWART]
|
[STALWART]
|
||||||
Name = Stalwart
|
Name = Stalwart
|
||||||
Description = Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.
|
Description = This Pokémon's moves cannot be redirected.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[STEAMENGINE]
|
[STEAMENGINE]
|
||||||
Name = Steam Engine
|
Name = Steam Engine
|
||||||
Description = Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move.
|
Description = Boosts Speed drastically if hit by a Fire or Water move.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PUNKROCK]
|
[PUNKROCK]
|
||||||
Name = Punk Rock
|
Name = Punk Rock
|
||||||
Description = Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves.
|
Description = Powers up own sound moves. Resists other sound moves.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SANDSPIT]
|
[SANDSPIT]
|
||||||
Name = Sand Spit
|
Name = Sand Spit
|
||||||
Description = The Pokémon creates a sandstorm when it's hit by an attack.
|
Description = Creates a sandstorm when hit by an attack.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ICESCALES]
|
[ICESCALES]
|
||||||
Name = Ice Scales
|
Name = Ice Scales
|
||||||
Description = The Pokémon is protected by ice scales, which halve the damage taken from special moves.
|
Description = Halves the damage taken from special moves.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RIPEN]
|
[RIPEN]
|
||||||
Name = Ripen
|
Name = Ripen
|
||||||
@@ -990,7 +990,7 @@ Description = Ripens Berries and doubles their effect.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ICEFACE]
|
[ICEFACE]
|
||||||
Name = Ice Face
|
Name = Ice Face
|
||||||
Description = The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails.
|
Description = Blocks a physical hit, but the ice head breaks.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[POWERSPOT]
|
[POWERSPOT]
|
||||||
Name = Power Spot
|
Name = Power Spot
|
||||||
@@ -998,11 +998,11 @@ Description = Just being next to the Pokémon powers up moves.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MIMICRY]
|
[MIMICRY]
|
||||||
Name = Mimicry
|
Name = Mimicry
|
||||||
Description = Changes the Pokémon's type depending on the terrain.
|
Description = Changes type depending on the terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SCREENCLEANER]
|
[SCREENCLEANER]
|
||||||
Name = Screen Cleaner
|
Name = Screen Cleaner
|
||||||
Description = When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon.
|
Description = On entering battle, clears effects of Reflect, etc.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[STEELYSPIRIT]
|
[STEELYSPIRIT]
|
||||||
Name = Steely Spirit
|
Name = Steely Spirit
|
||||||
@@ -1010,27 +1010,27 @@ Description = Powers up ally Pokémon's Steel-type moves.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PERISHBODY]
|
[PERISHBODY]
|
||||||
Name = Perish Body
|
Name = Perish Body
|
||||||
Description = When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle.
|
Description = Both Pokémon faint 3 turns after taking a contact hit.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WANDERINGSPIRIT]
|
[WANDERINGSPIRIT]
|
||||||
Name = Wandering Spirit
|
Name = Wandering Spirit
|
||||||
Description = The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact.
|
Description = Swaps Abilities with contact-making Pokémon.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GORILLATACTICS]
|
[GORILLATACTICS]
|
||||||
Name = Gorilla Tactics
|
Name = Gorilla Tactics
|
||||||
Description = Boosts the Pokémon's Attack stat but only allows the use of the first selected move.
|
Description = Boosts Attack, but allows only one move to be used.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[NEUTRALIZINGGAS]
|
[NEUTRALIZINGGAS]
|
||||||
Name = Neutralizing Gas
|
Name = Neutralizing Gas
|
||||||
Description = If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered.
|
Description = Nullifies the effects of all other Abilities.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PASTELVEIL]
|
[PASTELVEIL]
|
||||||
Name = Pastel Veil
|
Name = Pastel Veil
|
||||||
Description = Protects the Pokémon and its ally Pokémon from being poisoned.
|
Description = Protects the Pokémon and its allies from poisoning.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[HUNGERSWITCH]
|
[HUNGERSWITCH]
|
||||||
Name = Hunger Switch
|
Name = Hunger Switch
|
||||||
Description = The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn.
|
Description = Changes between Full Belly and Hangry Mode each turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[QUICKDRAW]
|
[QUICKDRAW]
|
||||||
Name = Quick Draw
|
Name = Quick Draw
|
||||||
@@ -1038,11 +1038,11 @@ Description = Enables the Pokémon to move first occasionally.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[UNSEENFIST]
|
[UNSEENFIST]
|
||||||
Name = Unseen Fist
|
Name = Unseen Fist
|
||||||
Description = If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself.
|
Description = The Pokémon's contact moves ignore protections.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[CURIOUSMEDICINE]
|
[CURIOUSMEDICINE]
|
||||||
Name = Curious Medicine
|
Name = Curious Medicine
|
||||||
Description = When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies.
|
Description = Removes all allies' stat changes on joining battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TRANSISTOR]
|
[TRANSISTOR]
|
||||||
Name = Transistor
|
Name = Transistor
|
||||||
@@ -1054,16 +1054,16 @@ Description = Powers up Dragon-type moves.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[CHILLINGNEIGH]
|
[CHILLINGNEIGH]
|
||||||
Name = Chilling Neigh
|
Name = Chilling Neigh
|
||||||
Description = When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat.
|
Description = When knocking out a target, raises Attack.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRIMNEIGH]
|
[GRIMNEIGH]
|
||||||
Name = Grim Neigh
|
Name = Grim Neigh
|
||||||
Description = When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat.
|
Description = When knocking out a target, raises Sp. Atk.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ASONECHILLINGNEIGH]
|
[ASONECHILLINGNEIGH]
|
||||||
Name = As One
|
Name = As One
|
||||||
Description = This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability.
|
Description = Combines Unnerve and Chilling Neigh Abilities.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ASONEGRIMNEIGH]
|
[ASONEGRIMNEIGH]
|
||||||
Name = As One
|
Name = As One
|
||||||
Description = This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability.
|
Description = Combines Unnerve and Grim Neigh Abilities.
|
||||||
@@ -380,7 +380,7 @@ Target = AllNearFoes
|
|||||||
FunctionCode = 00F
|
FunctionCode = 00F
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 20
|
EffectChance = 20
|
||||||
Description = The user transforms its wrath into a fire-like aura to attack. This may also make opposing Pokémon flinch.
|
Description = The user transforms its wrath into a fire-like aura to attack. This may also make foes flinch.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DARKESTLARIAT]
|
[DARKESTLARIAT]
|
||||||
Name = Darkest Lariat
|
Name = Darkest Lariat
|
||||||
@@ -443,7 +443,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 0A5
|
FunctionCode = 0A5
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user pretends to bow its head, but then it stabs the target with its disheveled hair. This attack never misses.
|
Description = The user pretends to bow its head, but then it stabs the target with its disheveled hair. Never misses.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[JAWLOCK]
|
[JAWLOCK]
|
||||||
Name = Jaw Lock
|
Name = Jaw Lock
|
||||||
@@ -455,7 +455,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 190
|
FunctionCode = 190
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = This move prevents the user and the target from switching out until either of them faints. The effect goes away if either of the Pokémon leaves the field.
|
Description = This move prevents the user and the target from switching out until either of them faints.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[THROATCHOP]
|
[THROATCHOP]
|
||||||
Name = Throat Chop
|
Name = Throat Chop
|
||||||
@@ -470,18 +470,6 @@ Flags = Contact,CanProtect,CanMirrorMove
|
|||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user attacks the target's throat. The target cannot use sound-based moves for two turns.
|
Description = The user attacks the target's throat. The target cannot use sound-based moves for two turns.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LASHOUT]
|
|
||||||
Name = Lash Out
|
|
||||||
Type = DARK
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 75
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 5
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 184
|
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
|
||||||
Description = The user lashes out to vent its frustration toward the target. If its stats were lowered during the turn, the power of this move is doubled.
|
|
||||||
#-------------------------------
|
|
||||||
[WICKEDBLOW]
|
[WICKEDBLOW]
|
||||||
Name = Wicked Blow
|
Name = Wicked Blow
|
||||||
Type = DARK
|
Type = DARK
|
||||||
@@ -492,7 +480,19 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 0A0
|
FunctionCode = 0A0
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user, having mastered the Dark style, strikes the target with a fierce blow. This attack always results in a critical hit.
|
Description = Strikes with a fierce blow through mastery of the Dark style. Always results in a critical hit.
|
||||||
|
#-------------------------------
|
||||||
|
[LASHOUT]
|
||||||
|
Name = Lash Out
|
||||||
|
Type = DARK
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 75
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 5
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 184
|
||||||
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
|
Description = The user lashes out to vent its frustration. Power is doubled if its stats dropped this turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[NIGHTSLASH]
|
[NIGHTSLASH]
|
||||||
Name = Night Slash
|
Name = Night Slash
|
||||||
@@ -761,7 +761,7 @@ TotalPP = 10
|
|||||||
Target = User
|
Target = User
|
||||||
Priority = 4
|
Priority = 4
|
||||||
FunctionCode = 186
|
FunctionCode = 186
|
||||||
Description = This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession. Direct contact harshly lowers the attacker's Defense stat.
|
Description = The user protects itself from all attacks. Direct contact lowers the attacker's Defense.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PARTINGSHOT]
|
[PARTINGSHOT]
|
||||||
Name = Parting Shot
|
Name = Parting Shot
|
||||||
@@ -862,7 +862,7 @@ TotalPP = 5
|
|||||||
Target = AllNearFoes
|
Target = AllNearFoes
|
||||||
FunctionCode = 08B
|
FunctionCode = 08B
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = Converting its life-force into power, the user attacks opposing Pokémon. The lower the user's HP, the lower the move's power.
|
Description = Converts life-force into power to attack. The lower the user's HP, the lower the move's power.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ROAROFTIME]
|
[ROAROFTIME]
|
||||||
Name = Roar of Time
|
Name = Roar of Time
|
||||||
@@ -1008,7 +1008,7 @@ Target = AllNearFoes
|
|||||||
FunctionCode = 042
|
FunctionCode = 042
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user swings its tough tail wildly and attacks opposing Pokémon. This also lowers their Attack stats.
|
Description = The user swings its tough tail wildly and attacks all foes. This also lowers their Attack stats.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRAGONBREATH]
|
[DRAGONBREATH]
|
||||||
Name = Dragon Breath
|
Name = Dragon Breath
|
||||||
@@ -1046,7 +1046,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 188
|
FunctionCode = 188
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks twice using Dreepy. If there are two targets, this move hits each target once.
|
Description = The user attacks twice using Dreepy. If there are two targets, this move hits each one once.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DUALCHOP]
|
[DUALCHOP]
|
||||||
Name = Dual Chop
|
Name = Dual Chop
|
||||||
@@ -1083,7 +1083,7 @@ TotalPP = 20
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 18A
|
FunctionCode = 18A
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks by shooting scales two to five times in a row. This move boosts the user's Speed stat but lowers its Defense stat.
|
Description = Attacks by shooting scales two to five times in a row. Boosts the user's Speed but lowers its Defense.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRAGONRAGE]
|
[DRAGONRAGE]
|
||||||
Name = Dragon Rage
|
Name = Dragon Rage
|
||||||
@@ -1169,7 +1169,7 @@ Target = NearOther
|
|||||||
FunctionCode = 178
|
FunctionCode = 178
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form.
|
Description = Morpeko attacks and raises its Speed with energy stored in its cheeks. Type changes with the user's form.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[THUNDER]
|
[THUNDER]
|
||||||
Name = Thunder
|
Name = Thunder
|
||||||
@@ -1243,7 +1243,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 183
|
FunctionCode = 183
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user stabs the target with its electrified beak. If the user attacks before the target, the power of this move is doubled.
|
Description = Stabs the target with an electrified beak. Power is doubled if the user attacks first.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DISCHARGE]
|
[DISCHARGE]
|
||||||
Name = Discharge
|
Name = Discharge
|
||||||
@@ -1258,6 +1258,18 @@ Flags = CanProtect,CanMirrorMove
|
|||||||
EffectChance = 30
|
EffectChance = 30
|
||||||
Description = A flare of electricity is loosed to strike the area around the user. It may also cause paralysis.
|
Description = A flare of electricity is loosed to strike the area around the user. It may also cause paralysis.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[OVERDRIVE]
|
||||||
|
Name = Overdrive
|
||||||
|
Type = ELECTRIC
|
||||||
|
Category = Special
|
||||||
|
BaseDamage = 80
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 10
|
||||||
|
Target = AllNearFoes
|
||||||
|
FunctionCode = 000
|
||||||
|
Flags = CanProtect,CanMirrorMove,Sound
|
||||||
|
Description = The user attacks all foes by twanging a guitar or bass guitar, causing a huge echo and strong vibration.
|
||||||
|
#-------------------------------
|
||||||
[THUNDERCAGE]
|
[THUNDERCAGE]
|
||||||
Name = Thunder Cage
|
Name = Thunder Cage
|
||||||
Type = ELECTRIC
|
Type = ELECTRIC
|
||||||
@@ -1306,7 +1318,7 @@ TotalPP = 20
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 180
|
FunctionCode = 180
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks with electric voltage rising from the ground. This move's power doubles when the target is on Electric Terrain.
|
Description = The user attacks with electric voltage rising from the ground. Power is doubled on Electric Terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[VOLTSWITCH]
|
[VOLTSWITCH]
|
||||||
Name = Volt Switch
|
Name = Volt Switch
|
||||||
@@ -1507,18 +1519,6 @@ Target = UserAndAllies
|
|||||||
FunctionCode = 137
|
FunctionCode = 137
|
||||||
Description = Manipulates magnetic fields to raise the Defense and Sp. Def stats of allies with Plus or Minus Abilities.
|
Description = Manipulates magnetic fields to raise the Defense and Sp. Def stats of allies with Plus or Minus Abilities.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[OVERDRIVE]
|
|
||||||
Name = Overdrive
|
|
||||||
Type = ELECTRIC
|
|
||||||
Category = Special
|
|
||||||
BaseDamage = 80
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 10
|
|
||||||
Target = AllNearFoes
|
|
||||||
FunctionCode = 000
|
|
||||||
Flags = CanProtect,CanMirrorMove,Sound
|
|
||||||
Description = The user attacks opposing Pokémon by twanging a guitar or bass guitar, causing a huge echo and strong vibration.
|
|
||||||
#-------------------------------
|
|
||||||
[THUNDERWAVE]
|
[THUNDERWAVE]
|
||||||
Name = Thunder Wave
|
Name = Thunder Wave
|
||||||
Type = ELECTRIC
|
Type = ELECTRIC
|
||||||
@@ -1564,7 +1564,7 @@ TotalPP = 5
|
|||||||
Target = AllNearOthers
|
Target = AllNearOthers
|
||||||
FunctionCode = 18E
|
FunctionCode = 18E
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks everything around it and faints upon using this move. This move's power is increased on Misty Terrain.
|
Description = The user attacks everything around and faints upon using this move. Power increases on Misty Terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MOONBLAST]
|
[MOONBLAST]
|
||||||
Name = Moonblast
|
Name = Moonblast
|
||||||
@@ -1628,7 +1628,7 @@ Target = NearOther
|
|||||||
FunctionCode = 045
|
FunctionCode = 045
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user attacks the target with so much force that it could break the target's spirit. This also lowers the target's Sp. Atk stat.
|
Description = The user attacks the target with immense force. This also lowers the target's Sp. Atk stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRAININGKISS]
|
[DRAININGKISS]
|
||||||
Name = Draining Kiss
|
Name = Draining Kiss
|
||||||
@@ -1828,7 +1828,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 0C2
|
FunctionCode = 0C2
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks wildly with its thick leek. The user can't move on the next turn, because the force of this move makes it stagger.
|
Description = The user attacks wildly with its thick leek. The user can't move on the next turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[HIGHJUMPKICK]
|
[HIGHJUMPKICK]
|
||||||
Name = High Jump Kick
|
Name = High Jump Kick
|
||||||
@@ -1963,7 +1963,7 @@ Target = NearOther
|
|||||||
FunctionCode = 043
|
FunctionCode = 043
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user overwhelms the target with lightning-like movement before delivering a kick. This also lowers the target's Defense stat.
|
Description = Overwhelms the target with lightning-like movement, then kicks. Lowers the target's Defense stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SECRETSWORD]
|
[SECRETSWORD]
|
||||||
Name = Secret Sword
|
Name = Secret Sword
|
||||||
@@ -2011,7 +2011,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 197
|
FunctionCode = 197
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user attacks by slamming its body into the target. The higher the user's Defense, the more damage it can inflict on the target.
|
Description = The user attacks by slamming its body into the target. Power increases the higher the user's Defense is.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SUBMISSION]
|
[SUBMISSION]
|
||||||
Name = Submission
|
Name = Submission
|
||||||
@@ -2373,7 +2373,7 @@ TotalPP = 15
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 18F
|
FunctionCode = 18F
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user locks the target in and prevents it from fleeing. This move also lowers the target's Defense and Sp. Def every turn.
|
Description = Locks the target in and prevents it from fleeing. Also lowers the target's Defense and Sp. Def each turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[QUICKGUARD]
|
[QUICKGUARD]
|
||||||
Name = Quick Guard
|
Name = Quick Guard
|
||||||
@@ -2484,19 +2484,6 @@ FunctionCode = 03F
|
|||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat.
|
Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PYROBALL]
|
|
||||||
Name = Pyro Ball
|
|
||||||
Type = FIRE
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 120
|
|
||||||
Accuracy = 90
|
|
||||||
TotalPP = 5
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 00A
|
|
||||||
Flags = CanProtect,CanMirrorMove,ThawsUser,Bomb
|
|
||||||
EffectChance = 10
|
|
||||||
Description = The user attacks by igniting a small stone and launching it as a fiery ball at the target. This may also leave the target with a burn.
|
|
||||||
#-------------------------------
|
|
||||||
[FLAREBLITZ]
|
[FLAREBLITZ]
|
||||||
Name = Flare Blitz
|
Name = Flare Blitz
|
||||||
Type = FIRE
|
Type = FIRE
|
||||||
@@ -2510,6 +2497,19 @@ Flags = Contact,CanProtect,CanMirrorMove,ThawsUser
|
|||||||
EffectChance = 10
|
EffectChance = 10
|
||||||
Description = The user cloaks itself in fire and charges at the foe. The user also takes damage and may burn the target.
|
Description = The user cloaks itself in fire and charges at the foe. The user also takes damage and may burn the target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[PYROBALL]
|
||||||
|
Name = Pyro Ball
|
||||||
|
Type = FIRE
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 120
|
||||||
|
Accuracy = 90
|
||||||
|
TotalPP = 5
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 00A
|
||||||
|
Flags = CanProtect,CanMirrorMove,ThawsUser,Bomb
|
||||||
|
EffectChance = 10
|
||||||
|
Description = Attacks by igniting a small stone and launching it as a fiery ball. May also burn the target.
|
||||||
|
#-------------------------------
|
||||||
[FIREBLAST]
|
[FIREBLAST]
|
||||||
Name = Fire Blast
|
Name = Fire Blast
|
||||||
Type = FIRE
|
Type = FIRE
|
||||||
@@ -2712,7 +2712,7 @@ TotalPP = 5
|
|||||||
Target = AllNearFoes
|
Target = AllNearFoes
|
||||||
FunctionCode = 177
|
FunctionCode = 177
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks with energy from jealousy. This leaves all opposing Pokémon that have had their stats boosted during the turn with a burn.
|
Description = The user attacks with energy from jealousy. This burns all foes that had their stats boosted this turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[FLAMEBURST]
|
[FLAMEBURST]
|
||||||
Name = Flame Burst
|
Name = Flame Burst
|
||||||
@@ -3178,7 +3178,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 196
|
FunctionCode = 196
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks the target by controlling the target's item. The move fails if the target doesn't have an item.
|
Description = Attacks the target by controlling its item. The move fails if the target doesn't have an item.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MOONGEISTBEAM]
|
[MOONGEISTBEAM]
|
||||||
Name = Moongeist Beam
|
Name = Moongeist Beam
|
||||||
@@ -3574,7 +3574,7 @@ Target = NearOther
|
|||||||
FunctionCode = 046
|
FunctionCode = 046
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user attacks the target with an acidic liquid created from tart apples. This also lowers the target's Sp. Def stat.
|
Description = Attacks with an acidic liquid created from tart apples. This also lowers the target's Sp. Def.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRUMBEATING]
|
[DRUMBEATING]
|
||||||
Name = Drum Beating
|
Name = Drum Beating
|
||||||
@@ -3587,7 +3587,7 @@ Target = NearOther
|
|||||||
FunctionCode = 044
|
FunctionCode = 044
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user plays its drum, controlling the drum's roots to attack the target. This also lowers the target's Speed stat.
|
Description = The user plays its drum, controlling roots to attack. This also lowers the target's Speed stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRASSPLEDGE]
|
[GRASSPLEDGE]
|
||||||
Name = Grass Pledge
|
Name = Grass Pledge
|
||||||
@@ -3612,7 +3612,7 @@ Target = NearOther
|
|||||||
FunctionCode = 17D
|
FunctionCode = 17D
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense stat.
|
Description = The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SEEDBOMB]
|
[SEEDBOMB]
|
||||||
Name = Seed Bomb
|
Name = Seed Bomb
|
||||||
@@ -3902,7 +3902,7 @@ Accuracy = 0
|
|||||||
TotalPP = 10
|
TotalPP = 10
|
||||||
Target = UserAndAllies
|
Target = UserAndAllies
|
||||||
FunctionCode = 18D
|
FunctionCode = 18D
|
||||||
Description = The user becomes one with the jungle, restoring HP and healing any status conditions of itself and its ally Pokémon in battle.
|
Description = The user becomes one with the jungle, and restores HP and cures status conditions of itself and allies.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LEECHSEED]
|
[LEECHSEED]
|
||||||
Name = Leech Seed
|
Name = Leech Seed
|
||||||
@@ -4123,7 +4123,7 @@ Target = NearOther
|
|||||||
FunctionCode = 00A
|
FunctionCode = 00A
|
||||||
Flags = CanProtect,CanMirrorMove,ThawsUser
|
Flags = CanProtect,CanMirrorMove,ThawsUser
|
||||||
EffectChance = 30
|
EffectChance = 30
|
||||||
Description = The user throws scorching sand at the target to attack. This may also leave the target with a burn.
|
Description = The user throws scorching sand at the target to attack. This may also burn the target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[BONECLUB]
|
[BONECLUB]
|
||||||
Name = Bone Club
|
Name = Bone Club
|
||||||
@@ -4727,6 +4727,18 @@ FunctionCode = 000
|
|||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The target is attacked by a kick launched with muscle-packed power.
|
Description = The target is attacked by a kick launched with muscle-packed power.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[MULTIATTACK]
|
||||||
|
Name = Multi-Attack
|
||||||
|
Type = NORMAL
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 120
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 10
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 09F
|
||||||
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
|
Description = Cloaking itself in high energy, the user slams into the target. This move's type depends on the held memory.
|
||||||
|
#-------------------------------
|
||||||
[TECHNOBLAST]
|
[TECHNOBLAST]
|
||||||
Name = Techno Blast
|
Name = Techno Blast
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -4787,18 +4799,6 @@ FunctionCode = 000
|
|||||||
Flags = CanProtect,CanMirrorMove,Sound
|
Flags = CanProtect,CanMirrorMove,Sound
|
||||||
Description = The user lets loose a horribly echoing shout with the power to inflict damage.
|
Description = The user lets loose a horribly echoing shout with the power to inflict damage.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MULTIATTACK]
|
|
||||||
Name = Multi-Attack
|
|
||||||
Type = NORMAL
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 120
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 10
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 09F
|
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
|
||||||
Description = Cloaking itself in high energy, the user slams into the target. This move's type depends on the held memory.
|
|
||||||
#-------------------------------
|
|
||||||
[REVELATIONDANCE]
|
[REVELATIONDANCE]
|
||||||
Name = Revelation Dance
|
Name = Revelation Dance
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -5170,6 +5170,19 @@ FunctionCode = 000
|
|||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The target is cut with a scythe or a claw. It can also be used to cut down thin trees.
|
Description = The target is cut with a scythe or a claw. It can also be used to cut down thin trees.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[RAPIDSPIN]
|
||||||
|
Name = Rapid Spin
|
||||||
|
Type = NORMAL
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 50
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 40
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 110
|
||||||
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
|
EffectChance = 100
|
||||||
|
Description = A spin attack that raises the user's Speed and eliminates the effects of Bind, Spikes, etc.
|
||||||
|
#-------------------------------
|
||||||
[SNORE]
|
[SNORE]
|
||||||
Name = Snore
|
Name = Snore
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -5205,7 +5218,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 182
|
FunctionCode = 182
|
||||||
Flags = CanProtect,CanMirrorMove,Pulse
|
Flags = CanProtect,CanMirrorMove,Pulse
|
||||||
Description = The user utilizes the power of the terrain to attack. This move's type and power changes depending on the terrain when it's used.
|
Description = Utilizes the power of the terrain to attack. This move's type and power vary with the terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WEATHERBALL]
|
[WEATHERBALL]
|
||||||
Name = Weather Ball
|
Name = Weather Ball
|
||||||
@@ -5379,19 +5392,6 @@ FunctionCode = 093
|
|||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = As long as this move is in use, the user's Attack rises each time the user is hit in battle.
|
Description = As long as this move is in use, the user's Attack rises each time the user is hit in battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAPIDSPIN]
|
|
||||||
Name = Rapid Spin
|
|
||||||
Type = NORMAL
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 50
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 40
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 110
|
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
|
||||||
EffectChance = 100
|
|
||||||
Description = A spin attack that can also eliminate such moves as Bind, Wrap, Leech Seed, and Spikes.
|
|
||||||
#-------------------------------
|
|
||||||
[SPIKECANNON]
|
[SPIKECANNON]
|
||||||
Name = Spike Cannon
|
Name = Spike Cannon
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -6046,9 +6046,9 @@ Category = Status
|
|||||||
Accuracy = 0
|
Accuracy = 0
|
||||||
TotalPP = 40
|
TotalPP = 40
|
||||||
Target = UserAndAllies
|
Target = UserAndAllies
|
||||||
FunctionCode = 01C
|
FunctionCode = 19A
|
||||||
Flags = Sound
|
Flags = Sound
|
||||||
Description = The user howls loudly to raise its spirit, boosting its Attack stat.
|
Description = The user howls loudly to raise the spirit of itself and allies, boosting their Attack stats.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LASERFOCUS]
|
[LASERFOCUS]
|
||||||
Name = Laser Focus
|
Name = Laser Focus
|
||||||
@@ -6577,7 +6577,7 @@ TotalPP = 20
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 13A
|
FunctionCode = 13A
|
||||||
Flags = CanMirrorMove
|
Flags = CanMirrorMove
|
||||||
Description = The user gets teary eyed to make the target lose its combative spirit. This lowers the target's Attack and Sp. Atk stats.
|
Description = Gets teary eyed to make the target lose its will to fight. Lowers the target's Attack and Sp. Atk.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TEATIME]
|
[TEATIME]
|
||||||
Name = Teatime
|
Name = Teatime
|
||||||
@@ -6713,7 +6713,7 @@ Target = NearOther
|
|||||||
FunctionCode = 176
|
FunctionCode = 176
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 20
|
EffectChance = 20
|
||||||
Description = This move inflicts physical or special damage, whichever will be more effective. This may also poison the target.
|
Description = Inflicts physical or special damage, whichever will be more effective. May also poison the target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLUDGEBOMB]
|
[SLUDGEBOMB]
|
||||||
Name = Sludge Bomb
|
Name = Sludge Bomb
|
||||||
@@ -7129,7 +7129,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 195
|
FunctionCode = 195
|
||||||
Flags = CanProtect,CanMirrorMove,Sound
|
Flags = CanProtect,CanMirrorMove,Sound
|
||||||
Description = The user attacks with its tremendous psychic power. This also removes 3 PP from the target's last move.
|
Description = The user attacks with tremendous psychic power. This also removes 3 PP from the target's last move.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[EXPANDINGFORCE]
|
[EXPANDINGFORCE]
|
||||||
Name = Expanding Force
|
Name = Expanding Force
|
||||||
@@ -7141,7 +7141,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 181
|
FunctionCode = 181
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks the target with its psychic power. This move's power goes up and damages all opposing Pokémon on Psychic Terrain.
|
Description = The user attacks the target with psychic power. Powers up and hits all foes on Psychic Terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[EXTRASENSORY]
|
[EXTRASENSORY]
|
||||||
Name = Extrasensory
|
Name = Extrasensory
|
||||||
@@ -7683,10 +7683,10 @@ Type = PSYCHIC
|
|||||||
Category = Status
|
Category = Status
|
||||||
Accuracy = 0
|
Accuracy = 0
|
||||||
TotalPP = 20
|
TotalPP = 20
|
||||||
Priority = -6
|
|
||||||
Target = User
|
Target = User
|
||||||
|
Priority = -6
|
||||||
FunctionCode = 0EA
|
FunctionCode = 0EA
|
||||||
Description = Use it to flee from any wild Pokémon. It can also warp to the last Pokémon Center visited.
|
Description = The user switches place with a party Pokémon. Also warps to the last Pokémon Center visited.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TRICK]
|
[TRICK]
|
||||||
Name = Trick
|
Name = Trick
|
||||||
@@ -7757,7 +7757,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 18B
|
FunctionCode = 18B
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = In this two-turn attack, the user gathers space power and boosts its Sp. Atk stat, then attacks the target on the next turn.
|
Description = Gathers space power and boosts its Sp. Atk stat on the first turn, attacks on the next turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DIAMONDSTORM]
|
[DIAMONDSTORM]
|
||||||
Name = Diamond Storm
|
Name = Diamond Storm
|
||||||
@@ -7935,7 +7935,7 @@ TotalPP = 15
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 17E
|
FunctionCode = 17E
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user pours sticky tar over the target, lowering the target's Speed stat. The target becomes weaker to Fire-type moves.
|
Description = Pours sticky tar over the target, lowering its Speed and making it weaker to Fire-type moves.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WIDEGUARD]
|
[WIDEGUARD]
|
||||||
Name = Wide Guard
|
Name = Wide Guard
|
||||||
@@ -7981,7 +7981,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 199
|
FunctionCode = 199
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user attacks while destroying the terrain. This move fails when the ground hasn't turned into a terrain.
|
Description = The user attacks while destroying the terrain. This move fails when the ground isn't a terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[BEHEMOTHBASH]
|
[BEHEMOTHBASH]
|
||||||
Name = Behemoth Bash
|
Name = Behemoth Bash
|
||||||
@@ -8416,7 +8416,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 183
|
FunctionCode = 183
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user rends the target with its hard gills. If the user attacks before the target, the power of this move is doubled.
|
Description = The user rends the target with its hard gills. Power doubles if the user moves first.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LIQUIDATION]
|
[LIQUIDATION]
|
||||||
Name = Liquidation
|
Name = Liquidation
|
||||||
@@ -8466,7 +8466,7 @@ TotalPP = 15
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 187
|
FunctionCode = 187
|
||||||
Flags = CanProtect,CanMirrorMove,HighCriticalHitRate
|
Flags = CanProtect,CanMirrorMove,HighCriticalHitRate
|
||||||
Description = The user ignores the effects of opposing Pokémon's moves and Abilities that draw in moves, allowing this move to hit the chosen target.
|
Description = The user ignores any effects that redirect moves, allowing this move to hit the chosen target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WATERPLEDGE]
|
[WATERPLEDGE]
|
||||||
Name = Water Pledge
|
Name = Water Pledge
|
||||||
@@ -8641,7 +8641,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 189
|
FunctionCode = 189
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user, having mastered the Water style, strikes the target with a flowing motion three times in a row. This attack always results in a critical hit.
|
Description = Hits three times in a row with mastery of the Water style. This attack always deals critical hits.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WATERSHURIKEN]
|
[WATERSHURIKEN]
|
||||||
Name = Water Shuriken
|
Name = Water Shuriken
|
||||||
@@ -8674,7 +8674,7 @@ Accuracy = 0
|
|||||||
TotalPP = 10
|
TotalPP = 10
|
||||||
Target = UserAndAllies
|
Target = UserAndAllies
|
||||||
FunctionCode = 18C
|
FunctionCode = 18C
|
||||||
Description = The user scatters mysterious water around and restores the HP of itself and its ally Pokémon in the battle.
|
Description = The user scatters mysterious water around and restores the HP of itself and its allies.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAINDANCE]
|
[RAINDANCE]
|
||||||
Name = Rain Dance
|
Name = Rain Dance
|
||||||
|
|||||||
@@ -934,55 +934,55 @@ Description = Powers up moves that are super-effective.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[INTREPIDSWORD]
|
[INTREPIDSWORD]
|
||||||
Name = Intrepid Sword
|
Name = Intrepid Sword
|
||||||
Description = Boosts the Pokémon's Attack stat when the Pokémon enters a battle.
|
Description = Boosts Attack when entering a battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DAUNTLESSSHIELD]
|
[DAUNTLESSSHIELD]
|
||||||
Name = Dauntless Shield
|
Name = Dauntless Shield
|
||||||
Description = Boosts the Pokémon's Defense stat when the Pokémon enters a battle.
|
Description = Boosts Defense when entering a battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LIBERO]
|
[LIBERO]
|
||||||
Name = Libero
|
Name = Libero
|
||||||
Description = Changes the Pokémon's type to the type of the move it's about to use.
|
Description = It changes type to that of the move it's about to use.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[BALLFETCH]
|
[BALLFETCH]
|
||||||
Name = Ball Fetch
|
Name = Ball Fetch
|
||||||
Description = If the Pokémon is not holding an item, it will fetch the Poké Ball from the first failed throw of the battle.
|
Description = Retrieves the first thrown Poké Ball if it failed.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[COTTONDOWN]
|
[COTTONDOWN]
|
||||||
Name = Cotton Down
|
Name = Cotton Down
|
||||||
Description = When the Pokémon is hit by an attack, it scatters cotton fluff around and lowers the Speed stat of all Pokémon except itself.
|
Description = Scatters Speed-lowering cotton fluff when hit.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PROPELLERTAIL]
|
[PROPELLERTAIL]
|
||||||
Name = Propeller Tail
|
Name = Propeller Tail
|
||||||
Description = Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.
|
Description = This Pokémon's moves cannot be redirected.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MIRRORARMOR]
|
[MIRRORARMOR]
|
||||||
Name = Mirror Armor
|
Name = Mirror Armor
|
||||||
Description = Bounces back only the stat-lowering effects that the Pokémon receives.
|
Description = Bounces back stat-lowering effects.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GULPMISSILE]
|
[GULPMISSILE]
|
||||||
Name = Gulp Missile
|
Name = Gulp Missile
|
||||||
Description = When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack.
|
Description = Catches prey via Surf or Dive, spits it out when hit.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[STALWART]
|
[STALWART]
|
||||||
Name = Stalwart
|
Name = Stalwart
|
||||||
Description = Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves.
|
Description = This Pokémon's moves cannot be redirected.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[STEAMENGINE]
|
[STEAMENGINE]
|
||||||
Name = Steam Engine
|
Name = Steam Engine
|
||||||
Description = Boosts the Pokémon's Speed stat drastically if hit by a Fire- or Water-type move.
|
Description = Boosts Speed drastically if hit by a Fire or Water move.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PUNKROCK]
|
[PUNKROCK]
|
||||||
Name = Punk Rock
|
Name = Punk Rock
|
||||||
Description = Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves.
|
Description = Powers up own sound moves. Resists other sound moves.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SANDSPIT]
|
[SANDSPIT]
|
||||||
Name = Sand Spit
|
Name = Sand Spit
|
||||||
Description = The Pokémon creates a sandstorm when it's hit by an attack.
|
Description = Creates a sandstorm when hit by an attack.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ICESCALES]
|
[ICESCALES]
|
||||||
Name = Ice Scales
|
Name = Ice Scales
|
||||||
Description = The Pokémon is protected by ice scales, which halve the damage taken from special moves.
|
Description = Halves the damage taken from special moves.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RIPEN]
|
[RIPEN]
|
||||||
Name = Ripen
|
Name = Ripen
|
||||||
@@ -990,7 +990,7 @@ Description = Ripens Berries and doubles their effect.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ICEFACE]
|
[ICEFACE]
|
||||||
Name = Ice Face
|
Name = Ice Face
|
||||||
Description = The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it hails.
|
Description = Blocks a physical hit, but the ice head breaks.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[POWERSPOT]
|
[POWERSPOT]
|
||||||
Name = Power Spot
|
Name = Power Spot
|
||||||
@@ -998,11 +998,11 @@ Description = Just being next to the Pokémon powers up moves.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MIMICRY]
|
[MIMICRY]
|
||||||
Name = Mimicry
|
Name = Mimicry
|
||||||
Description = Changes the Pokémon's type depending on the terrain.
|
Description = Changes type depending on the terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SCREENCLEANER]
|
[SCREENCLEANER]
|
||||||
Name = Screen Cleaner
|
Name = Screen Cleaner
|
||||||
Description = When the Pokémon enters a battle, the effects of Light Screen, Reflect, and Aurora Veil are nullified for both opposing and ally Pokémon.
|
Description = On entering battle, clears effects of Reflect, etc.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[STEELYSPIRIT]
|
[STEELYSPIRIT]
|
||||||
Name = Steely Spirit
|
Name = Steely Spirit
|
||||||
@@ -1010,27 +1010,27 @@ Description = Powers up ally Pokémon's Steel-type moves.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PERISHBODY]
|
[PERISHBODY]
|
||||||
Name = Perish Body
|
Name = Perish Body
|
||||||
Description = When hit by a move that makes direct contact, the Pokémon and the attacker will faint after three turns unless they switch out of battle.
|
Description = Both Pokémon faint 3 turns after taking a contact hit.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WANDERINGSPIRIT]
|
[WANDERINGSPIRIT]
|
||||||
Name = Wandering Spirit
|
Name = Wandering Spirit
|
||||||
Description = The Pokémon exchanges Abilities with a Pokémon that hits it with a move that makes direct contact.
|
Description = Swaps Abilities with contact-making Pokémon.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GORILLATACTICS]
|
[GORILLATACTICS]
|
||||||
Name = Gorilla Tactics
|
Name = Gorilla Tactics
|
||||||
Description = Boosts the Pokémon's Attack stat but only allows the use of the first selected move.
|
Description = Boosts Attack, but allows only one move to be used.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[NEUTRALIZINGGAS]
|
[NEUTRALIZINGGAS]
|
||||||
Name = Neutralizing Gas
|
Name = Neutralizing Gas
|
||||||
Description = If the Pokémon with Neutralizing Gas is in the battle, the effects of all Pokémon's Abilities will be nullified or will not be triggered.
|
Description = Nullifies the effects of all other Abilities.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PASTELVEIL]
|
[PASTELVEIL]
|
||||||
Name = Pastel Veil
|
Name = Pastel Veil
|
||||||
Description = Protects the Pokémon and its ally Pokémon from being poisoned.
|
Description = Protects the Pokémon and its allies from poisoning.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[HUNGERSWITCH]
|
[HUNGERSWITCH]
|
||||||
Name = Hunger Switch
|
Name = Hunger Switch
|
||||||
Description = The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of each turn.
|
Description = Changes between Full Belly and Hangry Mode each turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[QUICKDRAW]
|
[QUICKDRAW]
|
||||||
Name = Quick Draw
|
Name = Quick Draw
|
||||||
@@ -1038,11 +1038,11 @@ Description = Enables the Pokémon to move first occasionally.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[UNSEENFIST]
|
[UNSEENFIST]
|
||||||
Name = Unseen Fist
|
Name = Unseen Fist
|
||||||
Description = If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself.
|
Description = The Pokémon's contact moves ignore protections.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[CURIOUSMEDICINE]
|
[CURIOUSMEDICINE]
|
||||||
Name = Curious Medicine
|
Name = Curious Medicine
|
||||||
Description = When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies.
|
Description = Removes all allies' stat changes on joining battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TRANSISTOR]
|
[TRANSISTOR]
|
||||||
Name = Transistor
|
Name = Transistor
|
||||||
@@ -1054,16 +1054,16 @@ Description = Powers up Dragon-type moves.
|
|||||||
#-------------------------------
|
#-------------------------------
|
||||||
[CHILLINGNEIGH]
|
[CHILLINGNEIGH]
|
||||||
Name = Chilling Neigh
|
Name = Chilling Neigh
|
||||||
Description = When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat.
|
Description = When knocking out a target, raises Attack.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRIMNEIGH]
|
[GRIMNEIGH]
|
||||||
Name = Grim Neigh
|
Name = Grim Neigh
|
||||||
Description = When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat.
|
Description = When knocking out a target, raises Sp. Atk.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ASONECHILLINGNEIGH]
|
[ASONECHILLINGNEIGH]
|
||||||
Name = As One
|
Name = As One
|
||||||
Description = This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability.
|
Description = Combines Unnerve and Chilling Neigh Abilities.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ASONEGRIMNEIGH]
|
[ASONEGRIMNEIGH]
|
||||||
Name = As One
|
Name = As One
|
||||||
Description = This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability.
|
Description = Combines Unnerve and Grim Neigh Abilities.
|
||||||
204
PBS/moves.txt
204
PBS/moves.txt
@@ -380,7 +380,7 @@ Target = AllNearFoes
|
|||||||
FunctionCode = 00F
|
FunctionCode = 00F
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 20
|
EffectChance = 20
|
||||||
Description = The user transforms its wrath into a fire-like aura to attack. This may also make opposing Pokémon flinch.
|
Description = The user transforms its wrath into a fire-like aura to attack. This may also make foes flinch.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DARKESTLARIAT]
|
[DARKESTLARIAT]
|
||||||
Name = Darkest Lariat
|
Name = Darkest Lariat
|
||||||
@@ -443,7 +443,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 0A5
|
FunctionCode = 0A5
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user pretends to bow its head, but then it stabs the target with its disheveled hair. This attack never misses.
|
Description = The user pretends to bow its head, but then it stabs the target with its disheveled hair. Never misses.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[JAWLOCK]
|
[JAWLOCK]
|
||||||
Name = Jaw Lock
|
Name = Jaw Lock
|
||||||
@@ -455,7 +455,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 190
|
FunctionCode = 190
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = This move prevents the user and the target from switching out until either of them faints. The effect goes away if either of the Pokémon leaves the field.
|
Description = This move prevents the user and the target from switching out until either of them faints.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[THROATCHOP]
|
[THROATCHOP]
|
||||||
Name = Throat Chop
|
Name = Throat Chop
|
||||||
@@ -470,18 +470,6 @@ Flags = Contact,CanProtect,CanMirrorMove
|
|||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user attacks the target's throat. The target cannot use sound-based moves for two turns.
|
Description = The user attacks the target's throat. The target cannot use sound-based moves for two turns.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LASHOUT]
|
|
||||||
Name = Lash Out
|
|
||||||
Type = DARK
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 75
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 5
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 184
|
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
|
||||||
Description = The user lashes out to vent its frustration toward the target. If its stats were lowered during the turn, the power of this move is doubled.
|
|
||||||
#-------------------------------
|
|
||||||
[WICKEDBLOW]
|
[WICKEDBLOW]
|
||||||
Name = Wicked Blow
|
Name = Wicked Blow
|
||||||
Type = DARK
|
Type = DARK
|
||||||
@@ -492,7 +480,19 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 0A0
|
FunctionCode = 0A0
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user, having mastered the Dark style, strikes the target with a fierce blow. This attack always results in a critical hit.
|
Description = Strikes with a fierce blow through mastery of the Dark style. Always results in a critical hit.
|
||||||
|
#-------------------------------
|
||||||
|
[LASHOUT]
|
||||||
|
Name = Lash Out
|
||||||
|
Type = DARK
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 75
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 5
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 184
|
||||||
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
|
Description = The user lashes out to vent its frustration. Power is doubled if its stats dropped this turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[NIGHTSLASH]
|
[NIGHTSLASH]
|
||||||
Name = Night Slash
|
Name = Night Slash
|
||||||
@@ -761,7 +761,7 @@ TotalPP = 10
|
|||||||
Target = User
|
Target = User
|
||||||
Priority = 4
|
Priority = 4
|
||||||
FunctionCode = 186
|
FunctionCode = 186
|
||||||
Description = This move enables the user to protect itself from all attacks. Its chance of failing rises if it is used in succession. Direct contact harshly lowers the attacker's Defense stat.
|
Description = The user protects itself from all attacks. Direct contact lowers the attacker's Defense.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PARTINGSHOT]
|
[PARTINGSHOT]
|
||||||
Name = Parting Shot
|
Name = Parting Shot
|
||||||
@@ -862,7 +862,7 @@ TotalPP = 5
|
|||||||
Target = AllNearFoes
|
Target = AllNearFoes
|
||||||
FunctionCode = 08B
|
FunctionCode = 08B
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = Converting its life-force into power, the user attacks opposing Pokémon. The lower the user's HP, the lower the move's power.
|
Description = Converts life-force into power to attack. The lower the user's HP, the lower the move's power.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[ROAROFTIME]
|
[ROAROFTIME]
|
||||||
Name = Roar of Time
|
Name = Roar of Time
|
||||||
@@ -1008,7 +1008,7 @@ Target = AllNearFoes
|
|||||||
FunctionCode = 042
|
FunctionCode = 042
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user swings its tough tail wildly and attacks opposing Pokémon. This also lowers their Attack stats.
|
Description = The user swings its tough tail wildly and attacks all foes. This also lowers their Attack stats.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRAGONBREATH]
|
[DRAGONBREATH]
|
||||||
Name = Dragon Breath
|
Name = Dragon Breath
|
||||||
@@ -1046,7 +1046,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 188
|
FunctionCode = 188
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks twice using Dreepy. If there are two targets, this move hits each target once.
|
Description = The user attacks twice using Dreepy. If there are two targets, this move hits each one once.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DUALCHOP]
|
[DUALCHOP]
|
||||||
Name = Dual Chop
|
Name = Dual Chop
|
||||||
@@ -1083,7 +1083,7 @@ TotalPP = 20
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 18A
|
FunctionCode = 18A
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks by shooting scales two to five times in a row. This move boosts the user's Speed stat but lowers its Defense stat.
|
Description = Attacks by shooting scales two to five times in a row. Boosts the user's Speed but lowers its Defense.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRAGONRAGE]
|
[DRAGONRAGE]
|
||||||
Name = Dragon Rage
|
Name = Dragon Rage
|
||||||
@@ -1169,7 +1169,7 @@ Target = NearOther
|
|||||||
FunctionCode = 178
|
FunctionCode = 178
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form.
|
Description = Morpeko attacks and raises its Speed with energy stored in its cheeks. Type changes with the user's form.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[THUNDER]
|
[THUNDER]
|
||||||
Name = Thunder
|
Name = Thunder
|
||||||
@@ -1243,7 +1243,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 183
|
FunctionCode = 183
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user stabs the target with its electrified beak. If the user attacks before the target, the power of this move is doubled.
|
Description = Stabs the target with an electrified beak. Power is doubled if the user attacks first.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DISCHARGE]
|
[DISCHARGE]
|
||||||
Name = Discharge
|
Name = Discharge
|
||||||
@@ -1258,6 +1258,18 @@ Flags = CanProtect,CanMirrorMove
|
|||||||
EffectChance = 30
|
EffectChance = 30
|
||||||
Description = A flare of electricity is loosed to strike the area around the user. It may also cause paralysis.
|
Description = A flare of electricity is loosed to strike the area around the user. It may also cause paralysis.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[OVERDRIVE]
|
||||||
|
Name = Overdrive
|
||||||
|
Type = ELECTRIC
|
||||||
|
Category = Special
|
||||||
|
BaseDamage = 80
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 10
|
||||||
|
Target = AllNearFoes
|
||||||
|
FunctionCode = 000
|
||||||
|
Flags = CanProtect,CanMirrorMove,Sound
|
||||||
|
Description = The user attacks all foes by twanging a guitar or bass guitar, causing a huge echo and strong vibration.
|
||||||
|
#-------------------------------
|
||||||
[THUNDERCAGE]
|
[THUNDERCAGE]
|
||||||
Name = Thunder Cage
|
Name = Thunder Cage
|
||||||
Type = ELECTRIC
|
Type = ELECTRIC
|
||||||
@@ -1306,7 +1318,7 @@ TotalPP = 20
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 180
|
FunctionCode = 180
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks with electric voltage rising from the ground. This move's power doubles when the target is on Electric Terrain.
|
Description = The user attacks with electric voltage rising from the ground. Power is doubled on Electric Terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[VOLTSWITCH]
|
[VOLTSWITCH]
|
||||||
Name = Volt Switch
|
Name = Volt Switch
|
||||||
@@ -1507,18 +1519,6 @@ Target = UserAndAllies
|
|||||||
FunctionCode = 137
|
FunctionCode = 137
|
||||||
Description = Manipulates magnetic fields to raise the Defense and Sp. Def stats of allies with Plus or Minus Abilities.
|
Description = Manipulates magnetic fields to raise the Defense and Sp. Def stats of allies with Plus or Minus Abilities.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[OVERDRIVE]
|
|
||||||
Name = Overdrive
|
|
||||||
Type = ELECTRIC
|
|
||||||
Category = Special
|
|
||||||
BaseDamage = 80
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 10
|
|
||||||
Target = AllNearFoes
|
|
||||||
FunctionCode = 000
|
|
||||||
Flags = CanProtect,CanMirrorMove,Sound
|
|
||||||
Description = The user attacks opposing Pokémon by twanging a guitar or bass guitar, causing a huge echo and strong vibration.
|
|
||||||
#-------------------------------
|
|
||||||
[THUNDERWAVE]
|
[THUNDERWAVE]
|
||||||
Name = Thunder Wave
|
Name = Thunder Wave
|
||||||
Type = ELECTRIC
|
Type = ELECTRIC
|
||||||
@@ -1564,7 +1564,7 @@ TotalPP = 5
|
|||||||
Target = AllNearOthers
|
Target = AllNearOthers
|
||||||
FunctionCode = 18E
|
FunctionCode = 18E
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks everything around it and faints upon using this move. This move's power is increased on Misty Terrain.
|
Description = The user attacks everything around and faints upon using this move. Power increases on Misty Terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MOONBLAST]
|
[MOONBLAST]
|
||||||
Name = Moonblast
|
Name = Moonblast
|
||||||
@@ -1628,7 +1628,7 @@ Target = NearOther
|
|||||||
FunctionCode = 045
|
FunctionCode = 045
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user attacks the target with so much force that it could break the target's spirit. This also lowers the target's Sp. Atk stat.
|
Description = The user attacks the target with immense force. This also lowers the target's Sp. Atk stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRAININGKISS]
|
[DRAININGKISS]
|
||||||
Name = Draining Kiss
|
Name = Draining Kiss
|
||||||
@@ -1828,7 +1828,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 0C2
|
FunctionCode = 0C2
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks wildly with its thick leek. The user can't move on the next turn, because the force of this move makes it stagger.
|
Description = The user attacks wildly with its thick leek. The user can't move on the next turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[HIGHJUMPKICK]
|
[HIGHJUMPKICK]
|
||||||
Name = High Jump Kick
|
Name = High Jump Kick
|
||||||
@@ -1963,7 +1963,7 @@ Target = NearOther
|
|||||||
FunctionCode = 043
|
FunctionCode = 043
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user overwhelms the target with lightning-like movement before delivering a kick. This also lowers the target's Defense stat.
|
Description = Overwhelms the target with lightning-like movement, then kicks. Lowers the target's Defense stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SECRETSWORD]
|
[SECRETSWORD]
|
||||||
Name = Secret Sword
|
Name = Secret Sword
|
||||||
@@ -2011,7 +2011,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 197
|
FunctionCode = 197
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user attacks by slamming its body into the target. The higher the user's Defense, the more damage it can inflict on the target.
|
Description = The user attacks by slamming its body into the target. Power increases the higher the user's Defense is.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SUBMISSION]
|
[SUBMISSION]
|
||||||
Name = Submission
|
Name = Submission
|
||||||
@@ -2373,7 +2373,7 @@ TotalPP = 15
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 18F
|
FunctionCode = 18F
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user locks the target in and prevents it from fleeing. This move also lowers the target's Defense and Sp. Def every turn.
|
Description = Locks the target in and prevents it from fleeing. Also lowers the target's Defense and Sp. Def each turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[QUICKGUARD]
|
[QUICKGUARD]
|
||||||
Name = Quick Guard
|
Name = Quick Guard
|
||||||
@@ -2484,19 +2484,6 @@ FunctionCode = 03F
|
|||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat.
|
Description = The user attacks the target at full power. The attack's recoil sharply reduces the user's Sp. Atk stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[PYROBALL]
|
|
||||||
Name = Pyro Ball
|
|
||||||
Type = FIRE
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 120
|
|
||||||
Accuracy = 90
|
|
||||||
TotalPP = 5
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 00A
|
|
||||||
Flags = CanProtect,CanMirrorMove,ThawsUser,Bomb
|
|
||||||
EffectChance = 10
|
|
||||||
Description = The user attacks by igniting a small stone and launching it as a fiery ball at the target. This may also leave the target with a burn.
|
|
||||||
#-------------------------------
|
|
||||||
[FLAREBLITZ]
|
[FLAREBLITZ]
|
||||||
Name = Flare Blitz
|
Name = Flare Blitz
|
||||||
Type = FIRE
|
Type = FIRE
|
||||||
@@ -2510,6 +2497,19 @@ Flags = Contact,CanProtect,CanMirrorMove,ThawsUser
|
|||||||
EffectChance = 10
|
EffectChance = 10
|
||||||
Description = The user cloaks itself in fire and charges at the foe. The user also takes damage and may burn the target.
|
Description = The user cloaks itself in fire and charges at the foe. The user also takes damage and may burn the target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[PYROBALL]
|
||||||
|
Name = Pyro Ball
|
||||||
|
Type = FIRE
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 120
|
||||||
|
Accuracy = 90
|
||||||
|
TotalPP = 5
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 00A
|
||||||
|
Flags = CanProtect,CanMirrorMove,ThawsUser,Bomb
|
||||||
|
EffectChance = 10
|
||||||
|
Description = Attacks by igniting a small stone and launching it as a fiery ball. May also burn the target.
|
||||||
|
#-------------------------------
|
||||||
[FIREBLAST]
|
[FIREBLAST]
|
||||||
Name = Fire Blast
|
Name = Fire Blast
|
||||||
Type = FIRE
|
Type = FIRE
|
||||||
@@ -2712,7 +2712,7 @@ TotalPP = 5
|
|||||||
Target = AllNearFoes
|
Target = AllNearFoes
|
||||||
FunctionCode = 177
|
FunctionCode = 177
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks with energy from jealousy. This leaves all opposing Pokémon that have had their stats boosted during the turn with a burn.
|
Description = The user attacks with energy from jealousy. This burns all foes that had their stats boosted this turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[FLAMEBURST]
|
[FLAMEBURST]
|
||||||
Name = Flame Burst
|
Name = Flame Burst
|
||||||
@@ -3178,7 +3178,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 196
|
FunctionCode = 196
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks the target by controlling the target's item. The move fails if the target doesn't have an item.
|
Description = Attacks the target by controlling its item. The move fails if the target doesn't have an item.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MOONGEISTBEAM]
|
[MOONGEISTBEAM]
|
||||||
Name = Moongeist Beam
|
Name = Moongeist Beam
|
||||||
@@ -3574,7 +3574,7 @@ Target = NearOther
|
|||||||
FunctionCode = 046
|
FunctionCode = 046
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user attacks the target with an acidic liquid created from tart apples. This also lowers the target's Sp. Def stat.
|
Description = Attacks with an acidic liquid created from tart apples. This also lowers the target's Sp. Def.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DRUMBEATING]
|
[DRUMBEATING]
|
||||||
Name = Drum Beating
|
Name = Drum Beating
|
||||||
@@ -3587,7 +3587,7 @@ Target = NearOther
|
|||||||
FunctionCode = 044
|
FunctionCode = 044
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user plays its drum, controlling the drum's roots to attack the target. This also lowers the target's Speed stat.
|
Description = The user plays its drum, controlling roots to attack. This also lowers the target's Speed stat.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[GRASSPLEDGE]
|
[GRASSPLEDGE]
|
||||||
Name = Grass Pledge
|
Name = Grass Pledge
|
||||||
@@ -3612,7 +3612,7 @@ Target = NearOther
|
|||||||
FunctionCode = 17D
|
FunctionCode = 17D
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 100
|
EffectChance = 100
|
||||||
Description = The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense stat.
|
Description = The user inflicts damage by dropping an apple from high above. This also lowers the target's Defense.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SEEDBOMB]
|
[SEEDBOMB]
|
||||||
Name = Seed Bomb
|
Name = Seed Bomb
|
||||||
@@ -3902,7 +3902,7 @@ Accuracy = 0
|
|||||||
TotalPP = 10
|
TotalPP = 10
|
||||||
Target = UserAndAllies
|
Target = UserAndAllies
|
||||||
FunctionCode = 18D
|
FunctionCode = 18D
|
||||||
Description = The user becomes one with the jungle, restoring HP and healing any status conditions of itself and its ally Pokémon in battle.
|
Description = The user becomes one with the jungle, and restores HP and cures status conditions of itself and allies.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LEECHSEED]
|
[LEECHSEED]
|
||||||
Name = Leech Seed
|
Name = Leech Seed
|
||||||
@@ -4123,7 +4123,7 @@ Target = NearOther
|
|||||||
FunctionCode = 00A
|
FunctionCode = 00A
|
||||||
Flags = CanProtect,CanMirrorMove,ThawsUser
|
Flags = CanProtect,CanMirrorMove,ThawsUser
|
||||||
EffectChance = 30
|
EffectChance = 30
|
||||||
Description = The user throws scorching sand at the target to attack. This may also leave the target with a burn.
|
Description = The user throws scorching sand at the target to attack. This may also burn the target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[BONECLUB]
|
[BONECLUB]
|
||||||
Name = Bone Club
|
Name = Bone Club
|
||||||
@@ -4727,6 +4727,18 @@ FunctionCode = 000
|
|||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The target is attacked by a kick launched with muscle-packed power.
|
Description = The target is attacked by a kick launched with muscle-packed power.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[MULTIATTACK]
|
||||||
|
Name = Multi-Attack
|
||||||
|
Type = NORMAL
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 120
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 10
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 09F
|
||||||
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
|
Description = Cloaking itself in high energy, the user slams into the target. This move's type depends on the held memory.
|
||||||
|
#-------------------------------
|
||||||
[TECHNOBLAST]
|
[TECHNOBLAST]
|
||||||
Name = Techno Blast
|
Name = Techno Blast
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -4787,18 +4799,6 @@ FunctionCode = 000
|
|||||||
Flags = CanProtect,CanMirrorMove,Sound
|
Flags = CanProtect,CanMirrorMove,Sound
|
||||||
Description = The user lets loose a horribly echoing shout with the power to inflict damage.
|
Description = The user lets loose a horribly echoing shout with the power to inflict damage.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[MULTIATTACK]
|
|
||||||
Name = Multi-Attack
|
|
||||||
Type = NORMAL
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 120
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 10
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 09F
|
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
|
||||||
Description = Cloaking itself in high energy, the user slams into the target. This move's type depends on the held memory.
|
|
||||||
#-------------------------------
|
|
||||||
[REVELATIONDANCE]
|
[REVELATIONDANCE]
|
||||||
Name = Revelation Dance
|
Name = Revelation Dance
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -5170,6 +5170,19 @@ FunctionCode = 000
|
|||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The target is cut with a scythe or a claw. It can also be used to cut down thin trees.
|
Description = The target is cut with a scythe or a claw. It can also be used to cut down thin trees.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
[RAPIDSPIN]
|
||||||
|
Name = Rapid Spin
|
||||||
|
Type = NORMAL
|
||||||
|
Category = Physical
|
||||||
|
BaseDamage = 50
|
||||||
|
Accuracy = 100
|
||||||
|
TotalPP = 40
|
||||||
|
Target = NearOther
|
||||||
|
FunctionCode = 110
|
||||||
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
|
EffectChance = 100
|
||||||
|
Description = A spin attack that raises the user's Speed and eliminates the effects of Bind, Spikes, etc.
|
||||||
|
#-------------------------------
|
||||||
[SNORE]
|
[SNORE]
|
||||||
Name = Snore
|
Name = Snore
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -5205,7 +5218,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 182
|
FunctionCode = 182
|
||||||
Flags = CanProtect,CanMirrorMove,Pulse
|
Flags = CanProtect,CanMirrorMove,Pulse
|
||||||
Description = The user utilizes the power of the terrain to attack. This move's type and power changes depending on the terrain when it's used.
|
Description = Utilizes the power of the terrain to attack. This move's type and power vary with the terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WEATHERBALL]
|
[WEATHERBALL]
|
||||||
Name = Weather Ball
|
Name = Weather Ball
|
||||||
@@ -5379,19 +5392,6 @@ FunctionCode = 093
|
|||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = As long as this move is in use, the user's Attack rises each time the user is hit in battle.
|
Description = As long as this move is in use, the user's Attack rises each time the user is hit in battle.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAPIDSPIN]
|
|
||||||
Name = Rapid Spin
|
|
||||||
Type = NORMAL
|
|
||||||
Category = Physical
|
|
||||||
BaseDamage = 50
|
|
||||||
Accuracy = 100
|
|
||||||
TotalPP = 40
|
|
||||||
Target = NearOther
|
|
||||||
FunctionCode = 110
|
|
||||||
EffectChance = 100
|
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
|
||||||
Description = A spin attack that can also eliminate such moves as Bind, Wrap, Leech Seed, and Spikes.
|
|
||||||
#-------------------------------
|
|
||||||
[SPIKECANNON]
|
[SPIKECANNON]
|
||||||
Name = Spike Cannon
|
Name = Spike Cannon
|
||||||
Type = NORMAL
|
Type = NORMAL
|
||||||
@@ -6046,9 +6046,9 @@ Category = Status
|
|||||||
Accuracy = 0
|
Accuracy = 0
|
||||||
TotalPP = 40
|
TotalPP = 40
|
||||||
Target = UserAndAllies
|
Target = UserAndAllies
|
||||||
FunctionCode = 01C
|
FunctionCode = 19A
|
||||||
Flags = Sound
|
Flags = Sound
|
||||||
Description = The user howls loudly to raise its spirit, boosting its Attack stat.
|
Description = The user howls loudly to raise the spirit of itself and allies, boosting their Attack stats.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LASERFOCUS]
|
[LASERFOCUS]
|
||||||
Name = Laser Focus
|
Name = Laser Focus
|
||||||
@@ -6577,7 +6577,7 @@ TotalPP = 20
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 13A
|
FunctionCode = 13A
|
||||||
Flags = CanMirrorMove
|
Flags = CanMirrorMove
|
||||||
Description = The user gets teary eyed to make the target lose its combative spirit. This lowers the target's Attack and Sp. Atk stats.
|
Description = Gets teary eyed to make the target lose its will to fight. Lowers the target's Attack and Sp. Atk.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TEATIME]
|
[TEATIME]
|
||||||
Name = Teatime
|
Name = Teatime
|
||||||
@@ -6713,7 +6713,7 @@ Target = NearOther
|
|||||||
FunctionCode = 176
|
FunctionCode = 176
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
EffectChance = 20
|
EffectChance = 20
|
||||||
Description = This move inflicts physical or special damage, whichever will be more effective. This may also poison the target.
|
Description = Inflicts physical or special damage, whichever will be more effective. May also poison the target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[SLUDGEBOMB]
|
[SLUDGEBOMB]
|
||||||
Name = Sludge Bomb
|
Name = Sludge Bomb
|
||||||
@@ -7129,7 +7129,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 195
|
FunctionCode = 195
|
||||||
Flags = CanProtect,CanMirrorMove,Sound
|
Flags = CanProtect,CanMirrorMove,Sound
|
||||||
Description = The user attacks with its tremendous psychic power. This also removes 3 PP from the target's last move.
|
Description = The user attacks with tremendous psychic power. This also removes 3 PP from the target's last move.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[EXPANDINGFORCE]
|
[EXPANDINGFORCE]
|
||||||
Name = Expanding Force
|
Name = Expanding Force
|
||||||
@@ -7141,7 +7141,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 181
|
FunctionCode = 181
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user attacks the target with its psychic power. This move's power goes up and damages all opposing Pokémon on Psychic Terrain.
|
Description = The user attacks the target with psychic power. Powers up and hits all foes on Psychic Terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[EXTRASENSORY]
|
[EXTRASENSORY]
|
||||||
Name = Extrasensory
|
Name = Extrasensory
|
||||||
@@ -7686,7 +7686,7 @@ TotalPP = 20
|
|||||||
Target = User
|
Target = User
|
||||||
Priority = -6
|
Priority = -6
|
||||||
FunctionCode = 0EA
|
FunctionCode = 0EA
|
||||||
Description = Use it to flee from any wild Pokémon. It can also warp to the last Pokémon Center visited.
|
Description = The user switches place with a party Pokémon. Also warps to the last Pokémon Center visited.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[TRICK]
|
[TRICK]
|
||||||
Name = Trick
|
Name = Trick
|
||||||
@@ -7757,7 +7757,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 18B
|
FunctionCode = 18B
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = In this two-turn attack, the user gathers space power and boosts its Sp. Atk stat, then attacks the target on the next turn.
|
Description = Gathers space power and boosts its Sp. Atk stat on the first turn, attacks on the next turn.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[DIAMONDSTORM]
|
[DIAMONDSTORM]
|
||||||
Name = Diamond Storm
|
Name = Diamond Storm
|
||||||
@@ -7935,7 +7935,7 @@ TotalPP = 15
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 17E
|
FunctionCode = 17E
|
||||||
Flags = CanProtect,CanMirrorMove
|
Flags = CanProtect,CanMirrorMove
|
||||||
Description = The user pours sticky tar over the target, lowering the target's Speed stat. The target becomes weaker to Fire-type moves.
|
Description = Pours sticky tar over the target, lowering its Speed and making it weaker to Fire-type moves.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WIDEGUARD]
|
[WIDEGUARD]
|
||||||
Name = Wide Guard
|
Name = Wide Guard
|
||||||
@@ -7981,7 +7981,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 199
|
FunctionCode = 199
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user attacks while destroying the terrain. This move fails when the ground hasn't turned into a terrain.
|
Description = The user attacks while destroying the terrain. This move fails when the ground isn't a terrain.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[BEHEMOTHBASH]
|
[BEHEMOTHBASH]
|
||||||
Name = Behemoth Bash
|
Name = Behemoth Bash
|
||||||
@@ -8416,7 +8416,7 @@ TotalPP = 10
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 183
|
FunctionCode = 183
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user rends the target with its hard gills. If the user attacks before the target, the power of this move is doubled.
|
Description = The user rends the target with its hard gills. Power doubles if the user moves first.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[LIQUIDATION]
|
[LIQUIDATION]
|
||||||
Name = Liquidation
|
Name = Liquidation
|
||||||
@@ -8466,7 +8466,7 @@ TotalPP = 15
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 187
|
FunctionCode = 187
|
||||||
Flags = CanProtect,CanMirrorMove,HighCriticalHitRate
|
Flags = CanProtect,CanMirrorMove,HighCriticalHitRate
|
||||||
Description = The user ignores the effects of opposing Pokémon's moves and Abilities that draw in moves, allowing this move to hit the chosen target.
|
Description = The user ignores any effects that redirect moves, allowing this move to hit the chosen target.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WATERPLEDGE]
|
[WATERPLEDGE]
|
||||||
Name = Water Pledge
|
Name = Water Pledge
|
||||||
@@ -8641,7 +8641,7 @@ TotalPP = 5
|
|||||||
Target = NearOther
|
Target = NearOther
|
||||||
FunctionCode = 189
|
FunctionCode = 189
|
||||||
Flags = Contact,CanProtect,CanMirrorMove
|
Flags = Contact,CanProtect,CanMirrorMove
|
||||||
Description = The user, having mastered the Water style, strikes the target with a flowing motion three times in a row. This attack always results in a critical hit.
|
Description = Hits three times in a row with mastery of the Water style. This attack always deals critical hits.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[WATERSHURIKEN]
|
[WATERSHURIKEN]
|
||||||
Name = Water Shuriken
|
Name = Water Shuriken
|
||||||
@@ -8674,7 +8674,7 @@ Accuracy = 0
|
|||||||
TotalPP = 10
|
TotalPP = 10
|
||||||
Target = UserAndAllies
|
Target = UserAndAllies
|
||||||
FunctionCode = 18C
|
FunctionCode = 18C
|
||||||
Description = The user scatters mysterious water around and restores the HP of itself and its ally Pokémon in the battle.
|
Description = The user scatters mysterious water around and restores the HP of itself and its allies.
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
[RAINDANCE]
|
[RAINDANCE]
|
||||||
Name = Rain Dance
|
Name = Rain Dance
|
||||||
|
|||||||
Reference in New Issue
Block a user