@@ -1259,7 +1259,7 @@ BattleCommand_critical:
1259
1259
cp b
1260
1260
ret nc
1261
1261
.guranteed_crit
1262
- ld a , 1
1262
+ ld a , TRUE
1263
1263
ld [ wCriticalHit ], a
1264
1264
ret
1265
1265
@@ -3839,20 +3839,9 @@ BattleCommand_damagestats:
3839
3839
ld a , MON_ATK
3840
3840
call TrueUserPartyAttr
3841
3841
.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
3851
3843
and SCREENS_REFLECT
3852
3844
jr z , .thickcluborlightball
3853
- ld a , [ wCriticalHit ]
3854
- and a
3855
- jr nz , .thickcluborlightball
3856
3845
sla c
3857
3846
rl b
3858
3847
jr .thickcluborlightball
@@ -3893,20 +3882,9 @@ BattleCommand_damagestats:
3893
3882
ld a , MON_S AT
3894
3883
call TrueUserPartyAttr
3895
3884
.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
3905
3886
and SCREENS_LIGHT_SCREEN
3906
3887
jr z , .lightball
3907
- ld a , [ wCriticalHit ]
3908
- and a
3909
- jr nz , .lightball
3910
3888
sla c
3911
3889
rl b
3912
3890
@@ -3935,6 +3913,30 @@ BattleCommand_damagestats:
3935
3913
ld e , a
3936
3914
ret
3937
3915
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
+
3938
3940
TruncateHL_BC:
3939
3941
. loop
3940
3942
; Truncate 16-bit values hl and bc to 8-bit values b and c respectively.
0 commit comments