mirror of
https://github.com/yairm210/Unciv.git
synced 2025-09-27 22:06:05 -04:00
Tech cost increases with more city. (#1054)
This commit is contained in:
commit
bdb049a29a
@ -44,6 +44,7 @@ class TechManager {
|
||||
var techCost = GameBasics.Technologies[techName]!!.cost.toFloat()
|
||||
techCost *= civInfo.getDifficulty().researchCostModifier
|
||||
techCost *= civInfo.gameInfo.gameParameters.gameSpeed.getModifier()
|
||||
techCost *= (1 + 0.02 * (civInfo.cities.size -1 )).toFloat()
|
||||
return techCost.toInt()
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user