diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-15 12:39:50 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-15 12:39:50 -0400 |
| commit | 15bcd882288c2f7e4a902a44cd9b90d76306fcf9 (patch) | |
| tree | 69c94c4e36c13e814774da529f7ed19e6a662e2c /data/trainers/special_moves.asm | |
| parent | Merge pull request #273 from Rangi42/master (diff) | |
| download | pokeyellow-15bcd882288c2f7e4a902a44cd9b90d76306fcf9.tar.gz pokeyellow-15bcd882288c2f7e4a902a44cd9b90d76306fcf9.tar.xz pokeyellow-15bcd882288c2f7e4a902a44cd9b90d76306fcf9.zip | |
Indent comments that describe data table macro formats
Diffstat (limited to 'data/trainers/special_moves.asm')
| -rwxr-xr-x | data/trainers/special_moves.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/trainers/special_moves.asm b/data/trainers/special_moves.asm index 84969367..da19f587 100755 --- a/data/trainers/special_moves.asm +++ b/data/trainers/special_moves.asm @@ -1,9 +1,9 @@ ; unique moves for gym leaders -LoneMoves: -; pokemon index, move to give nth pokemon ; this is not automatic! you have to write the index you want to [wLoneAttackNo] ; first. e.g., erika's script writes 4 to [wLoneAttackNo] to get mega drain, ; the fourth entry in the list. +LoneMoves: + ; pokemon index, move to give nth pokemon db 1, BIDE db 1, BUBBLEBEAM db 2, THUNDERBOLT @@ -14,10 +14,10 @@ LoneMoves: db 4, FISSURE ; unique moves for elite 4 -TeamMoves: -; trainer, move ; all trainers in this class are given this move automatically ; (unrelated to LoneMoves) +TeamMoves: + ; trainer, move db LORELEI, BLIZZARD db BRUNO, FISSURE db AGATHA, TOXIC |
