diff options
author | dannye <33dannye@gmail.com> | 2020-12-20 14:11:21 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2020-12-20 14:11:21 -0600 |
commit | 9fab715759ddf919b0c4bb9a01095c4c225fcac0 (patch) | |
tree | d07d8bd6294c854061c521c4328f8f5ab62e830d /src/data | |
parent | f7346b9491715307b31ff3d8003e16a976e60961 (diff) |
Fix typos
Diffstat (limited to 'src/data')
-rw-r--r-- | src/data/booster_packs.asm | 2 | ||||
-rw-r--r-- | src/data/effect_commands.asm | 8 | ||||
-rw-r--r-- | src/data/move_animations.asm | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/data/booster_packs.asm b/src/data/booster_packs.asm index 8524ca6..44a401f 100644 --- a/src/data/booster_packs.asm +++ b/src/data/booster_packs.asm @@ -12,7 +12,7 @@ booster_set: MACRO ENDM ; For the energy or energy generation function, there are three options: -; - Ponter to a function that generates energies (some generate one, some generate a full pack) +; - Pointer to a function that generates energies (some generate one, some generate a full pack) ; - A single energy of a specific type ; - $0000 if no card in the pack is an energy diff --git a/src/data/effect_commands.asm b/src/data/effect_commands.asm index 5d38cb4..f90fe80 100644 --- a/src/data/effect_commands.asm +++ b/src/data/effect_commands.asm @@ -11,7 +11,7 @@ EffectCommands: ; 186f7 (6:46f7) ; - EFFECTCMDTYPE_INITIAL_EFFECT_1: Executed right after move or trainer card is used. Bypasses Smokescreen and Sand Attack effects. ; - EFFECTCMDTYPE_INITIAL_EFFECT_2: Executed right after move, Pokemon Power, or trainer card is used. ; - EFFECTCMDTYPE_DISCARD_ENERGY: For moves or trainer cards that require putting one or more attached energy cards into the discard pile. -; - EFFECTCMDTYPE_REQUIRE_SELECTION: For moves, Pokemon Powers, or trainer cards requring the user to select a card (from e.g. play area screen or card list). +; - EFFECTCMDTYPE_REQUIRE_SELECTION: For moves, Pokemon Powers, or trainer cards requiring the user to select a card (from e.g. play area screen or card list). ; - EFFECTCMDTYPE_BEFORE_DAMAGE: Effect command of a move executed prior to the damage step. For trainer card or Pokemon Power, usually the main effect. ; - EFFECTCMDTYPE_AFTER_DAMAGE: Effect command executed after the damage step. ; - EFFECTCMDTYPE_AI_SWITCH_DEFENDING_PKMN: For moves that may result in the defending Pokemon being switched out. Called only for AI-executed moves. @@ -1215,7 +1215,7 @@ KangaskhanFetchEffectCommands: db $00 KangaskhanCometPunchEffectCommands: - dbw EFFECTCMDTYPE_BEFORE_DAMAGE, CometPunch_MultiplerEffect + dbw EFFECTCMDTYPE_BEFORE_DAMAGE, CometPunch_MultiplierEffect dbw EFFECTCMDTYPE_AI, CometPunch_AIEffect db $00 @@ -1230,7 +1230,7 @@ TaurosRampageEffectCommands: db $00 DoduoFuryAttackEffectCommands: - dbw EFFECTCMDTYPE_BEFORE_DAMAGE, FuryAttack_MultiplerEffect + dbw EFFECTCMDTYPE_BEFORE_DAMAGE, FuryAttack_MultiplierEffect dbw EFFECTCMDTYPE_AI, FuryAttack_AIEffect db $00 @@ -1500,7 +1500,7 @@ ImposterProfessorOakEffectCommands: ComputerSearchEffectCommands: dbw EFFECTCMDTYPE_INITIAL_EFFECT_1, ComputerSearch_HandDeckCheck dbw EFFECTCMDTYPE_INITIAL_EFFECT_2, ComputerSearch_PlayerDiscardHandSelection - dbw EFFECTCMDTYPE_BEFORE_DAMAGE, ComputerSearch_DiscardAddToHandEfect + dbw EFFECTCMDTYPE_BEFORE_DAMAGE, ComputerSearch_DiscardAddToHandEffect dbw EFFECTCMDTYPE_REQUIRE_SELECTION, ComputerSearch_PlayerDeckSelection db $00 diff --git a/src/data/move_animations.asm b/src/data/move_animations.asm index 9ead157..222a6d7 100644 --- a/src/data/move_animations.asm +++ b/src/data/move_animations.asm @@ -391,7 +391,7 @@ MoveAnimation_53eb: MoveAnimation_53f6: anim_player ANIM_SPELL_MOVE - anim_opponent ANIM_FURY_SWEEPES + anim_opponent ANIM_FURY_SWIPES anim_opponent ANIM_GET_HIT anim_normal ANIM_SHAKE1 anim_opponent ANIM_SHOW_DAMAGE |