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