summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-05-23 20:39:36 -0300
committerJesusaves <cpntb1@ymail.com>2024-05-23 20:39:36 -0300
commit6e7b7479f9a5ef967f078b1ffb6b50559cc79436 (patch)
treeb8e744abafdede988888e043bd3cbb7e3d3b9650 /npc
parent01a646dae808fa3971fb6da1062a64f14aad70bd (diff)
downloadserverdata-6e7b7479f9a5ef967f078b1ffb6b50559cc79436.tar.gz
serverdata-6e7b7479f9a5ef967f078b1ffb6b50559cc79436.tar.bz2
serverdata-6e7b7479f9a5ef967f078b1ffb6b50559cc79436.tar.xz
serverdata-6e7b7479f9a5ef967f078b1ffb6b50559cc79436.zip
Barbara now speeds Mana Tree fruits generation. This concludes Barbara Rewards.
Diffstat (limited to 'npc')
-rw-r--r--npc/025-2-4/tree.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/025-2-4/tree.txt b/npc/025-2-4/tree.txt
index 4d22ee54e..943c8ada7 100644
--- a/npc/025-2-4/tree.txt
+++ b/npc/025-2-4/tree.txt
@@ -39,7 +39,11 @@ function manatreeAgain {
inventoryplace Manapple, 1;
mesc l("The tree generously offer you one of its fruits.");
mesc l("You gladly accept it. But probably better not disturb it for a few days.");
- setq3 FortressQuest_ManaTree, gettimeparam(GETTIME_DAYOFMONTH)+3;
+ // If you pledged for Barbara's life, 2 days cooldown, else 3d
+ if (BARBARA_STATE == 3)
+ setq3 FortressQuest_ManaTree, gettimeparam(GETTIME_DAYOFMONTH)+2;
+ else
+ setq3 FortressQuest_ManaTree, gettimeparam(GETTIME_DAYOFMONTH)+3;
getitem Manapple, 1;
next;
return;