diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2020-05-11 11:34:02 +0100 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2020-12-16 00:18:20 +0000 |
commit | edc1887122ac25073fa167a23d5af23ae2c37154 (patch) | |
tree | 5ad3bae9ea1a6b51b3172cf33c2334095d6c8995 /src/data/effect_commands.asm | |
parent | 4137fd0fd67dcb3236425cf42050665f63fd27b0 (diff) |
Butterfree attack effects
Diffstat (limited to 'src/data/effect_commands.asm')
-rw-r--r-- | src/data/effect_commands.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/data/effect_commands.asm b/src/data/effect_commands.asm index 7021bd9..9b93372 100644 --- a/src/data/effect_commands.asm +++ b/src/data/effect_commands.asm @@ -58,7 +58,7 @@ WeepinbellPoisonPowderEffectCommands: db $00 VictreebelLureEffectCommands: - dbw EFFECTCMDTYPE_INITIAL_EFFECT_1, VictreebelLure_CheckBenchPokemon + dbw EFFECTCMDTYPE_INITIAL_EFFECT_1, VictreebelLure_CheckBench dbw EFFECTCMDTYPE_AFTER_DAMAGE, VictreebelLure_SwitchEffect dbw EFFECTCMDTYPE_REQUIRE_SELECTION, VictreebelLure_PlayerSelectEffect dbw EFFECTCMDTYPE_UNKNOWN_08, VictreebelLure_AISelectEffect @@ -219,13 +219,13 @@ NidorinoDoubleKickEffectCommands: db $00 ButterfreeWhirlwindEffectCommands: - dbw EFFECTCMDTYPE_AFTER_DAMAGE, $4b09 - dbw EFFECTCMDTYPE_REQUIRE_SELECTION, $4af3 - dbw EFFECTCMDTYPE_SWITCH_DEFENDING_PKMN, $4af3 + dbw EFFECTCMDTYPE_AFTER_DAMAGE, ButterfreeWhirlwind_SwitchEffect + dbw EFFECTCMDTYPE_REQUIRE_SELECTION, ButterfreeWhirlwind_CheckBench + dbw EFFECTCMDTYPE_SWITCH_DEFENDING_PKMN, ButterfreeWhirlwind_CheckBench db $00 ButterfreeMegaDrainEffectCommands: - dbw EFFECTCMDTYPE_AFTER_DAMAGE, $4b0f + dbw EFFECTCMDTYPE_AFTER_DAMAGE, ButterfreeMegaDrainEffect db $00 ParasSporeEffectCommands: |