mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40: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.
24 lines
452 B
NASM
24 lines
452 B
NASM
FuchsiaBillsGrandpasHouse_Script:
|
|
call EnableAutoTextBoxDrawing
|
|
ret
|
|
|
|
FuchsiaBillsGrandpasHouse_TextPointers:
|
|
dw FuchsiaHouse1Text1
|
|
dw FuchsiaHouse1Text2
|
|
dw FuchsiaHouse1Text3
|
|
|
|
FuchsiaHouse1Text1:
|
|
text_far _FuchsiaHouse1Text1
|
|
text_end
|
|
|
|
FuchsiaHouse1Text2: ; Bill's Grandfather
|
|
text_asm
|
|
ld a, TRADE_FOR_ELECTRODE_H
|
|
ld [wWhichTrade], a
|
|
predef DoInGameTradeDialogue
|
|
jp TextScriptEnd
|
|
|
|
FuchsiaHouse1Text3:
|
|
text_far _FuchsiaHouse1Text3
|
|
text_end
|