Skip to content

Commit 2e80f5a

Browse files
author
Editor Rust
committed
Fixed Tasks
Fixed tasks, new market image, harvest ready indicator on tab title.
1 parent b47aa90 commit 2e80f5a

23 files changed

+638
-521
lines changed

Data/initialData.js

Lines changed: 27 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ A few states for vegetables
33
1. "Ready" - your plant is ready
44
2. (timestamp) - the moment your plant will be ready
55
3. "Empty" - your plot is empty
6-
4. "Locked" - your plot is locked
7-
5. "withered" - your plants have been killed by frost
6+
4. "withered" - your plants have been killed by frost
87
*/
98

109
let initGameData = {
@@ -31,9 +30,9 @@ let initGameData = {
3130
rhubarb: 0,
3231

3332
// Market Data
34-
marketResets: 0,
33+
marketResets: 2,
3534
fertilizers: 0,
36-
doughnuts: 0,
35+
doughnuts: 1,
3736
weedPieces: 0,
3837
weedsLeft: 0,
3938

@@ -120,36 +119,28 @@ let initGameData = {
120119
},
121120

122121
// Tasks
123-
taskBox1: "unoccupied",
124-
taskBox2: "unoccupied",
125-
taskBox3: "unoccupied",
126-
taskBox4: "unoccupied",
127-
jebsPeaSalad: "active",
128-
jebsPeaSaladNum: 0,
129-
useMarketResets: "unreached",
130-
useMarketResetsNum: 0,
131-
tryFertilizer: "unreached",
132-
tryFertilizerNum: 0,
133-
jebsGrilledCorn: "unreached",
134-
jebsGrilledCornNum: 0,
135-
josephinesDandelionSalad: "unreached",
136-
josephinesDandelionSaladNum: 0,
137-
// Black Market
138-
seeBlackMarket: "unreached",
139-
seeBlackMarketNum: 0,
140-
tryPoliceDoughnuts: "unreached",
141-
tryPoliceDoughnutsNum: 0,
142-
// Unlock Plots: Grandpa Jenkins
143-
unlockThe_cornPlot: "active",
144-
unlockThe_cornPlotNum: 0,
145-
// Bake Sale: Grandma Josephine
146-
bakeSale: "awaiting",
147-
bakeSale_peaSnacks: "unreached",
148-
bakeSale_peaSnacksNum: 0,
149-
bakeSale_cornBread: "unreached",
150-
bakeSale_cornBreadNum: 0,
151-
bakeSale_strawberryJam: "unreached",
152-
bakeSale_strawberryJamNum: 0,
153-
bakeSale_pumpkinPie: "unreached",
154-
bakeSale_pumpkinPieNum: 0,
122+
tasktab1: "open",
123+
tasktab2: "open",
124+
tasktab3: "open",
125+
tasktab4: "open",
126+
127+
tasks: {
128+
// jeb1: { status: "active", hasData: "earn coins", data: [[0, 3000]] },
129+
130+
jeb1: { status: "active", hasData: false },
131+
jeb2: { status: "unreached", hasData: false },
132+
133+
gram1: { status: "unreached", hasData: false },
134+
gram2: { status: "unreached", hasData: false },
135+
gram3: { status: "unreached", hasData: false },
136+
gram4: { status: "unreached", hasData: false },
137+
gram5: { status: "unreached", hasData: false },
138+
gram6: { status: "unreached", hasData: false },
139+
140+
gramp1: { status: "active", hasData: false },
141+
gramp2: { status: "unreached", hasData: false },
142+
143+
shade1: { status: "unreached", hasData: false },
144+
shade2: { status: "unreached", hasData: false }
145+
},
155146
}

0 commit comments

Comments
 (0)