mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

- Added a gate between the two halves of Route 10 on the right side of Rock Tunnel that contains the Graveler trade NPC. - Improved Faraway's encounter table. - Made the music go silent before battling both of the postgame bosses for suspense reasons. It also sounds cool. - Minor text fixes
16 lines
263 B
NASM
16 lines
263 B
NASM
Route10Gate_Script:
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
Route10Gate_TextPointers:
|
|
dw Route10GateText1
|
|
|
|
Route10GateText1:
|
|
text_asm
|
|
ld a, TRADE_FOR_JENNY
|
|
ld [wWhichTrade], a
|
|
jr Route10GateDoTrade
|
|
|
|
Route10GateDoTrade:
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd
|