Skip to content

Commit eacb2a7

Browse files
committed
Brick Break should only break screens if the move hits
1 parent 5d4ff92 commit eacb2a7

File tree

2 files changed

+28
-26
lines changed

2 files changed

+28
-26
lines changed

data/moves/effects.asm

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,6 @@ BrickBreak:
474474
checkpriority
475475
critical
476476
resettypematchup
477-
brickbreak
478477
damagestats
479478
damagecalc
480479
stab
@@ -483,6 +482,7 @@ BrickBreak:
483482
failuretext
484483
applydamage
485484
criticaltext
485+
brickbreak
486486
supereffectivetext
487487
postfainteffects
488488
posthiteffects

engine/battle/effect_commands.asm

+27-25
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ BattleCommand_critical:
12591259
cp b
12601260
ret nc
12611261
.guranteed_crit
1262-
ld a, 1
1262+
ld a, TRUE
12631263
ld [wCriticalHit], a
12641264
ret
12651265

@@ -3839,20 +3839,9 @@ BattleCommand_damagestats:
38393839
ld a, MON_ATK
38403840
call TrueUserPartyAttr
38413841
.atk_ok
3842-
call GetTrueUserAbility
3843-
cp INFILTRATOR
3844-
jr z, .thickcluborlightball
3845-
ldh a, [hBattleTurn]
3846-
and a
3847-
ld a, [wEnemyScreens]
3848-
jr z, .got_opp_screens
3849-
ld a, [wPlayerScreens]
3850-
.got_opp_screens
3842+
call GetOpponentActiveScreens
38513843
and SCREENS_REFLECT
38523844
jr z, .thickcluborlightball
3853-
ld a, [wCriticalHit]
3854-
and a
3855-
jr nz, .thickcluborlightball
38563845
sla c
38573846
rl b
38583847
jr .thickcluborlightball
@@ -3893,20 +3882,9 @@ BattleCommand_damagestats:
38933882
ld a, MON_SAT
38943883
call TrueUserPartyAttr
38953884
.sat_ok
3896-
call GetTrueUserAbility
3897-
cp INFILTRATOR
3898-
jr z, .lightball
3899-
ldh a, [hBattleTurn]
3900-
and a
3901-
ld a, [wEnemyScreens]
3902-
jr z, .got_opp_screens2
3903-
ld a, [wPlayerScreens]
3904-
.got_opp_screens2
3885+
call GetOpponentActiveScreens
39053886
and SCREENS_LIGHT_SCREEN
39063887
jr z, .lightball
3907-
ld a, [wCriticalHit]
3908-
and a
3909-
jr nz, .lightball
39103888
sla c
39113889
rl b
39123890

@@ -3935,6 +3913,30 @@ BattleCommand_damagestats:
39353913
ld e, a
39363914
ret
39373915

3916+
GetOpponentActiveScreens:
3917+
; Returns the opponent screens after Infiltrator, crits and Brick Break.
3918+
; Brick Break screen breaking is handled later, so that we can avoid it
3919+
; if the attack is ineffective. Thus, make it ignore screens here.
3920+
ld a, BATTLE_VARS_MOVE_EFFECT
3921+
call GetBattleVar
3922+
xor EFFECT_BRICK_BREAK
3923+
ret z
3924+
3925+
call GetTrueUserAbility
3926+
xor INFILTRATOR
3927+
ret z
3928+
3929+
ld a, [wCriticalHit]
3930+
dec a ; cp TRUE
3931+
ret z
3932+
3933+
ldh a, [hBattleTurn]
3934+
and a
3935+
ld a, [wEnemyScreens]
3936+
ret z
3937+
ld a, [wPlayerScreens]
3938+
ret
3939+
39383940
TruncateHL_BC:
39393941
.loop
39403942
; Truncate 16-bit values hl and bc to 8-bit values b and c respectively.

0 commit comments

Comments
 (0)