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

- Most, if not all, Silph Co. warps have been fixed. Inappropriate ones have been removed. - The Metal Coat can now be found where one corrupted Silph Co. warp was to fill dead space, and another is in the Power Plant, replacing Carbos. - Bill now trades you Hisuian Arcanine after being saved. - Bill's Grandfather now trades you Hisuian Electrode. Had to remove Crinkles, but Tangela is literally right next to Cinnabar, c'mon lol - Toedscool can now be found behind Pallet Town, replacing Gloom and Weepinbell, making it more focused. - Now you can't run from Omega! May expand this to more Pokemon depending on feedback and whether it's ok on processing. Main concern is making the run button too laggy - it raised some eyebrows.
33 lines
539 B
NASM
33 lines
539 B
NASM
CinnabarLabTradeRoom_Script:
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
CinnabarLabTradeRoom_TextPointers:
|
|
dw Lab2Text1
|
|
dw Lab2Text2
|
|
; dw Lab2Text3
|
|
dw CinnabarLabTrader
|
|
|
|
Lab2Text1:
|
|
text_far _Lab2Text1
|
|
text_end
|
|
|
|
Lab2Text2:
|
|
text_asm
|
|
ld a, TRADE_FOR_JENNY
|
|
ld [wWhichTrade], a
|
|
jr Lab2DoTrade
|
|
|
|
;Lab2Text3:
|
|
; text_asm
|
|
; ld a, TRADE_FOR_CRINKLES
|
|
; ld [wWhichTrade], a
|
|
Lab2DoTrade:
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd
|
|
|
|
CinnabarLabTrader:
|
|
text_asm
|
|
ld a, TRADE_WITH_SELF
|
|
ld [wWhichTrade], a
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd |