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
644 B
NASM
32 lines
644 B
NASM
ViridianPokecenter_Script:
|
|
call Serial_TryEstablishingExternallyClockedConnection
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
ViridianPokecenter_TextPointers:
|
|
dw ViridianHealNurseText
|
|
dw ViridianPokeCenterText2
|
|
dw ViridianPokeCenterText3
|
|
dw ViridianTradeNurseText
|
|
dw RaticateTrade
|
|
|
|
ViridianHealNurseText:
|
|
script_pokecenter_nurse
|
|
|
|
ViridianPokeCenterText2:
|
|
text_far _ViridianPokeCenterText2
|
|
text_end
|
|
|
|
ViridianPokeCenterText3:
|
|
text_far _ViridianPokeCenterText3
|
|
text_end
|
|
|
|
ViridianTradeNurseText:
|
|
script_cable_club_receptionist
|
|
|
|
RaticateTrade:
|
|
text_asm
|
|
ld a, TRADE_FOR_RATICATE_A
|
|
ld [wWhichTrade], a
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd
|