2018-06-24 07:09:41 -07:00
|
|
|
BattleCommand_Conversion2:
|
2018-01-26 08:36:00 -08:00
|
|
|
; conversion2
|
|
|
|
|
2018-02-03 15:21:53 -08:00
|
|
|
ld a, [wAttackMissed]
|
2018-01-26 08:36:00 -08:00
|
|
|
and a
|
|
|
|
jr nz, .failed
|
2018-02-03 15:21:53 -08:00
|
|
|
ld hl, wBattleMonType1
|
2018-01-26 08:36:00 -08:00
|
|
|
ld a, [hBattleTurn]
|
|
|
|
and a
|
|
|
|
jr z, .got_type
|
2018-02-03 15:21:53 -08:00
|
|
|
ld hl, wEnemyMonType1
|
2018-01-26 08:36:00 -08:00
|
|
|
.got_type
|
|
|
|
ld a, BATTLE_VARS_LAST_COUNTER_MOVE_OPP
|
|
|
|
call GetBattleVar
|
|
|
|
and a
|
|
|
|
jr z, .failed
|
|
|
|
push hl
|
|
|
|
dec a
|
|
|
|
ld hl, Moves + MOVE_TYPE
|
|
|
|
call GetMoveAttr
|
|
|
|
ld d, a
|
|
|
|
pop hl
|
|
|
|
cp CURSE_T
|
|
|
|
jr z, .failed
|
|
|
|
call AnimateCurrentMove
|
|
|
|
call BattleCommand_SwitchTurn
|
|
|
|
|
|
|
|
.loop
|
|
|
|
call BattleRandom
|
2018-02-20 07:54:48 -08:00
|
|
|
maskbits NUM_TYPES
|
2018-01-26 08:36:00 -08:00
|
|
|
cp UNUSED_TYPES
|
|
|
|
jr c, .okay
|
|
|
|
cp UNUSED_TYPES_END
|
|
|
|
jr c, .loop
|
|
|
|
cp TYPES_END
|
|
|
|
jr nc, .loop
|
|
|
|
.okay
|
|
|
|
ld [hli], a
|
|
|
|
ld [hld], a
|
|
|
|
push hl
|
|
|
|
ld a, BATTLE_VARS_MOVE_TYPE
|
|
|
|
call GetBattleVarAddr
|
|
|
|
push af
|
|
|
|
push hl
|
|
|
|
ld a, d
|
|
|
|
ld [hl], a
|
|
|
|
call BattleCheckTypeMatchup
|
|
|
|
pop hl
|
|
|
|
pop af
|
|
|
|
ld [hl], a
|
|
|
|
pop hl
|
|
|
|
ld a, [wTypeMatchup]
|
2018-03-09 13:09:03 -08:00
|
|
|
cp EFFECTIVE
|
2018-01-26 08:36:00 -08:00
|
|
|
jr nc, .loop
|
|
|
|
call BattleCommand_SwitchTurn
|
|
|
|
|
|
|
|
ld a, [hl]
|
|
|
|
ld [wNamedObjectIndexBuffer], a
|
|
|
|
predef GetTypeName
|
|
|
|
ld hl, TransformedTypeText
|
|
|
|
jp StdBattleTextBox
|
|
|
|
|
|
|
|
.failed
|
|
|
|
jp FailMove
|