Bill's Garden, add Rowan NPC

Rowan NPC added to Cinnabar Lab, just a little cute thing.

Bill's Garden could see many revisions, what's here is the bare minimum. Here's what's done:
- Nidorino NPC blocks it off and is unlocked in the post-game. This currently contradicts the myth - I have a plan for this soon.
- Wild Pokemon are the "non-reproducibles" given in Stadium; starters and eevee are mandatory given those were common in the myth
- Hisui forms should be added when possible
- I had to remake Martha's map in the forest tileset so leaving would be possible
- Everything is at a point where it functions
This commit is contained in:
May Evans 2023-03-03 10:41:28 +00:00
parent 1d49a84b7e
commit bcb67db573
20 changed files with 113 additions and 28 deletions

6
scripts/BillsGarden.asm Normal file
View file

@ -0,0 +1,6 @@
BillsGarden_Script:
jp EnableAutoTextBoxDrawing
BillsGarden_TextPointers:
text_end ; unused

View file

@ -11,6 +11,7 @@ BillsHouse_ScriptPointers:
dw BillsHouseScript3
dw BillsHouseScript4
dw BillsHouseScript5
dw BillsHouseNidorino
BillsHouseScript0:
ret
@ -212,3 +213,11 @@ BillsHouseText3:
BillsHouseText_1e8da:
text_far _BillsHouseText_1e8da
text_end
BillsHouseNidorino:
text_far _BillsHouseNidorino
text_asm
ld a, NIDORINO
call PlayCry
text_far _BillWarning
jp TextScriptEnd

View file

@ -8,6 +8,7 @@ CinnabarLab_TextPointers:
dw Lab1Text3
dw Lab1Text4
dw Lab1Text5
dw Lab1Text6 ; rowan
Lab1Text1:
text_far _Lab1Text1
@ -28,3 +29,7 @@ Lab1Text4:
Lab1Text5:
text_far _Lab1Text5
text_end
Lab1Text6:
text_far _Lab1Text6
text_end

View file

@ -103,6 +103,9 @@ HallofFameRoomScript1:
ld a, HS_ROUTE_1_OAK
ld [wMissableObjectIndex], a
predef ShowObject
ld a, HS_BILLS_NIDORINO
ld [wMissableObjectIndex], a
predef HideObject
ld a, HS_MANSION_GUARD
ld [wMissableObjectIndex], a
predef HideObject