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

- New Celeste Hill Gate location so the entrance into the location makes more sense. Also took the opportunity to include more lore. This replaces Pokemon Tower 4F. - Fixed a bug that caused the Cat icon to not animate correctly. - Made the infinite Nugget glitch work properly because I was stupid and didn't test it. - Luxwan now uses the Small Bird icon to fit with the rest of the line. - Nidoreign has a new Pokedex entry and classification, centred on the Nido's origins in the Moon Rabbit of Asian mythology.
23 lines
400 B
NASM
23 lines
400 B
NASM
CelesteHillGate_Script:
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
CelesteHillGate_TextPointers:
|
|
dw CelesteHillGateText1
|
|
dw CelesteHillGateText2
|
|
dw CelesteHillGateText3
|
|
|
|
CelesteHillGateText1:
|
|
text_far _CelesteHillGateText1
|
|
text_end
|
|
|
|
CelesteHillGateText2:
|
|
text_far _CelesteHillGateText2
|
|
text_end
|
|
|
|
CelesteHillGateText3:
|
|
text_far _CelesteHillGateText3
|
|
text_asm
|
|
ld a, LUXWAN
|
|
call PlayCry
|
|
jp TextScriptEnd
|