Remove "skip" prefix from AI move score labels (#1163)

This commit is contained in:
Jordan Moore
2024-12-29 15:31:50 -05:00
committed by GitHub
parent 0124a1ea9e
commit 86a87a355e

View File

@@ -1094,10 +1094,10 @@ AI_Smart_Confuse:
ret c ret c
call Random call Random
cp 10 percent cp 10 percent
jr c, .skipdiscourage jr c, .discourage
inc [hl] inc [hl]
.skipdiscourage .discourage
; Discourage again if player's HP is below 25%. ; Discourage again if player's HP is below 25%.
call AICheckPlayerQuarterHP call AICheckPlayerQuarterHP
ret c ret c
@@ -1248,12 +1248,12 @@ AI_Smart_Rage:
; If enemy's Rage is building, 50% chance to encourage this move. ; If enemy's Rage is building, 50% chance to encourage this move.
call AI_50_50 call AI_50_50
jr c, .skipencourage jr c, .encourage
dec [hl] dec [hl]
; Encourage this move based on Rage's counter. ; Encourage this move based on Rage's counter.
.skipencourage .encourage
ld a, [wEnemyRageCounter] ld a, [wEnemyRageCounter]
cp 2 cp 2
ret c ret c
@@ -1300,14 +1300,14 @@ AI_Smart_Mimic:
cp EFFECTIVE cp EFFECTIVE
pop hl pop hl
jr c, .discourage jr c, .discourage
jr z, .skip_encourage jr z, .encourage
call AI_50_50 call AI_50_50
jr c, .skip_encourage jr c, .encourage
dec [hl] dec [hl]
.skip_encourage .encourage
ld a, [wLastPlayerCounterMove] ld a, [wLastPlayerCounterMove]
push hl push hl
ld hl, UsefulMoves ld hl, UsefulMoves