Skip to content

Commit 14e18f9

Browse files
New Buildings for V4 (#87)
* feat: new buildings * feat: modified techs to reduce cost and upkeep of new buildings * fix: Adjust some values --------- Co-authored-by: Adrian Kunz <a.kunz@uni-kassel.de>
1 parent 0810aac commit 14e18f9

File tree

2 files changed

+89
-4
lines changed

2 files changed

+89
-4
lines changed

src/game-logic/buildings.ts

+30
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,36 @@ export const BUILDINGS = {
107107
fuel: 10, // fuel_production tech tree
108108
},
109109
},
110+
shipyard: {
111+
id: 'shipyard',
112+
cost: {
113+
minerals: 50, // cheap_buildings tech tree
114+
alloys: 75, // cheap_buildings tech tree
115+
},
116+
upkeep: {
117+
minerals: 10, // efficient_buildings tech tree
118+
energy: 5, // efficient_buildings tech tree
119+
fuel: 5, // efficient_buildings tech tree
120+
alloys: 10, // efficient_buildings tech tree
121+
},
122+
production: {
123+
},
124+
},
125+
fortress: {
126+
id: 'fortress',
127+
cost: {
128+
minerals: 75, // cheap_buildings tech tree
129+
alloys: 75, // cheap_buildings tech tree
130+
},
131+
upkeep: {
132+
minerals: 5, // efficient_buildings tech tree
133+
energy: 8, // efficient_buildings tech tree
134+
fuel: 8, // efficient_buildings tech tree
135+
alloys: 5, // efficient_buildings tech tree
136+
},
137+
production: {
138+
},
139+
},
110140
} as const satisfies Record<string, Building>;
111141
export type BuildingName = keyof typeof BUILDINGS;
112142
export const BUILDING_NAMES = Object.keys(BUILDINGS) as BuildingName[];

src/game-logic/technologies.ts

+59-4
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,30 @@ export const TECHNOLOGIES: Record<string, Technology> = {
319319
},
320320
],
321321
},
322+
cheap_buildings_3: { // reduced advanced building costs
323+
id: 'cheap_buildings_3',
324+
tags: ['engineering', 'construction'],
325+
cost: 4,
326+
requires: ['cheap_buildings_2'],
327+
effects: [
328+
{
329+
variable: 'buildings.shipyard.cost.alloys',
330+
multiplier: 0.85,
331+
},
332+
{
333+
variable: 'buildings.shipyard.cost.minerals',
334+
multiplier: 0.85,
335+
},
336+
{
337+
variable: 'buildings.fortress.cost.alloys',
338+
multiplier: 0.85,
339+
},
340+
{
341+
variable: 'buildings.fortress.cost.minerals',
342+
multiplier: 0.85,
343+
},
344+
],
345+
},
322346

323347
/** buildings: reduce energy upkeep */
324348
efficient_buildings_1: { // reduced basic building energy upkeep
@@ -340,6 +364,10 @@ export const TECHNOLOGIES: Record<string, Technology> = {
340364
variable: 'buildings.factory.upkeep.energy',
341365
multiplier: 0.85,
342366
},
367+
{
368+
variable: 'buildings.farm.upkeep.fuel',
369+
multiplier: 0.85,
370+
},
343371
],
344372
},
345373
efficient_buildings_2: { // reduced advanced building energy upkeep
@@ -364,6 +392,18 @@ export const TECHNOLOGIES: Record<string, Technology> = {
364392
variable: 'buildings.exchange.upkeep.energy',
365393
multiplier: 0.85,
366394
},
395+
{
396+
variable: 'buildings.mine.upkeep.fuel',
397+
multiplier: 0.85,
398+
},
399+
{
400+
variable: 'buildings.shipyard.upkeep.fuel',
401+
multiplier: 0.85,
402+
},
403+
{
404+
variable: 'buildings.fortress.upkeep.fuel',
405+
multiplier: 0.85,
406+
},
367407
],
368408
},
369409
efficient_buildings_3: {
@@ -377,19 +417,34 @@ export const TECHNOLOGIES: Record<string, Technology> = {
377417
multiplier: 0.85,
378418
},
379419
{
380-
variable: 'buildings.mine.upkeep.fuel',
420+
variable: 'buildings.research_lab.upkeep.consumer_goods',
381421
multiplier: 0.85,
382422
},
383423
{
384-
variable: 'buildings.farm.upkeep.fuel',
424+
variable: 'buildings.factory.upkeep.minerals',
385425
multiplier: 0.85,
386426
},
387427
{
388-
variable: 'buildings.research_lab.upkeep.consumer_goods',
428+
variable: 'buildings.shipyard.upkeep.alloys',
389429
multiplier: 0.85,
390430
},
391431
{
392-
variable: 'buildings.factory.upkeep.minerals',
432+
variable: 'buildings.shipyard.upkeep.energy',
433+
multiplier: 0.85,
434+
},{
435+
variable: 'buildings.shipyard.upkeep.minerals',
436+
multiplier: 0.85,
437+
},
438+
{
439+
variable: 'buildings.fortress.upkeep.alloys',
440+
multiplier: 0.85,
441+
},
442+
{
443+
variable: 'buildings.fortress.upkeep.energy',
444+
multiplier: 0.85,
445+
},
446+
{
447+
variable: 'buildings.fortress.upkeep.minerals',
393448
multiplier: 0.85,
394449
},
395450
],

0 commit comments

Comments
 (0)