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

This fixes the issue with Mt Moon Square's NPC text and changes the Battle Tent to a continuous system. The Battle Tent's new system circumvents the issue with wBTStreakCnt while providing the player with more agency. They'll get constant prize money after each battle and can abandon the challenge at any time. It may feel more grindy but in my opinion works just as well.
23 lines
400 B
NASM
23 lines
400 B
NASM
MtMoonSquare_Script:
|
|
jp EnableAutoTextBoxDrawing
|
|
|
|
MtMoonSquare_TextPointers:
|
|
dw MtMoonSquareClefairy
|
|
dw MtMoonSquareClefairy
|
|
dw MtMoonSquareClefairy
|
|
dw MtMoonSquareSign
|
|
|
|
MtMoonSquareClefairy:
|
|
text_far _ClefairyText
|
|
text_asm
|
|
ld a, CLEFAIRY
|
|
call PlayCry
|
|
jp TextScriptEnd
|
|
|
|
MtMoonSquareSign:
|
|
text "MT MOON SQUARE"
|
|
line "Please don't"
|
|
cont "litter. Put trash"
|
|
cont "where it belongs!"
|
|
done
|