2018-06-24 14:09:41 +00:00
|
|
|
BattleCommand_Conversion2:
|
2018-01-26 16:36:00 +00:00
|
|
|
; conversion2
|
|
|
|
|
2018-02-03 23:21:53 +00:00
|
|
|
ld a, [wAttackMissed]
|
2018-01-26 16:36:00 +00:00
|
|
|
and a
|
|
|
|
jr nz, .failed
|
2018-02-03 23:21:53 +00:00
|
|
|
ld hl, wBattleMonType1
|
2018-08-25 18:28:22 +00:00
|
|
|
ldh a, [hBattleTurn]
|
2018-01-26 16:36:00 +00:00
|
|
|
and a
|
|
|
|
jr z, .got_type
|
2018-02-03 23:21:53 +00:00
|
|
|
ld hl, wEnemyMonType1
|
2018-01-26 16:36:00 +00: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 15:54:48 +00:00
|
|
|
maskbits NUM_TYPES
|
2018-01-26 16:36:00 +00: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 21:09:03 +00:00
|
|
|
cp EFFECTIVE
|
2018-01-26 16:36:00 +00:00
|
|
|
jr nc, .loop
|
|
|
|
call BattleCommand_SwitchTurn
|
|
|
|
|
|
|
|
ld a, [hl]
|
|
|
|
ld [wNamedObjectIndexBuffer], a
|
|
|
|
predef GetTypeName
|
|
|
|
ld hl, TransformedTypeText
|
2019-04-08 12:15:10 +00:00
|
|
|
jp StdBattleTextbox
|
2018-01-26 16:36:00 +00:00
|
|
|
|
|
|
|
.failed
|
|
|
|
jp FailMove
|