diff options
author | xCrystal <rgr.crystal@gmail.com> | 2015-04-09 01:17:56 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2015-04-09 01:17:56 +0200 |
commit | 61edd43974bf53aaacf96a355ebf2d1e35b59c91 (patch) | |
tree | e42f24ea0c51289ad5984835392bfefadafc27ac /wram.asm | |
parent | b2dc57576d13ebf4dfa35b0132b003d2cfe4d39e (diff) |
Document DisableEffect and CheckEnemyStatusConditions
basically copy/paste comments and labels from
CheckPlayerStatusConditions
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 26 |
1 files changed, 18 insertions, 8 deletions
@@ -432,16 +432,22 @@ wSafariBaitFactor:: ; cce9 wcceb:: ds 1 wccec:: ds 1 -wMonIsDisobedient:: ds 1 -wccee:: ds 1 -wccef:: ds 1 + +wMonIsDisobedient:: ds 1 ; cced + +wPlayerDisabledMoveNumber:: ds 1 ; ccee +wEnemyDisabledMoveNumber:: ds 1 ; ccef + wccf0:: ds 1 -wPlayerUsedMove:: ds 1 -wEnemyUsedMove:: ds 1 + +wPlayerUsedMove:: ds 1 ; ccf1 +wEnemyUsedMove:: ds 1 ; ccf2 + wccf3:: ds 1 -wMoveDidntMiss:: ds 1 -wPartyFoughtCurrentEnemyFlags:: +wMoveDidntMiss:: ds 1 ; ccf4 + +wPartyFoughtCurrentEnemyFlags:: ; ccf5 ; flags that indicate which party members have fought the current enemy mon flag_array 6 @@ -1066,11 +1072,13 @@ W_PLAYERCONFUSEDCOUNTER:: ; wd06b W_PLAYERTOXICCOUNTER:: ; d06c ds 1 W_PLAYERDISABLEDMOVE:: ; d06d +; high nibble: which move is disabled (1-4) +; low nibble: disable turns left ds 1 ds 1 -wEnemyNumAttacksLeft:: +wEnemyNumAttacksLeft:: ; d06f ; when the enemy is attacking multiple times, the number of attacks left ds 1 @@ -1080,6 +1088,8 @@ W_ENEMYCONFUSEDCOUNTER:: ; wd070 W_ENEMYTOXICCOUNTER:: ; d071 ds 1 W_ENEMYDISABLEDMOVE:: ; d072 +; high nibble: which move is disabled (1-4) +; low nibble: disable turns left ds 1 ds 1 |