2018-06-24 14:09:41 +00:00
|
|
|
_BasementKey:
|
2015-11-12 04:38:57 +00:00
|
|
|
; Are we even in the right map to use this?
|
2018-01-23 22:39:09 +00:00
|
|
|
ld a, [wMapGroup]
|
2017-12-24 23:06:12 +00:00
|
|
|
cp GROUP_GOLDENROD_UNDERGROUND
|
2015-11-12 04:38:57 +00:00
|
|
|
jr nz, .nope
|
|
|
|
|
2018-01-23 22:39:09 +00:00
|
|
|
ld a, [wMapNumber]
|
2017-12-24 23:06:12 +00:00
|
|
|
cp MAP_GOLDENROD_UNDERGROUND
|
2015-11-12 04:38:57 +00: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-18 03:31:16 +00:00
|
|
|
ld a, TRUE
|
2015-12-17 22:51:32 +00:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-12 04:38:57 +00:00
|
|
|
ret
|
|
|
|
|
|
|
|
.nope
|
2015-12-18 03:31:16 +00:00
|
|
|
ld a, FALSE
|
2015-12-17 22:51:32 +00:00
|
|
|
ld [wItemEffectSucceeded], a
|
2015-11-12 04:38:57 +00:00
|
|
|
ret
|
|
|
|
|
2018-06-25 00:10:37 +00:00
|
|
|
.BasementKeyScript:
|
2015-11-25 15:16:29 +00:00
|
|
|
closetext
|
2019-03-10 20:39:31 +00:00
|
|
|
farsjump BasementDoorScript
|