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

- Regional trades now dummy out the "-A" thing etc so they look nice - Added Celadon, Saffron, Viridian, and Vermillion regional trades - Added Galarian Sidegrade trades to the S. S. Anne, but Perrserker and Sirfetch'd specifically don't work. I have zero clue why, as they work the same as the rest. - Corrected grammar in the "Happy" text when you finish a trade
32 lines
626 B
NASM
32 lines
626 B
NASM
SaffronPokecenter_Script:
|
|
call Serial_TryEstablishingExternallyClockedConnection
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
SaffronPokecenter_TextPointers:
|
|
dw SaffronHealNurseText
|
|
dw SaffronPokecenterText2
|
|
dw SaffronPokecenterText3
|
|
dw SaffronTradeNurseText
|
|
dw RaichuTrade
|
|
|
|
SaffronHealNurseText:
|
|
script_pokecenter_nurse
|
|
|
|
SaffronPokecenterText2:
|
|
text_far _SaffronPokecenterText2
|
|
text_end
|
|
|
|
SaffronPokecenterText3:
|
|
text_far _SaffronPokecenterText3
|
|
text_end
|
|
|
|
SaffronTradeNurseText:
|
|
script_cable_club_receptionist
|
|
|
|
RaichuTrade:
|
|
text_asm
|
|
ld a, TRADE_FOR_RAICHU_A
|
|
ld [wWhichTrade], a
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd
|