mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-21 06:17:59 +13:00

So the scenes are massively unfinished and need some bug fixes, namely; - Make the Silent Hills scene load properly. - Finish the interior scene; have the player walk into the map. - Make the scene loading in the second Blue's Lab room load properly (same issue as Silent Hills) Main issues come from the events not working like RBY: - You cannot be walked directly into a warp! - Coord events don't seem to trigger scenes on their own and I'm just kind of perplexed by it. If anyone more experienced wants to take a stab at it, by all means! This is looking really good!
19 lines
467 B
NASM
19 lines
467 B
NASM
NonTrainerCallerNames:
|
|
; entries correspond to PHONECONTACT_* constants (see constants/trainer_constants.asm)
|
|
table_width 2, NonTrainerCallerNames
|
|
dw .none
|
|
dw .mom
|
|
dw .bikeshop
|
|
dw .bill
|
|
dw .elm
|
|
dw .buena
|
|
dw .blue
|
|
assert_table_length NUM_NONTRAINER_PHONECONTACTS + 1
|
|
|
|
.none: db "----------@"
|
|
.mom: db "MOM:@"
|
|
.bill: db "BILL:@"
|
|
.elm: db "PROF.ELM:@"
|
|
.bikeshop: db "BIKE SHOP:@"
|
|
.buena: db "BUENA:<LF> DISC JOCKEY@"
|
|
.blue: db "BILL:@" |