mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00

Rowan NPC added to Cinnabar Lab, just a little cute thing. Bill's Garden could see many revisions, what's here is the bare minimum. Here's what's done: - Nidorino NPC blocks it off and is unlocked in the post-game. This currently contradicts the myth - I have a plan for this soon. - Wild Pokemon are the "non-reproducibles" given in Stadium; starters and eevee are mandatory given those were common in the myth - Hisui forms should be added when possible - I had to remake Martha's map in the forest tileset so leaving would be possible - Everything is at a point where it functions
36 lines
433 B
NASM
36 lines
433 B
NASM
CinnabarLab_Script:
|
|
call EnableAutoTextBoxDrawing
|
|
ret
|
|
|
|
CinnabarLab_TextPointers:
|
|
dw Lab1Text1
|
|
dw Lab1Text2
|
|
dw Lab1Text3
|
|
dw Lab1Text4
|
|
dw Lab1Text5
|
|
dw Lab1Text6 ; rowan
|
|
|
|
Lab1Text1:
|
|
text_far _Lab1Text1
|
|
text_end
|
|
|
|
Lab1Text2:
|
|
text_far _Lab1Text2
|
|
text_end
|
|
|
|
Lab1Text3:
|
|
text_far _Lab1Text3
|
|
text_end
|
|
|
|
Lab1Text4:
|
|
text_far _Lab1Text4
|
|
text_end
|
|
|
|
Lab1Text5:
|
|
text_far _Lab1Text5
|
|
text_end
|
|
|
|
Lab1Text6:
|
|
text_far _Lab1Text6
|
|
text_end
|