diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-07-27 22:33:48 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-07-27 22:33:48 -0500 |
commit | 52bb07ca18f5475eb9a11c69bf8fee75bcb1abff (patch) | |
tree | 833d3b85b1b43e1f46fedb69d203263333849d62 /engine/battle/core.asm | |
parent | 5207a14af34f9b84a9e40cc1d4988a0858a4a4e6 (diff) |
Replace unnecessary tabs with spaces
Diffstat (limited to 'engine/battle/core.asm')
-rwxr-xr-x | engine/battle/core.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 01c12347..d1fd27f1 100755 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -4502,10 +4502,10 @@ GetEnemyMonStat: CalculateDamage: ; input: -; b: attack -; c: opponent defense -; d: base power -; e: level +; b: attack +; c: opponent defense +; d: base power +; e: level ld a, [H_WHOSETURN] ; whose turn? and a @@ -7512,7 +7512,7 @@ FrozenText: CheckDefrost: ; any fire-type move that has a chance inflict burn (all but Fire Spin) will defrost a frozen target - and a, 1 << FRZ ; are they frozen? + and a, 1 << FRZ ; are they frozen? ret z ; return if so ld a, [H_WHOSETURN] and a @@ -7521,7 +7521,7 @@ CheckDefrost: ld a, [wPlayerMoveType] sub a, FIRE ret nz ; return if type of move used isn't fire - ld [wEnemyMonStatus], a ; set opponent status to 00 ["defrost" a frozen monster] + ld [wEnemyMonStatus], a ; set opponent status to 00 ["defrost" a frozen monster] ld hl, wEnemyMon1Status ld a, [wEnemyMonPartyPos] ld bc, wEnemyMon2 - wEnemyMon1 @@ -7531,7 +7531,7 @@ CheckDefrost: ld hl, FireDefrostedText jr .common .opponent - ld a, [wEnemyMoveType] ; same as above with addresses swapped + ld a, [wEnemyMoveType] ; same as above with addresses swapped sub a, FIRE ret nz ld [wBattleMonStatus], a |