diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-10 23:29:47 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-10 23:29:47 -0500 |
commit | 532724e90f40e30641770902d3dbbb6725ca747d (patch) | |
tree | 2b4448bd9435df2af0283d15606e4c0895c4c304 | |
parent | 0a3b251dcb710a8319d6633122d92a983bcefd1c (diff) |
Comment on the original function of move grammar
-rw-r--r-- | data/moves/grammar.asm | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/data/moves/grammar.asm b/data/moves/grammar.asm index c11ee78c3..a4ee581cb 100644 --- a/data/moves/grammar.asm +++ b/data/moves/grammar.asm @@ -1,9 +1,9 @@ ; Used by GetMoveGrammar (see engine/battle/used_move_text.asm) ; Each move is given an identifier for what usedmovetext to use (0-4). -; Made redundant in English localization. +; Made redundant in English localization, where all are just "[move]!" MoveGrammar: ; 105e7a -; 0 +; 0: originally "[move]¯つかった!" ("[move]¯tsukatta!", or "used¯[move]!") db SWORDS_DANCE db GROWTH db STRENGTH @@ -34,7 +34,8 @@ MoveGrammar: ; 105e7a db PSYCH_UP db EXTREMESPEED db 0 ; end set -; 1 + +; 1: originally "[move]した!" ("did [move]!") db RECOVER db TELEPORT db BIDE @@ -42,7 +43,8 @@ MoveGrammar: ; 105e7a db AMNESIA db FLAIL db 0 ; end set -; 2 + +; 2: originally "[move]¯した!" ("did¯[move]!") db MEDITATE db AGILITY db MIMIC @@ -52,7 +54,8 @@ MoveGrammar: ; 105e7a db STRUGGLE db SCARY_FACE db 0 ; end set -; 3 + +; 3: originally "[move] こうげき!" ("[move] attack!") db POUND db SCRATCH db VICEGRIP @@ -92,6 +95,8 @@ MoveGrammar: ; 105e7a db ATTRACT db ROCK_SMASH db 0 ; end set -; all other moves = 4 + +; 4: "[move]!", originally and localized +; Any move not listed above uses this grammar. db -1 ; end ; 105ed0 |