summaryrefslogtreecommitdiff
path: root/maps/Route2Gate.asm
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2018-10-03 01:26:37 -0600
committerIIMarckus <iimarckus@gmail.com>2018-10-03 01:26:37 -0600
commit752bb47344f9862a4fe9b7cc2b096b0fe42cfad9 (patch)
tree41a1023c43cf0568cd284538617207f2477acda2 /maps/Route2Gate.asm
parentf9eb9172a672755544e54a0562ec77b34734dfd1 (diff)
Add map objects from bank 5F.
Diffstat (limited to 'maps/Route2Gate.asm')
-rw-r--r--maps/Route2Gate.asm40
1 files changed, 40 insertions, 0 deletions
diff --git a/maps/Route2Gate.asm b/maps/Route2Gate.asm
new file mode 100644
index 00000000..a9f37b2e
--- /dev/null
+++ b/maps/Route2Gate.asm
@@ -0,0 +1,40 @@
+ const_def 2 ; object constants
+ const ROUTE2GATE_SCIENTIST
+
+Route2Gate_MapScripts:
+ db 0 ; scene scripts
+
+ db 0 ; callbacks
+
+Route2GateScientistScript:
+ jumptextfaceplayer Route2GateScientistText
+
+Route2GateScientistText:
+ text "Are you <PLAYER>?"
+
+ para "I work as PROF."
+ line "OAK's AIDE."
+
+ para "I had no idea that"
+ line "you were out here."
+
+ para "PROF.OAK's LAB is"
+ line "nearby in PALLET"
+ cont "TOWN."
+ done
+
+Route2Gate_MapEvents:
+ db 0, 0 ; filler
+
+ db 4 ; warp events
+ warp_event 4, 0, ROUTE_2, 3
+ warp_event 5, 0, ROUTE_2, 4
+ warp_event 4, 7, ROUTE_2, 2
+ warp_event 5, 7, ROUTE_2, 2
+
+ db 0 ; coord events
+
+ db 0 ; bg events
+
+ db 1 ; object events
+ object_event 6, 4, SPRITE_SCIENTIST, SPRITEMOVEDATA_WALK_UP_DOWN, 0, 2, -1, -1, PAL_NPC_BLUE, OBJECTTYPE_SCRIPT, 0, Route2GateScientistScript, -1