mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
41acb0667a
Rename MORN/DAY/NITE to MORN_F/DAY_F/NITE_F; use MORN/DAY/NITE for shifted values (cleaner for person_events) Prefix FLOOR to the `elevfloor` constants
77 lines
1.5 KiB
NASM
77 lines
1.5 KiB
NASM
GoldenrodDeptStoreElevator_MapScriptHeader:
|
|
.MapTriggers:
|
|
db 0
|
|
|
|
.MapCallbacks:
|
|
db 0
|
|
|
|
MapGoldenrodDeptStoreElevatorSignpost0Script:
|
|
opentext
|
|
elevator Elevator_0x566e0
|
|
closetext
|
|
iffalse .Done
|
|
pause 5
|
|
playsound SFX_ELEVATOR
|
|
earthquake 60
|
|
waitsfx
|
|
checkevent EVENT_WAREHOUSE_BLOCKED_OFF
|
|
iftrue .Done
|
|
checkevent EVENT_WAREHOUSE_LAYOUT_1
|
|
iftrue .BoxLayout1
|
|
checkevent EVENT_WAREHOUSE_LAYOUT_2
|
|
iftrue .BoxLayout2
|
|
checkevent EVENT_WAREHOUSE_LAYOUT_3
|
|
iftrue .BoxLayout3
|
|
.BoxLayout3:
|
|
setevent EVENT_WAREHOUSE_LAYOUT_1
|
|
clearevent EVENT_WAREHOUSE_LAYOUT_2
|
|
clearevent EVENT_WAREHOUSE_LAYOUT_3
|
|
end
|
|
|
|
.BoxLayout1:
|
|
clearevent EVENT_WAREHOUSE_LAYOUT_1
|
|
setevent EVENT_WAREHOUSE_LAYOUT_2
|
|
clearevent EVENT_WAREHOUSE_LAYOUT_3
|
|
end
|
|
|
|
.BoxLayout2:
|
|
clearevent EVENT_WAREHOUSE_LAYOUT_1
|
|
clearevent EVENT_WAREHOUSE_LAYOUT_2
|
|
setevent EVENT_WAREHOUSE_LAYOUT_3
|
|
end
|
|
|
|
.Done:
|
|
end
|
|
|
|
|
|
Elevator_0x566e0:
|
|
db 7 ; floors
|
|
elevfloor FLOOR_B1F, 2, GOLDENROD_DEPT_STORE_B1F
|
|
elevfloor FLOOR_1F, 4, GOLDENROD_DEPT_STORE_1F
|
|
elevfloor FLOOR_2F, 3, GOLDENROD_DEPT_STORE_2F
|
|
elevfloor FLOOR_3F, 3, GOLDENROD_DEPT_STORE_3F
|
|
elevfloor FLOOR_4F, 3, GOLDENROD_DEPT_STORE_4F
|
|
elevfloor FLOOR_5F, 3, GOLDENROD_DEPT_STORE_5F
|
|
elevfloor FLOOR_6F, 2, GOLDENROD_DEPT_STORE_6F
|
|
db -1 ; end
|
|
|
|
|
|
GoldenrodDeptStoreElevator_MapEventHeader:
|
|
; filler
|
|
db 0, 0
|
|
|
|
.Warps:
|
|
db 2
|
|
warp_def $3, $1, 255, GOLDENROD_DEPT_STORE_1F
|
|
warp_def $3, $2, 255, GOLDENROD_DEPT_STORE_1F
|
|
|
|
.XYTriggers:
|
|
db 0
|
|
|
|
.Signposts:
|
|
db 1
|
|
signpost 0, 3, SIGNPOST_READ, MapGoldenrodDeptStoreElevatorSignpost0Script
|
|
|
|
.PersonEvents:
|
|
db 0
|