pokecrystal-board/engine/events/basement_key.asm

33 lines
553 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
_BasementKey:
2015-11-11 23:38:57 -05:00
; Are we even in the right map to use this?
2018-01-23 17:39:09 -05:00
ld a, [wMapGroup]
cp GROUP_GOLDENROD_UNDERGROUND
2015-11-11 23:38:57 -05:00
jr nz, .nope
2018-01-23 17:39:09 -05:00
ld a, [wMapNumber]
cp MAP_GOLDENROD_UNDERGROUND
2015-11-11 23:38:57 -05:00
jr nz, .nope
; Are we on the tile in front of the door?
call GetFacingTileCoord
ld a, d
cp 22
jr nz, .nope
ld a, e
cp 10
jr nz, .nope
; Let's use the Basement Key
ld hl, .BasementKeyScript
call QueueScript
2015-12-17 22:31:16 -05:00
ld a, TRUE
2015-12-17 17:51:32 -05:00
ld [wItemEffectSucceeded], a
2015-11-11 23:38:57 -05:00
ret
.nope
2015-12-17 22:31:16 -05:00
ld a, FALSE
2015-12-17 17:51:32 -05:00
ld [wItemEffectSucceeded], a
2015-11-11 23:38:57 -05:00
ret
.BasementKeyScript:
2015-11-25 10:16:29 -05:00
closetext
farsjump BasementDoorScript