mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30: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
636 B
NASM
32 lines
636 B
NASM
CeladonPokecenter_Script:
|
|
call Serial_TryEstablishingExternallyClockedConnection
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
CeladonPokecenter_TextPointers:
|
|
dw CeladonHealNurseText
|
|
dw CeladonPokecenterText2
|
|
dw CeladonPokecenterText3
|
|
dw CeladonTradeNurseText
|
|
dw SandslashTrade
|
|
|
|
CeladonTradeNurseText:
|
|
script_cable_club_receptionist
|
|
|
|
CeladonHealNurseText:
|
|
script_pokecenter_nurse
|
|
|
|
CeladonPokecenterText2:
|
|
text_far _CeladonPokecenterText2
|
|
text_end
|
|
|
|
CeladonPokecenterText3:
|
|
text_far _CeladonPokecenterText3
|
|
text_end
|
|
|
|
SandslashTrade:
|
|
text_asm
|
|
ld a, TRADE_FOR_SANDSLASH_A
|
|
ld [wWhichTrade], a
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd
|