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