diff options
author | Daniel Harding <33dannye@gmail.com> | 2020-12-06 20:17:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 20:17:43 -0600 |
commit | ec1e57b155d040beeb309a1524d496c6582da384 (patch) | |
tree | 59b1685dc8a3b9e5ee6f9340db2b23b4f3a641aa /src/wram.asm | |
parent | f5929eed3a960b905090fb66b9bfaafb31f7243d (diff) | |
parent | fd08631082a6ccca84bef29f9c031747c2b60147 (diff) |
Merge pull request #72 from dannye/rgbds
RGBDS Warnings
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wram.asm b/src/wram.asm index 821e574..bb1f346 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -937,7 +937,7 @@ wAIMaxDamage:: ; ccbc wDealtDamage:: ; ccbf ds $2 -; WEAKNESS and RESISTANCE flags for a damaging attack +; WEAKNESS and RESISTANCE flags for a damaging attack wDamageEffectiveness:: ; ccc1 ds $1 @@ -1194,9 +1194,9 @@ wAIPokedexCounter:: ; cda6 ; variable to keep track of Mewtwo1's Barrier usage during Player' turn. ; AI_FLAG_MEWTWO_MILL set means Player is running Mewtwo1 mill deck. -; - when flag is not set, this counts how many turns in a row +; - when flag is not set, this counts how many turns in a row ; Player used Mewtwo1's Barrier attack; -; - when flag is set, this counts how many turns in a row +; - when flag is set, this counts how many turns in a row ; Player has NOT used Barrier attack. wAIBarrierFlagCounter:: ; cda7 ds $1 @@ -1369,7 +1369,7 @@ wcdea:: ; cdea ; $01 = can't damage wAICannotDamage:: ; cdf0 ds $1 - + ; used by AI to store variable information wTempAI:: ; cdf1 ds $1 @@ -1413,8 +1413,8 @@ wAIMoveIsNonDamaging:: ; ce02 ds $1 ; whether AI already retreated this turn or not. -; - $0 has not retreated; -; - $1 has retreated. +; - $0 has not retreated; +; - $1 has retreated. wAIRetreatedThisTurn:: ; ce03 ds $1 |