mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-16 14:55:58 -05:00
Some checks failed
CI / build (push) Has been cancelled
* Started labelling dumped bank 1 functions, identified movement values * Changed all NPCs to use the new movement constants * Updated the rest of the movement constant instances, removed the old movement_constants.asm * Ready to deal the finishing blow to bank01.asm * Bank 01 is no more. Other scattered changes. * Labelled a few flags and matched a few variables with pokegold * Finished labelling bank02.asm too while I was at it
30 lines
974 B
NASM
30 lines
974 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "data/maps/objects/SilentHillLabBack.asm", ROMX
|
|
|
|
map_attributes SilentHillLabBack, SILENT_HILL_LAB_BACK, 0
|
|
|
|
SilentHillLabBack_MapEvents::
|
|
dw $4000 ; unknown
|
|
|
|
def_warp_events
|
|
warp_event 3, 7, SILENT_HILL_LAB_FRONT, 3, 42
|
|
warp_event 4, 7, SILENT_HILL_LAB_FRONT, 3, 43
|
|
|
|
def_bg_events
|
|
bg_event 0, 1, 1
|
|
bg_event 1, 1, 2
|
|
bg_event 2, 1, 3
|
|
bg_event 3, 1, 4
|
|
bg_event 6, 0, 5
|
|
|
|
def_object_events
|
|
object_event 4, 2, SPRITE_OKIDO, SPRITEMOVEFN_TURN_DOWN, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0
|
|
object_event 3, 4, SPRITE_SILVER, SPRITEMOVEFN_TURN_UP, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0
|
|
object_event 5, 2, SPRITE_POKE_BALL, SPRITEMOVEFN_TURN_DOWN, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0
|
|
object_event 6, 2, SPRITE_POKE_BALL, SPRITEMOVEFN_TURN_DOWN, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0
|
|
object_event 7, 2, SPRITE_POKE_BALL, SPRITEMOVEFN_TURN_DOWN, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0
|
|
|
|
SilentHillLabBack_Blocks::
|
|
INCBIN "maps/SilentHillLabBack.blk"
|