2013-09-09 15:43:22 -07:00
|
|
|
BattleCommand54: ; 37588
|
|
|
|
; curse
|
|
|
|
|
|
|
|
ld de, BattleMonType1
|
|
|
|
ld bc, PlayerStatLevels
|
|
|
|
ld a, [hBattleTurn]
|
|
|
|
and a
|
|
|
|
jr z, .go
|
|
|
|
ld de, EnemyMonType1
|
|
|
|
ld bc, EnemyStatLevels
|
|
|
|
|
|
|
|
.go
|
|
|
|
|
|
|
|
; Curse is different for Ghost-types.
|
|
|
|
|
|
|
|
ld a, [de]
|
|
|
|
cp GHOST
|
|
|
|
jr z, .ghost
|
|
|
|
inc de
|
|
|
|
ld a, [de]
|
|
|
|
cp GHOST
|
|
|
|
jr z, .ghost
|
|
|
|
|
|
|
|
|
|
|
|
; If no stats can be increased, don't.
|
|
|
|
|
|
|
|
; Attack
|
|
|
|
ld a, [bc]
|
|
|
|
cp 13 ; max
|
|
|
|
jr c, .raise
|
|
|
|
|
|
|
|
; Defense
|
|
|
|
inc bc
|
|
|
|
ld a, [bc]
|
|
|
|
cp 13 ; max
|
|
|
|
jr nc, .cantraise
|
|
|
|
|
|
|
|
.raise
|
|
|
|
|
|
|
|
; Raise Attack and Defense, and lower Speed.
|
|
|
|
|
|
|
|
ld a, $1
|
|
|
|
ld [$c689], a
|
2013-12-31 01:10:49 -08:00
|
|
|
call Function37e01
|
2013-09-09 15:43:22 -07:00
|
|
|
ld a, $2
|
2013-12-31 01:10:49 -08:00
|
|
|
call Function36532
|
2013-09-09 15:43:22 -07:00
|
|
|
call SwitchTurn
|
|
|
|
call BattleCommand8d
|
|
|
|
call ResetMiss
|
|
|
|
call SwitchTurn
|
|
|
|
call BattleCommand70
|
|
|
|
call BattleCommand8c
|
|
|
|
call ResetMiss
|
|
|
|
call BattleCommand71
|
|
|
|
jp BattleCommand8c
|
|
|
|
|
|
|
|
|
|
|
|
.ghost
|
|
|
|
|
|
|
|
; Cut HP in half and put a curse on the opponent.
|
|
|
|
|
|
|
|
call CheckHiddenOpponent
|
|
|
|
jr nz, .failed
|
|
|
|
|
|
|
|
call CheckSubstituteOpp
|
|
|
|
jr nz, .failed
|
|
|
|
|
|
|
|
ld a, BATTLE_VARS_SUBSTATUS1_OPP
|
2013-10-11 00:04:21 -07:00
|
|
|
call _GetBattleVar
|
2013-09-09 15:43:22 -07:00
|
|
|
bit 1, [hl]
|
|
|
|
jr nz, .failed
|
|
|
|
|
|
|
|
set 1, [hl]
|
2013-12-31 01:10:49 -08:00
|
|
|
call Function37e01
|
2013-09-09 15:43:22 -07:00
|
|
|
ld hl, GetHalfMaxHP
|
2013-12-31 00:25:38 -08:00
|
|
|
call CallBattleCore
|
2013-09-09 15:43:22 -07:00
|
|
|
ld hl, Function3cc3f
|
2013-12-31 00:25:38 -08:00
|
|
|
call CallBattleCore
|
2013-09-09 15:43:22 -07:00
|
|
|
call UpdateUserInParty
|
|
|
|
ld hl, PutACurseText
|
|
|
|
jp StdBattleTextBox
|
|
|
|
|
|
|
|
.failed
|
2013-12-31 01:10:49 -08:00
|
|
|
call Function37e77
|
2013-09-09 15:43:22 -07:00
|
|
|
jp PrintButItFailed
|
|
|
|
|
|
|
|
|
|
|
|
.cantraise
|
|
|
|
|
|
|
|
; Can't raise either stat.
|
|
|
|
|
|
|
|
ld b, $8 ; ABILITY
|
|
|
|
call GetStatName
|
2013-12-31 01:10:49 -08:00
|
|
|
call Function37e77
|
2013-09-09 15:43:22 -07:00
|
|
|
ld hl, WontRiseAnymoreText
|
|
|
|
jp StdBattleTextBox
|
|
|
|
; 37618
|
|
|
|
|