You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated help, fixed issue with snow not reducing vegetable amounts,
fertilizer now only takes off 30 minutes and doubles yield, peas and
corn now worth more (+5 each), rhubarb now 2 hours shorter (4 hours) and
worth 4,000 less (50,000), dynamically creates market stalls, market
resets fixed, nows creates a deep copy, not enough coins alert for buying
seeds and plots
Copy file name to clipboardExpand all lines: Data/taskData.js
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ t1: {
12
12
},
13
13
demand: {
14
14
text: "Submit 25 Peas",
15
-
code: "if (gameData.peas >= 25) { gameData.peas -= 25; updateVeg('peas'); checkTasks('jebsPeaSalad'); } else { fadeTextAppear(event, `Not enough produce - you need ${25 - gameData.peas} more`, false, '#de0000'); }"
15
+
code: "if (gameData.peas >= 25) { gameData.peas -= 25; updateVeg('peas'); checkTasks('jebsPeaSalad'); } else { fadeTextAppear(event, `Not enough produce - you need ${25 - gameData.peas} more`, '#de0000'); }"
16
16
},
17
17
text: {
18
18
notReady: "I plan on making a nice, big salad, and I'll need some fresh produce for it. Could you do me a favor and get some peas for me?",
@@ -69,7 +69,7 @@ t3: {
69
69
code: "return;"
70
70
},
71
71
text: {
72
-
notReady: "Your plants look like they could do with some help. Why don't you use some fertilizer? It'll double the crop yeild and finish the growing instantly!",
72
+
notReady: "Your plants look like they could do with some help. Why don't you use some fertilizer? It'll double the crop yeild and take 30 minutes off the growing time!",
73
73
ready: "Wow, just look at those plants grow! Here, take these, I've had them lying about for years!"
notReady: "What an outrage! I have found that we have been losing profit to a competing company, Happy Place Farms! Their top product is lettuce salad, but I think we can do better! Introducing; dandelion salad!",
notReady: "I have a wonderful lucrative idea! We can hold a bake sale with plenty of delicious foods! Let's start with cornbread, my personal faviorite!",
0 commit comments