2018-06-24 07:09:41 -07:00
|
|
|
BattleCommand_Curse:
|
2013-09-09 15:43:22 -07:00
|
|
|
; curse
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wBattleMonType1
|
|
|
|
ld bc, wPlayerStatLevels
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2013-09-09 15:43:22 -07:00
|
|
|
and a
|
|
|
|
jr z, .go
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wEnemyMonType1
|
|
|
|
ld bc, wEnemyStatLevels
|
2013-09-09 15:43:22 -07:00
|
|
|
|
|
|
|
.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]
|
2015-11-06 17:55:16 -08:00
|
|
|
cp MAX_STAT_LEVEL
|
2013-09-09 15:43:22 -07:00
|
|
|
jr c, .raise
|
|
|
|
|
|
|
|
; Defense
|
|
|
|
inc bc
|
|
|
|
ld a, [bc]
|
2015-11-06 17:55:16 -08:00
|
|
|
cp MAX_STAT_LEVEL
|
2013-09-09 15:43:22 -07:00
|
|
|
jr nc, .cantraise
|
|
|
|
|
|
|
|
.raise
|
|
|
|
|
|
|
|
; Raise Attack and Defense, and lower Speed.
|
|
|
|
|
|
|
|
ld a, $1
|
2015-11-06 17:55:16 -08:00
|
|
|
ld [wKickCounter], a
|
2014-01-01 05:09:15 -08:00
|
|
|
call AnimateCurrentMove
|
2015-11-06 17:55:16 -08:00
|
|
|
ld a, SPEED
|
|
|
|
call LowerStat
|
2015-10-10 04:45:39 -07:00
|
|
|
call BattleCommand_SwitchTurn
|
2015-11-06 17:55:16 -08:00
|
|
|
call BattleCommand_StatDownMessage
|
2013-09-09 15:43:22 -07:00
|
|
|
call ResetMiss
|
2015-10-10 04:45:39 -07:00
|
|
|
call BattleCommand_SwitchTurn
|
2015-11-06 11:45:10 -08:00
|
|
|
call BattleCommand_AttackUp
|
2015-11-06 17:55:16 -08:00
|
|
|
call BattleCommand_StatUpMessage
|
2013-09-09 15:43:22 -07:00
|
|
|
call ResetMiss
|
2015-11-06 11:45:10 -08:00
|
|
|
call BattleCommand_DefenseUp
|
2015-11-06 17:55:16 -08:00
|
|
|
jp BattleCommand_StatUpMessage
|
2013-09-09 15:43:22 -07:00
|
|
|
|
|
|
|
.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
|
2014-06-14 00:34:57 -07:00
|
|
|
call GetBattleVarAddr
|
2014-06-17 11:58:11 -07:00
|
|
|
bit SUBSTATUS_CURSE, [hl]
|
2013-09-09 15:43:22 -07:00
|
|
|
jr nz, .failed
|
|
|
|
|
2014-06-17 11:58:11 -07:00
|
|
|
set SUBSTATUS_CURSE, [hl]
|
2014-01-01 05:09:15 -08:00
|
|
|
call AnimateCurrentMove
|
2013-09-09 15:43:22 -07:00
|
|
|
ld hl, GetHalfMaxHP
|
2013-12-31 00:25:38 -08:00
|
|
|
call CallBattleCore
|
2015-11-06 17:55:16 -08:00
|
|
|
ld hl, SubtractHPFromUser
|
2013-12-31 00:25:38 -08:00
|
|
|
call CallBattleCore
|
2013-09-09 15:43:22 -07:00
|
|
|
call UpdateUserInParty
|
|
|
|
ld hl, PutACurseText
|
2019-04-08 05:15:10 -07:00
|
|
|
jp StdBattleTextbox
|
2013-09-09 15:43:22 -07:00
|
|
|
|
|
|
|
.failed
|
2014-01-01 05:09:15 -08:00
|
|
|
call AnimateFailedMove
|
2013-09-09 15:43:22 -07:00
|
|
|
jp PrintButItFailed
|
|
|
|
|
|
|
|
.cantraise
|
|
|
|
|
|
|
|
; Can't raise either stat.
|
|
|
|
|
2015-11-06 17:55:16 -08:00
|
|
|
ld b, ABILITY + 1
|
2013-09-09 15:43:22 -07:00
|
|
|
call GetStatName
|
2014-01-01 05:09:15 -08:00
|
|
|
call AnimateFailedMove
|
2013-09-09 15:43:22 -07:00
|
|
|
ld hl, WontRiseAnymoreText
|
2019-04-08 05:15:10 -07:00
|
|
|
jp StdBattleTextbox
|