pokecrystal-board/engine/events/card_key.asm

40 lines
612 B
NASM
Raw Normal View History

2015-11-11 20:38:57 -08:00
_CardKey: ; 50779
; Are we even in the right map to use this?
ld a, [MapGroup]
cp GROUP_RADIO_TOWER_3F
jr nz, .nope
ld a, [MapNumber]
cp MAP_RADIO_TOWER_3F
jr nz, .nope
; Are we facing the slot?
ld a, [PlayerDirection]
2015-12-18 17:07:09 -08:00
and %1100
2015-11-11 20:38:57 -08:00
cp OW_UP
jr nz, .nope
call GetFacingTileCoord
ld a, d
cp 18
jr nz, .nope
ld a, e
cp 6
jr nz, .nope
; Let's use the Card Key.
ld hl, .CardKeyScript
call QueueScript
2015-12-18 17:07:09 -08:00
ld a, TRUE
2015-12-17 14:51:32 -08:00
ld [wItemEffectSucceeded], a
2015-11-11 20:38:57 -08:00
ret
.nope
2015-12-18 17:07:09 -08:00
ld a, FALSE
2015-12-17 14:51:32 -08:00
ld [wItemEffectSucceeded], a
2015-11-11 20:38:57 -08:00
ret
; 507af
.CardKeyScript: ; 0x507af
2015-11-25 07:16:29 -08:00
closetext
2015-11-11 20:38:57 -08:00
farjump MapRadioTower3FSignpost2Script
; 0x507b4