Skip to content

Commit 0a646b0

Browse files
committed
fix: Adjust starting resources
1 parent 080897f commit 0a646b0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/game-logic/resources.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,33 @@ export const RESOURCES = {
88
population: {
99
starting: 25,
1010
},
11+
research: {
12+
starting: 300,
13+
},
1114
// raw resources
1215
energy: {
13-
starting: 100,
16+
starting: 500,
1417
credit_value: 1,
1518
},
1619
minerals: {
17-
starting: 100,
20+
starting: 500,
1821
credit_value: 1,
1922
},
2023
food: {
21-
starting: 100,
24+
starting: 500,
2225
credit_value: 1,
2326
},
2427
// processed resources
2528
fuel: {
26-
starting: 20,
29+
starting: 100,
2730
credit_value: 5,
2831
},
29-
research: {
30-
starting: 20,
31-
},
3232
alloys: {
33-
starting: 20,
33+
starting: 100,
3434
credit_value: 8,
3535
},
3636
consumer_goods: {
37-
starting: 20,
37+
starting: 100,
3838
credit_value: 6,
3939
},
4040
} as const satisfies Record<string, Resource>;

0 commit comments

Comments
 (0)