Skip to content

Commit 0ce27b6

Browse files
committed
feat: Use technology difficulty factor as 100
1 parent 80ac8ba commit 0ce27b6

File tree

3 files changed

+62
-61
lines changed

3 files changed

+62
-61
lines changed

src/empire/empire.service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ export class EmpireService extends MongooseRepository<Empire> {
143143

144144
async aggregateTechCost(empire: Empire, technology: Technology): Promise<AggregateResult> {
145145
const variables: Partial<Record<Variable, number>> = {
146+
'empire.technologies.difficulty': EMPIRE_VARIABLES.technologies.difficulty,
146147
'empire.technologies.cost_multiplier': EMPIRE_VARIABLES.technologies.cost_multiplier,
147148
};
148149
for (const tag of technology.tags) {

src/game-logic/empire-variables.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const EMPIRE_VARIABLES = {
1111
},
1212
},
1313
technologies: {
14-
difficulty: 1, // global variable to control tech tree difficulty
14+
difficulty: 100, // global variable to control tech tree difficulty
1515
cost_multiplier: 0.95, // cost reduction for previously unlocked techs
1616
},
1717
} as const;

0 commit comments

Comments
 (0)