Skip to content

Commit eb397dd

Browse files
committed
fix: Balancing buildings, districts and ships
1 parent 53aac72 commit eb397dd

File tree

4 files changed

+61
-73
lines changed

4 files changed

+61
-73
lines changed

src/game-logic/buildings.ts

+26-28
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ export const BUILDINGS = {
99
},
1010
upkeep: {
1111
energy: 5, // efficient_buildings tech tree
12-
consumer_goods: 5, // efficient_buildings tech tree
12+
consumer_goods: 4, // efficient_buildings tech tree
1313
},
1414
production: {
15-
credits: 20, // improved_production tech tree
15+
credits: 15, // improved_production tech tree
1616
},
1717
},
1818
// basic resource buildings. cost should be around 75, upkeep around 5, production around 10
@@ -23,10 +23,10 @@ export const BUILDINGS = {
2323
minerals: 75, // silicon solar collectors // cheap_buildings tech tree
2424
},
2525
upkeep: {
26-
minerals: 2, // efficient_resources tech tree
26+
minerals: 3, // efficient_resources tech tree
2727
},
2828
production: {
29-
energy: 20, // energy_production tech tree
29+
energy: 18, // energy_production tech tree
3030
},
3131
},
3232
mine: { // cheap_buildings, efficient_buildings, improved_production tech trees
@@ -37,11 +37,10 @@ export const BUILDINGS = {
3737
energy: 25, // digging the mine // cheap_buildings tech tree
3838
},
3939
upkeep: {
40-
energy: 2, // powering the mine // efficient_buildings tech tree
41-
fuel: 2, // efficient_buildings tech tree
40+
energy: 3, // powering the mine // efficient_buildings tech tree
4241
},
4342
production: {
44-
minerals: 24, // mineral_production tech tree
43+
minerals: 18, // mineral_production tech tree
4544
},
4645
},
4746
farm: { // cheap_buildings, efficient_buildings, improved_production tech trees
@@ -51,11 +50,10 @@ export const BUILDINGS = {
5150
energy: 75, // tilling the soil // cheap_buildings tech tree
5251
},
5352
upkeep: {
54-
energy: 2, // watering the crops // efficient_buildings tech tree
55-
fuel: 2, // efficient_buildings tech tree
53+
energy: 3, // watering the crops // efficient_buildings tech tree
5654
},
5755
production: {
58-
food: 24, // food_production tech tree
56+
food: 18, // food_production tech tree
5957
},
6058
},
6159
// advanced resource buildings. cost should be around 100, upkeep around 20, production around 10
@@ -66,11 +64,11 @@ export const BUILDINGS = {
6664
minerals: 100, // building the lab // cheap_buildings tech tree
6765
},
6866
upkeep: {
69-
energy: 10, // powering the lab // efficient_buildings tech tree
67+
energy: 5, // powering the lab // efficient_buildings tech tree
7068
consumer_goods: 5, // efficient_buildings tech tree
7169
},
7270
production: {
73-
research: 10, // research_production tech tree
71+
research: 20, // research_production tech tree
7472
},
7573
},
7674
foundry: { // cheap_buildings, efficient_buildings, improved_production tech trees
@@ -80,11 +78,11 @@ export const BUILDINGS = {
8078
minerals: 100, // building the foundry // cheap_buildings tech tree
8179
},
8280
upkeep: {
83-
minerals: 15, // the processed materials
84-
energy: 10, // powering the foundry // efficient_buildings tech tree
81+
minerals: 5, // the processed materials
82+
energy: 4, // powering the foundry // efficient_buildings tech tree
8583
},
8684
production: {
87-
alloys: 10, // alloy_production tech tree
85+
alloys: 8, // alloy_production tech tree
8886
},
8987
},
9088
factory: {
@@ -94,11 +92,11 @@ export const BUILDINGS = {
9492
minerals: 100, // cheap_buildings tech tree
9593
},
9694
upkeep: {
97-
minerals: 15, // efficient_buildings tech tree
98-
energy: 10, // efficient_buildings tech tree
95+
minerals: 5, // efficient_buildings tech tree
96+
energy: 4, // efficient_buildings tech tree
9997
},
10098
production: {
101-
consumer_goods: 10, // improved_production tech tree
99+
consumer_goods: 12, // improved_production tech tree
102100
},
103101
},
104102
refinery: { // cheap_buildings, efficient_buildings, improved_production tech trees
@@ -108,8 +106,8 @@ export const BUILDINGS = {
108106
minerals: 100, // building the refinery // cheap_buildings tech tree
109107
},
110108
upkeep: {
111-
minerals: 10, // the crude oil
112-
energy: 15, // powering the refinery // efficient_buildings tech tree
109+
minerals: 5, // the crude oil
110+
energy: 4, // powering the refinery // efficient_buildings tech tree
113111
},
114112
production: {
115113
fuel: 10, // fuel_production tech tree
@@ -124,10 +122,10 @@ export const BUILDINGS = {
124122
alloys: 75, // cheap_buildings tech tree
125123
},
126124
upkeep: {
127-
minerals: 10, // efficient_buildings tech tree
128-
energy: 5, // efficient_buildings tech tree
129-
fuel: 5, // efficient_buildings tech tree
130-
alloys: 10, // efficient_buildings tech tree
125+
minerals: 3, // efficient_buildings tech tree
126+
energy: 2, // efficient_buildings tech tree
127+
fuel: 1, // efficient_buildings tech tree
128+
alloys: 5, // efficient_buildings tech tree
131129
},
132130
production: {
133131
},
@@ -142,10 +140,10 @@ export const BUILDINGS = {
142140
alloys: 75, // cheap_buildings tech tree
143141
},
144142
upkeep: {
145-
minerals: 5, // efficient_buildings tech tree
146-
energy: 8, // efficient_buildings tech tree
147-
fuel: 8, // efficient_buildings tech tree
148-
alloys: 5, // efficient_buildings tech tree
143+
minerals: 2, // efficient_buildings tech tree
144+
energy: 3, // efficient_buildings tech tree
145+
fuel: 5, // efficient_buildings tech tree
146+
alloys: 1, // efficient_buildings tech tree
149147
},
150148
production: {
151149
},

src/game-logic/districts.ts

+22-24
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export const DISTRICTS = {
99
minerals: 100, // city_structure tech tree
1010
},
1111
upkeep: {
12-
energy: 5, // efficient_city tech tree
13-
consumer_goods: 2, // efficient_city tech tree
12+
energy: 3, // efficient_city tech tree
13+
consumer_goods: 4, // efficient_city tech tree
1414
},
1515
production: {
1616
credits: 12, // city_production tech tree
@@ -34,7 +34,7 @@ export const DISTRICTS = {
3434
minerals: 2,
3535
},
3636
production: { // energetic_terraforming tech tree
37-
energy: 30,
37+
energy: 12,
3838
},
3939
},
4040
mining: {
@@ -52,11 +52,10 @@ export const DISTRICTS = {
5252
energy: 25, // nano_excavator_optimization tech tree
5353
},
5454
upkeep: { // autonomous_mining_protocols tech tree
55-
energy: 4,
56-
fuel: 2,
55+
energy: 2,
5756
},
5857
production: { //improved_extraction_tech_1 tech tree
59-
minerals: 24,
58+
minerals: 12,
6059
},
6160
},
6261
agriculture: {
@@ -71,10 +70,9 @@ export const DISTRICTS = {
7170
},
7271
upkeep: {
7372
energy: 2, // self_replenishment tech tree
74-
fuel: 3,
7573
},
7674
production: {
77-
food: 16, // superior_crops tech tree
75+
food: 12, // superior_crops tech tree
7876
},
7977
},
8078
// advanced resource districts. cost should be around 100, upkeep around 20, production around 10
@@ -86,13 +84,13 @@ export const DISTRICTS = {
8684
minerals: 100, // industry_structure tech tree
8785
},
8886
upkeep: {
89-
energy: 6, // efficient_industry tech tree
90-
minerals: 8, // efficient_industry tech tree
87+
energy: 3, // efficient_industry tech tree
88+
minerals: 4, // efficient_industry tech tree
9189
},
9290
production: {
93-
alloys: 5, // improved_industry tech tree
94-
consumer_goods: 5, // improved_industry tech tree
95-
fuel: 5, // improved_industry tech tree
91+
alloys: 4, // improved_industry tech tree
92+
consumer_goods: 8, // improved_industry tech tree
93+
fuel: 6, // improved_industry tech tree
9694
},
9795
},
9896
research_site: {
@@ -108,11 +106,11 @@ export const DISTRICTS = {
108106
minerals: 100, // effective_lab_building tech tree
109107
},
110108
upkeep: {
111-
energy: 15, // automated_research_archives tech tree
112-
consumer_goods: 5,
109+
energy: 3, // automated_research_archives tech tree
110+
consumer_goods: 3,
113111
},
114112
production: {
115-
research: 10, // research_accelerators tech tree
113+
research: 15, // research_accelerators tech tree
116114
},
117115
},
118116
ancient_foundry: {
@@ -128,11 +126,11 @@ export const DISTRICTS = {
128126
minerals: 100, // ancient_crafting_techniques tech tree
129127
},
130128
upkeep: {
131-
minerals: 10, // timeless_fabrication_methods tech tree
132-
energy: 5, // timeless_fabrication_methods tech tree
129+
minerals: 3, // timeless_fabrication_methods tech tree
130+
energy: 2, // timeless_fabrication_methods tech tree
133131
},
134132
production: {
135-
alloys: 10, // mythic_alloy_crafting tech tree
133+
alloys: 8, // mythic_alloy_crafting tech tree
136134
},
137135
},
138136
ancient_factory: {
@@ -148,11 +146,11 @@ export const DISTRICTS = {
148146
minerals: 100,
149147
},
150148
upkeep: {
151-
energy: 5,
152-
minerals: 10,
149+
energy: 3,
150+
minerals: 2,
153151
},
154152
production: {
155-
consumer_goods: 10,
153+
consumer_goods: 12,
156154
},
157155
},
158156
ancient_refinery: {
@@ -168,8 +166,8 @@ export const DISTRICTS = {
168166
minerals: 100, // traditional_refining_wisdom tech tree
169167
},
170168
upkeep: {
171-
minerals: 5, // ageless_refining_techniques tech tree
172-
energy: 10, // ageless_refining_techniques tech tree
169+
minerals: 3, // ageless_refining_techniques tech tree
170+
energy: 2, // ageless_refining_techniques tech tree
173171
},
174172
production: {
175173
fuel: 10, // ancient_alchemy tech tree

src/game-logic/ships.ts

+13-13
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export const SHIP_TYPES = {
2020
energy: 50,
2121
},
2222
upkeep: { // efficient_ships tech tree
23-
fuel: 2,
24-
energy: 0.4,
23+
fuel: 0.5,
24+
energy: 0.2,
2525
},
2626
},
2727

@@ -40,8 +40,8 @@ export const SHIP_TYPES = {
4040
energy: 75,
4141
},
4242
upkeep: { // efficient_ships tech tree
43-
fuel: 2,
44-
energy: 0.4,
43+
fuel: 0.5,
44+
energy: 0.2,
4545
},
4646
},
4747
/** =============================================================================================================== */
@@ -71,7 +71,7 @@ export const SHIP_TYPES = {
7171
energy: 50,
7272
},
7373
upkeep: { // efficient_ships tech tree
74-
fuel: 2,
74+
fuel: 1,
7575
energy: 0.4,
7676
},
7777
},
@@ -97,7 +97,7 @@ export const SHIP_TYPES = {
9797
energy: 50,
9898
},
9999
upkeep: { // efficient_ships tech tree
100-
fuel: 2.5,
100+
fuel: 1,
101101
energy: 0.5,
102102
},
103103
},
@@ -121,7 +121,7 @@ export const SHIP_TYPES = {
121121
energy: 50,
122122
},
123123
upkeep: { // efficient_ships tech tree
124-
fuel: 2.5,
124+
fuel: 2,
125125
energy: 0.5,
126126
},
127127
},
@@ -195,7 +195,7 @@ export const SHIP_TYPES = {
195195
energy: 125,
196196
},
197197
upkeep: { // efficient_ships tech tree
198-
fuel: 5,
198+
fuel: 4,
199199
energy: 1,
200200
},
201201
},
@@ -217,7 +217,7 @@ export const SHIP_TYPES = {
217217
energy: 150,
218218
},
219219
upkeep: { // efficient_ships tech tree
220-
fuel: 6.25,
220+
fuel: 5,
221221
energy: 1.25,
222222
},
223223
},
@@ -240,7 +240,7 @@ export const SHIP_TYPES = {
240240
energy: 200,
241241
},
242242
upkeep: { // efficient_ships tech tree
243-
fuel: 6.25,
243+
fuel: 5,
244244
energy: 1.25,
245245
},
246246
},
@@ -263,7 +263,7 @@ export const SHIP_TYPES = {
263263
energy: 250,
264264
},
265265
upkeep: { // efficient_ships tech tree
266-
fuel: 6.25,
266+
fuel: 5,
267267
energy: 1.25,
268268
},
269269
},
@@ -290,7 +290,7 @@ export const SHIP_TYPES = {
290290
energy: 250,
291291
},
292292
upkeep: { // efficient_ships tech tree
293-
fuel: 12.5,
293+
fuel: 10,
294294
energy: 2.5,
295295
},
296296
},
@@ -312,7 +312,7 @@ export const SHIP_TYPES = {
312312
energy: 400,
313313
},
314314
upkeep: { // efficient_ships tech tree
315-
fuel: 20,
315+
fuel: 15,
316316
energy: 4,
317317
},
318318
},

src/game-logic/technologies.ts

-8
Original file line numberDiff line numberDiff line change
@@ -421,10 +421,6 @@ export const TECHNOLOGIES: Record<string, Technology> = {
421421
variable: 'buildings.factory.upkeep.energy',
422422
multiplier: 0.85,
423423
},
424-
{
425-
variable: 'buildings.farm.upkeep.fuel',
426-
multiplier: 0.85,
427-
},
428424
],
429425
},
430426
efficient_buildings_2: { // reduced advanced building energy upkeep
@@ -449,10 +445,6 @@ export const TECHNOLOGIES: Record<string, Technology> = {
449445
variable: 'buildings.exchange.upkeep.energy',
450446
multiplier: 0.85,
451447
},
452-
{
453-
variable: 'buildings.mine.upkeep.fuel',
454-
multiplier: 0.85,
455-
},
456448
{
457449
variable: 'buildings.shipyard.upkeep.fuel',
458450
multiplier: 0.85,

0 commit comments

Comments
 (0)