Skip to content

Commit ea81fab

Browse files
authored
Time-related Technologies (#90)
* feat: add faster research * feat: add time multipliers for tagged technologies * feat: building build time technologies * chore: rename technologies * chore: rename building tech tree comments * feat: add district build time technologies * feat: add system upgrade time technologies * fix: incorrect requirement * feat: seperate upgrade_time techs, change decrease rate * fix: move power plant build time to tier 1 * fix: move factory upgrade time to tier 2 * fix: move research site build time to tier 3 * fix: move energy build time to tier 1 * feat: changed districts building time decrease rate * fix: changed fast district construction requirement * feat: changed building build time decrease rate * chore: uniform tech names * fix: remove precedes * feat: change tag * feat: change requirement * chore: make values uniform
1 parent 33f82b4 commit ea81fab

File tree

4 files changed

+203
-23
lines changed

4 files changed

+203
-23
lines changed

src/game-logic/buildings.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {Building} from './types';
33
export const BUILDINGS = {
44
exchange: {
55
id: 'exchange',
6-
build_time: 9,
6+
build_time: 9, // fast_building_construction tech tree
77
cost: {
88
minerals: 100, // cheap_buildings tech tree
99
},
@@ -18,7 +18,7 @@ export const BUILDINGS = {
1818
// basic resource buildings. cost should be around 75, upkeep around 5, production around 10
1919
power_plant: {
2020
id: 'power_plant',
21-
build_time: 6,
21+
build_time: 6, // fast_building_construction tech tree
2222
cost: { // cheap_buildings, improved_production, efficient_resources tech trees
2323
minerals: 75, // silicon solar collectors // cheap_buildings tech tree
2424
},
@@ -31,7 +31,7 @@ export const BUILDINGS = {
3131
},
3232
mine: { // cheap_buildings, efficient_buildings, improved_production tech trees
3333
id: 'mine',
34-
build_time: 6,
34+
build_time: 6, // fast_building_construction tech tree
3535
cost: {
3636
minerals: 50, // building the supporting structure // cheap_buildings tech tree
3737
energy: 25, // digging the mine // cheap_buildings tech tree
@@ -46,7 +46,7 @@ export const BUILDINGS = {
4646
},
4747
farm: { // cheap_buildings, efficient_buildings, improved_production tech trees
4848
id: 'farm',
49-
build_time: 6,
49+
build_time: 6, // fast_building_construction tech tree
5050
cost: {
5151
energy: 75, // tilling the soil // cheap_buildings tech tree
5252
},
@@ -61,7 +61,7 @@ export const BUILDINGS = {
6161
// advanced resource buildings. cost should be around 100, upkeep around 20, production around 10
6262
research_lab: { // cheap_buildings, efficient_buildings, improved_production tech trees
6363
id: 'research_lab',
64-
build_time: 9,
64+
build_time: 9, // fast_building_construction tech tree
6565
cost: {
6666
minerals: 100, // building the lab // cheap_buildings tech tree
6767
},
@@ -75,7 +75,7 @@ export const BUILDINGS = {
7575
},
7676
foundry: { // cheap_buildings, efficient_buildings, improved_production tech trees
7777
id: 'foundry',
78-
build_time: 9,
78+
build_time: 9, // fast_building_construction tech tree
7979
cost: {
8080
minerals: 100, // building the foundry // cheap_buildings tech tree
8181
},
@@ -89,7 +89,7 @@ export const BUILDINGS = {
8989
},
9090
factory: {
9191
id: 'factory',
92-
build_time: 9,
92+
build_time: 9, // fast_building_construction tech tree
9393
cost: {
9494
minerals: 100, // cheap_buildings tech tree
9595
},
@@ -103,7 +103,7 @@ export const BUILDINGS = {
103103
},
104104
refinery: { // cheap_buildings, efficient_buildings, improved_production tech trees
105105
id: 'refinery',
106-
build_time: 9,
106+
build_time: 9, // fast_building_construction tech tree
107107
cost: {
108108
minerals: 100, // building the refinery // cheap_buildings tech tree
109109
},
@@ -117,7 +117,7 @@ export const BUILDINGS = {
117117
},
118118
shipyard: {
119119
id: 'shipyard',
120-
build_time: 12,
120+
build_time: 12, // fast_building_construction tech tree
121121
cost: {
122122
minerals: 50, // cheap_buildings tech tree
123123
alloys: 75, // cheap_buildings tech tree
@@ -133,7 +133,7 @@ export const BUILDINGS = {
133133
},
134134
fortress: {
135135
id: 'fortress',
136-
build_time: 12,
136+
build_time: 12, // fast_building_construction tech tree
137137
cost: {
138138
minerals: 75, // cheap_buildings tech tree
139139
alloys: 75, // cheap_buildings tech tree

src/game-logic/districts.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const DISTRICTS = {
44
city: {
55
id: 'city',
66
chance: {},
7-
build_time: 9,
7+
build_time: 9, // fast_district_construction tech tree
88
cost: {
99
minerals: 100, // city_structure tech tree
1010
},
@@ -26,7 +26,7 @@ export const DISTRICTS = {
2626
ancient_military: 3, // timeless_warfare tech tree
2727
default: 2,
2828
},
29-
build_time: 6,
29+
build_time: 6, // fast_district_construction tech tree
3030
cost: {
3131
minerals: 75, // quantum_cost_reduction tech tree
3232
},
@@ -46,7 +46,7 @@ export const DISTRICTS = {
4646
ancient_military: 3, // timeless_warfare tech tree
4747
default: 2,
4848
},
49-
build_time: 6,
49+
build_time: 6, // fast_district_construction tech tree
5050
cost: {
5151
minerals: 50, // nano_excavator_optimization tech tree
5252
energy: 25, // nano_excavator_optimization tech tree
@@ -65,7 +65,7 @@ export const DISTRICTS = {
6565
agriculture: 5,
6666
default: 2,
6767
},
68-
build_time: 6,
68+
build_time: 6, // fast_district_construction tech tree
6969
cost: {
7070
energy: 75, // permaculture_ecosystem_engineering tech tree
7171
},
@@ -81,7 +81,7 @@ export const DISTRICTS = {
8181
industry: {
8282
id: 'industry',
8383
chance: {},
84-
build_time: 9,
84+
build_time: 9, // fast_district_construction tech tree
8585
cost: {
8686
minerals: 100, // industry_structure tech tree
8787
},
@@ -103,7 +103,7 @@ export const DISTRICTS = {
103103
ancient_industry: 2, // primordial_industrial_secrets tech tree
104104
default: 0,
105105
},
106-
build_time: 3,
106+
build_time: 3, // fast_district_construction tech tree
107107
cost: {
108108
minerals: 100, // effective_lab_building tech tree
109109
},
@@ -123,7 +123,7 @@ export const DISTRICTS = {
123123
ancient_technology: 2, // wisdom_reclamation tech tree
124124
default: 0,
125125
},
126-
build_time: 9,
126+
build_time: 9, // fast_district_construction tech tree
127127
cost: {
128128
minerals: 100, // ancient_crafting_techniques tech tree
129129
},
@@ -143,7 +143,7 @@ export const DISTRICTS = {
143143
ancient_military: 2,
144144
default: 0,
145145
},
146-
build_time: 9,
146+
build_time: 9, // fast_district_construction tech tree
147147
cost: {
148148
minerals: 100,
149149
},
@@ -163,7 +163,7 @@ export const DISTRICTS = {
163163
ancient_technology: 2, // wisdom_reclamation tech tree
164164
default: 0,
165165
},
166-
build_time: 9,
166+
build_time: 9, // fast_district_construction tech tree
167167
cost: {
168168
minerals: 100, // traditional_refining_wisdom tech tree
169169
},

src/game-logic/system-upgrade.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const SYSTEM_UPGRADES = {
1313
explored: {
1414
id: 'explored',
1515
next: 'colonized',
16-
upgrade_time: 3,
16+
upgrade_time: 3, // fast_system_upgrade tech tree
1717
pop_growth: 0,
1818
cost: {},
1919
upkeep: {},
@@ -22,7 +22,7 @@ export const SYSTEM_UPGRADES = {
2222
colonized: {
2323
id: 'colonized',
2424
next: 'upgraded',
25-
upgrade_time: 12,
25+
upgrade_time: 12, // fast_system_upgrade tech tree
2626
pop_growth: 0.05, // pop_growth_colonized tech tree
2727
cost: {
2828
minerals: 100, // cheap_claims tech tree
@@ -38,7 +38,7 @@ export const SYSTEM_UPGRADES = {
3838
upgraded: {
3939
id: 'upgraded',
4040
next: 'developed',
41-
upgrade_time: 9,
41+
upgrade_time: 9, // fast_system_upgrade tech tree
4242
pop_growth: 0.02, // pop_growth_upgraded tech tree
4343
cost: {
4444
minerals: 100, // cheap_claims tech tree
@@ -55,7 +55,7 @@ export const SYSTEM_UPGRADES = {
5555
developed: {
5656
id: 'developed',
5757
next: undefined,
58-
upgrade_time: 9,
58+
upgrade_time: 9, // fast_system_upgrade tech tree
5959
pop_growth: 0.01,
6060
cost: {
6161
alloys: 200, // cheap_claims tech tree

0 commit comments

Comments
 (0)