2018-06-24 07:09:41 -07:00
|
|
|
FruitTreeScript::
|
2015-01-20 00:01:23 -08:00
|
|
|
callasm GetCurTreeFruit
|
2015-12-09 15:25:44 -08:00
|
|
|
opentext
|
2019-03-10 12:31:59 -07:00
|
|
|
readmem wCurFruit
|
|
|
|
getitemname STRING_BUFFER_3, USE_SCRIPT_VAR
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext FruitBearingTreeText
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2015-01-20 00:01:23 -08:00
|
|
|
callasm TryResetFruitTrees
|
|
|
|
callasm CheckFruitTree
|
2013-09-07 20:26:28 -07:00
|
|
|
iffalse .fruit
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext NothingHereText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .end
|
2013-09-07 20:26:28 -07:00
|
|
|
|
|
|
|
.fruit
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext HeyItsFruitText
|
2019-03-10 12:31:59 -07:00
|
|
|
readmem wCurFruit
|
2015-11-04 17:20:14 -08:00
|
|
|
giveitem ITEM_FROM_MEM
|
2013-09-07 20:26:28 -07:00
|
|
|
iffalse .packisfull
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext ObtainedFruitText
|
|
|
|
callasm PickedFruitTree
|
2013-09-07 20:26:28 -07:00
|
|
|
specialsound
|
|
|
|
itemnotify
|
2019-03-10 13:39:31 -07:00
|
|
|
sjump .end
|
2013-09-07 20:26:28 -07:00
|
|
|
|
|
|
|
.packisfull
|
2019-11-03 09:48:54 -08:00
|
|
|
promptbutton
|
2015-01-20 00:01:23 -08:00
|
|
|
writetext FruitPackIsFullText
|
2015-11-25 07:16:29 -08:00
|
|
|
waitbutton
|
2013-09-07 20:26:28 -07:00
|
|
|
|
|
|
|
.end
|
2015-11-25 07:16:29 -08:00
|
|
|
closetext
|
2013-09-07 20:26:28 -07:00
|
|
|
end
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
GetCurTreeFruit:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurFruitTree]
|
2013-09-07 20:26:28 -07:00
|
|
|
dec a
|
|
|
|
call GetFruitTreeItem
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurFruit], a
|
2013-09-07 20:26:28 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
TryResetFruitTrees:
|
2018-08-06 10:43:54 -07:00
|
|
|
ld hl, wDailyFlags1
|
|
|
|
bit DAILYFLAGS1_ALL_FRUIT_TREES_F, [hl]
|
2013-09-07 20:26:28 -07:00
|
|
|
ret nz
|
|
|
|
jp ResetFruitTrees
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CheckFruitTree:
|
2013-09-07 20:26:28 -07:00
|
|
|
ld b, 2
|
|
|
|
call GetFruitTreeFlag
|
|
|
|
ld a, c
|
2023-09-30 10:12:57 -07:00
|
|
|
ldh [hScriptVar], a
|
2013-09-07 20:26:28 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
PickedFruitTree:
|
2013-09-07 20:26:28 -07:00
|
|
|
ld b, 1
|
|
|
|
jp GetFruitTreeFlag
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
ResetFruitTrees:
|
2013-09-07 20:26:28 -07:00
|
|
|
xor a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wFruitTreeFlags
|
2022-02-14 14:28:08 -08:00
|
|
|
rept (NUM_FRUIT_TREES + 7) / 8 - 1
|
2013-09-07 20:26:28 -07:00
|
|
|
ld [hli], a
|
2022-02-14 14:28:08 -08:00
|
|
|
endr
|
2013-09-07 20:26:28 -07:00
|
|
|
ld [hl], a
|
2018-08-06 10:43:54 -07:00
|
|
|
ld hl, wDailyFlags1
|
|
|
|
set DAILYFLAGS1_ALL_FRUIT_TREES_F, [hl]
|
2013-09-07 20:26:28 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
GetFruitTreeFlag:
|
2013-09-07 20:26:28 -07:00
|
|
|
push hl
|
|
|
|
push de
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurFruitTree]
|
2013-09-07 20:26:28 -07:00
|
|
|
dec a
|
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wFruitTreeFlags
|
2013-09-07 20:26:28 -07:00
|
|
|
call FlagAction
|
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
GetFruitTreeItem:
|
2013-09-07 20:26:28 -07:00
|
|
|
push hl
|
|
|
|
push de
|
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
|
|
|
ld hl, FruitTreeItems
|
|
|
|
add hl, de
|
|
|
|
ld a, [hl]
|
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
2017-12-15 14:22:52 -08:00
|
|
|
INCLUDE "data/items/fruit_trees.asm"
|
2017-12-11 19:44:25 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
FruitBearingTreeText:
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far _FruitBearingTreeText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2013-09-07 20:26:28 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
HeyItsFruitText:
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far _HeyItsFruitText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2013-09-07 20:26:28 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
ObtainedFruitText:
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far _ObtainedFruitText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2013-09-07 20:26:28 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
FruitPackIsFullText:
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far _FruitPackIsFullText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|
2013-09-07 20:26:28 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
NothingHereText:
|
2018-10-28 09:16:55 -07:00
|
|
|
text_far _NothingHereText
|
2018-11-17 10:33:03 -08:00
|
|
|
text_end
|