2018-06-24 07:09:41 -07:00
|
|
|
BattleCommand_Spite:
|
2018-02-03 15:21:53 -08:00
|
|
|
ld a, [wAttackMissed]
|
2018-01-26 08:36:00 -08:00
|
|
|
and a
|
|
|
|
jp nz, .failed
|
2020-11-17 08:09:02 -08:00
|
|
|
ld bc, PARTYMON_STRUCT_LENGTH ; unused
|
2018-02-03 15:21:53 -08:00
|
|
|
ld hl, wEnemyMonMoves
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2018-01-26 08:36:00 -08:00
|
|
|
and a
|
|
|
|
jr z, .got_moves
|
2018-02-03 15:21:53 -08:00
|
|
|
ld hl, wBattleMonMoves
|
2018-01-26 08:36:00 -08:00
|
|
|
.got_moves
|
|
|
|
ld a, BATTLE_VARS_LAST_COUNTER_MOVE_OPP
|
|
|
|
call GetBattleVar
|
|
|
|
and a
|
|
|
|
jr z, .failed
|
|
|
|
cp STRUGGLE
|
|
|
|
jr z, .failed
|
|
|
|
ld b, a
|
|
|
|
ld c, -1
|
|
|
|
.loop
|
|
|
|
inc c
|
|
|
|
ld a, [hli]
|
|
|
|
cp b
|
|
|
|
jr nz, .loop
|
2020-12-23 13:29:30 -08:00
|
|
|
ld [wNamedObjectIndex], a
|
2018-01-26 08:36:00 -08:00
|
|
|
dec hl
|
|
|
|
ld b, 0
|
|
|
|
push bc
|
2018-02-03 15:21:53 -08:00
|
|
|
ld c, wBattleMonPP - wBattleMonMoves
|
2018-01-26 08:36:00 -08:00
|
|
|
add hl, bc
|
|
|
|
pop bc
|
|
|
|
ld a, [hl]
|
|
|
|
and PP_MASK
|
|
|
|
jr z, .failed
|
|
|
|
push bc
|
|
|
|
call GetMoveName
|
|
|
|
; lose 2-5 PP
|
|
|
|
call BattleRandom
|
|
|
|
and %11
|
|
|
|
inc a
|
|
|
|
inc a
|
|
|
|
ld b, a
|
|
|
|
ld a, [hl]
|
|
|
|
and PP_MASK
|
|
|
|
cp b
|
|
|
|
jr nc, .deplete_pp
|
|
|
|
ld b, a
|
|
|
|
.deplete_pp
|
|
|
|
ld a, [hl]
|
|
|
|
sub b
|
|
|
|
ld [hl], a
|
|
|
|
push af
|
|
|
|
ld a, MON_PP
|
|
|
|
call OpponentPartyAttr
|
|
|
|
ld d, b
|
|
|
|
pop af
|
|
|
|
pop bc
|
|
|
|
add hl, bc
|
|
|
|
ld e, a
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS5_OPP
|
|
|
|
call GetBattleVar
|
|
|
|
bit SUBSTATUS_TRANSFORMED, a
|
|
|
|
jr nz, .transformed
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2018-01-26 08:36:00 -08:00
|
|
|
and a
|
|
|
|
jr nz, .not_wildmon
|
|
|
|
ld a, [wBattleMode]
|
|
|
|
dec a
|
|
|
|
jr nz, .not_wildmon
|
|
|
|
ld hl, wWildMonPP
|
|
|
|
add hl, bc
|
|
|
|
.not_wildmon
|
|
|
|
ld [hl], e
|
|
|
|
.transformed
|
|
|
|
push de
|
|
|
|
call AnimateCurrentMove
|
|
|
|
pop de
|
|
|
|
ld a, d
|
2020-12-23 13:29:30 -08:00
|
|
|
ld [wTextDecimalByte], a
|
2018-01-26 08:36:00 -08:00
|
|
|
ld hl, SpiteEffectText
|
2019-04-08 05:15:10 -07:00
|
|
|
jp StdBattleTextbox
|
2018-01-26 08:36:00 -08:00
|
|
|
|
|
|
|
.failed
|
|
|
|
jp PrintDidntAffect2
|