mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-07 08:35:23 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
67
maps/GoldenrodDeptStoreElevator.asm
Normal file
67
maps/GoldenrodDeptStoreElevator.asm
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
GoldenrodDeptStoreElevator_MapScripts:
|
||||
def_scene_scripts
|
||||
|
||||
def_callbacks
|
||||
|
||||
GoldenrodDeptStoreElevatorScript:
|
||||
opentext
|
||||
elevator GoldenrodDeptStoreElevatorData
|
||||
closetext
|
||||
iffalse .Done
|
||||
pause 5
|
||||
playsound SFX_ELEVATOR
|
||||
earthquake 60
|
||||
waitsfx
|
||||
checkevent EVENT_GOLDENROD_UNDERGROUND_WAREHOUSE_BLOCKED_OFF
|
||||
iftrue .Done
|
||||
checkevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
||||
iftrue .BoxLayout1
|
||||
checkevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||
iftrue .BoxLayout2
|
||||
checkevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||
iftrue .BoxLayout3
|
||||
.BoxLayout3:
|
||||
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||
end
|
||||
|
||||
.BoxLayout1:
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
||||
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||
end
|
||||
|
||||
.BoxLayout2:
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_1
|
||||
clearevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_2
|
||||
setevent EVENT_GOLDENROD_DEPT_STORE_B1F_LAYOUT_3
|
||||
end
|
||||
|
||||
.Done:
|
||||
end
|
||||
|
||||
GoldenrodDeptStoreElevatorData:
|
||||
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_MapEvents:
|
||||
db 0, 0 ; filler
|
||||
|
||||
def_warp_events
|
||||
warp_event 1, 3, GOLDENROD_DEPT_STORE_1F, -1
|
||||
warp_event 2, 3, GOLDENROD_DEPT_STORE_1F, -1
|
||||
|
||||
def_coord_events
|
||||
|
||||
def_bg_events
|
||||
bg_event 3, 0, BGEVENT_READ, GoldenrodDeptStoreElevatorScript
|
||||
|
||||
def_object_events
|
||||
Loading…
Add table
Add a link
Reference in a new issue