Add moisture clock, weeds and pest generation

This commit is contained in:
Bassoonian
2023-12-05 21:54:17 +01:00
parent 5f2c8dfb0b
commit 36befdcdf8
4 changed files with 95 additions and 5 deletions

View File

@@ -373,6 +373,18 @@ BerryTree_Text_ScatteredMulch:
.endif
.if OW_BERRY_WEEDS == TRUE
BerryTree_EventScript_WeedIsGrowing::
msgbox BerryTree_Text_WeedIsGrowing, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, BerryTree_EventScript_PullOutWeed
return
BerryTree_EventScript_PullOutWeed::
special ObjectEventInteractionPullBerryWeed
message BerryTree_Text_PulledOutTheWeed
waitmessage
waitbuttonpress
return
BerryTree_Text_WeedIsGrowing:
.string "A weed is growing here.\n"
.string "Do you want to pull it out?$"