We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080897f commit 0a646b0Copy full SHA for 0a646b0
src/game-logic/resources.ts
@@ -8,33 +8,33 @@ export const RESOURCES = {
8
population: {
9
starting: 25,
10
},
11
+ research: {
12
+ starting: 300,
13
+ },
14
// raw resources
15
energy: {
- starting: 100,
16
+ starting: 500,
17
credit_value: 1,
18
19
minerals: {
20
21
22
23
food: {
24
25
26
27
// processed resources
28
fuel: {
- starting: 20,
29
+ starting: 100,
30
credit_value: 5,
31
- research: {
- },
32
alloys: {
33
34
credit_value: 8,
35
36
consumer_goods: {
37
38
credit_value: 6,
39
40
} as const satisfies Record<string, Resource>;
0 commit comments