mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-21 13:18:56 +07:00
Railroads now provide 25% production bonus to connected cities
Added techs and builings up to middle of modern era
This commit is contained in:
@ -288,6 +288,15 @@
|
||||
unique:"FreeGreatArtistAppears",
|
||||
requiredTech:"Archaeology"
|
||||
},
|
||||
{
|
||||
name:"Public School",
|
||||
description: "+1 science per 2 population",
|
||||
science:3,
|
||||
requiredBuilding:"University",
|
||||
maintainance:3,
|
||||
unique:"SciencePer2Pop",
|
||||
requiredTech:"Scientific Theory"
|
||||
},
|
||||
{
|
||||
name:"Hospital",
|
||||
description: "",
|
||||
@ -305,6 +314,88 @@
|
||||
requiredResource:"Coal",
|
||||
requiredTech:"Steam Power"
|
||||
},
|
||||
{
|
||||
name:"Stock Exchange",
|
||||
description: "",
|
||||
gold:3,
|
||||
percentStatBonus:{gold:25},
|
||||
requiredBuilding:"Bank",
|
||||
requiredTech:"Electricity"
|
||||
},
|
||||
{
|
||||
name:"Cristo Redentor",
|
||||
description: "Culture cost of adopting new Policies reduced by 10% - todo",
|
||||
culture:5,
|
||||
isWonder:true,
|
||||
unique:"PolicyCostReduction",
|
||||
requiredTech:"Telegraph"
|
||||
},
|
||||
{
|
||||
name:"Broadcst Tower",
|
||||
description: "",
|
||||
culture:3,
|
||||
percentStatBonus:{culture:33},
|
||||
requiredBuilding:"Museum",
|
||||
maintainance:3,
|
||||
requiredTech:"Radio"
|
||||
},
|
||||
{
|
||||
name:"Eiffel Tower",
|
||||
description: "Provides 1 happiness per social policy - todo",
|
||||
culture:1,
|
||||
happiness:5
|
||||
isWonder:true,
|
||||
unique:"HappinessPerSocialPolicy",
|
||||
requiredTech:"Radio"
|
||||
},
|
||||
{
|
||||
name:"Medical Lab",
|
||||
description: "25% of food carried over after a new citizen is born - todo",
|
||||
requiredBuilding:"Hospital",
|
||||
maintainance:3,
|
||||
requiredTech:"Penicillin"
|
||||
},
|
||||
{
|
||||
name:"Research Lab",
|
||||
description: "",
|
||||
science:4,
|
||||
percentStatBonus:{science:50},
|
||||
requiredBuilding:"Public School",
|
||||
maintainance:3,
|
||||
requiredTech:"Plastics"
|
||||
},
|
||||
{
|
||||
name:"Hydro Plant",
|
||||
description: "Provides +1 production to tiles near rivers",
|
||||
maintainance:3,
|
||||
requiredResource:"Aluminum",
|
||||
requiredTech:"Plastics"
|
||||
},
|
||||
{
|
||||
name:"Stadium",
|
||||
description: "",
|
||||
happiness:4,
|
||||
requiredBuilding:"Theatre",
|
||||
maintainance:2,
|
||||
requiredTech:"Mass Media"
|
||||
},
|
||||
{
|
||||
name:"Eiffel Tower",
|
||||
description: "Provides 1 free social policy - todo",
|
||||
culture:1,
|
||||
percentStatBonus:{culture:50},
|
||||
isWonder:true,
|
||||
unique:"HappinessPerSocialPolicy",
|
||||
requiredTech:"Radio"
|
||||
},
|
||||
{
|
||||
name:"Stadium",
|
||||
description: "",
|
||||
happiness:4,
|
||||
requiredBuilding:"Theatre",
|
||||
maintainance:2,
|
||||
requiredTech:"Mass Media"
|
||||
},
|
||||
|
||||
|
||||
]
|
@ -344,7 +344,7 @@
|
||||
name:"Electricity",
|
||||
row:4,
|
||||
prerequisites:["Biology","Steam Power"],
|
||||
description:"Reveals Aluminium on map and allows construction of stock exchange, providing gold - todo"
|
||||
description:"Reveals Aluminium on map and allows construction of stock exchange, providing gold"
|
||||
},
|
||||
{
|
||||
name:"Replaceable Parts",
|
||||
@ -356,7 +356,88 @@
|
||||
name:"Railroad",
|
||||
row:8,
|
||||
prerequisites:["Steam Power","Dynamite"],
|
||||
description:"Allows construction of railroads, providing fast transport and a 25% production boost to cities - todo"
|
||||
description:"Allows construction of railroads, providing fast transport and a 25% production boost to cities"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
columnNumber: 11,
|
||||
techCost: 4505,
|
||||
buildingCost:500,
|
||||
wonderCost:1250,
|
||||
techs:[
|
||||
{
|
||||
name:"Refrigeration",
|
||||
row:2,
|
||||
prerequisites:["Electricity"],
|
||||
description:"Does nothing since we have no sea tiles - In theory, allows construction of offshore platforms and submarines"
|
||||
},
|
||||
{
|
||||
name:"Telegraph",
|
||||
row:4,
|
||||
prerequisites:["Electricity"],
|
||||
description:"Allows construction of the Crito Redentor, reducing cost of new policie"
|
||||
},
|
||||
{
|
||||
name:"Radio",
|
||||
row:5,
|
||||
prerequisites:["Electricity"],
|
||||
description:"Allows construction of broadcast towers and the Eiffel Tower, increasing culture"
|
||||
},
|
||||
{
|
||||
name:"Flight",
|
||||
row:6,
|
||||
prerequisites:["Replaceable Parts"],
|
||||
description:"Contributes only war-relatied things - on hold until AI is introduced - todo"
|
||||
},
|
||||
{
|
||||
name:"Combustion",
|
||||
row:8,
|
||||
prerequisites:["Replaceable Parts"],
|
||||
description:"Contributes only war-relatied things - on hold until AI is introduced - todo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
columnNumber: 12,
|
||||
techCost: 5605,
|
||||
buildingCost:500,
|
||||
wonderCost:1250,
|
||||
techs:[
|
||||
{
|
||||
name:"Penicillin",
|
||||
row:1,
|
||||
prerequisites:["Refrigeration"],
|
||||
description:"Enables construction of medical labs, alowing for greater city growth"
|
||||
},
|
||||
{
|
||||
name:"Plastics",
|
||||
row:2,
|
||||
prerequisites:["Refrigeration"],
|
||||
description:"Allows construction of Research Lab, increasing science"
|
||||
},
|
||||
{
|
||||
name:"Electronics",
|
||||
row:5,
|
||||
prerequisites:["Electricity"],
|
||||
description:"Contributes only war-relatied things - on hold until AI is introduced - todo" },
|
||||
{
|
||||
name:"Mass Media",
|
||||
row:6,
|
||||
prerequisites:["Radio"],
|
||||
description:"Allows construction of Stadiums and the Sydney Opera House, boosting happiness"
|
||||
},
|
||||
{
|
||||
name:"Radar",
|
||||
row:8,
|
||||
prerequisites:["Radio","Flight","Combustion"],
|
||||
description:"Contributes only war-relatied things - on hold until AI is introduced - todo"
|
||||
},
|
||||
{
|
||||
name:"Atomic Theory",
|
||||
row:8,
|
||||
prerequisites:["Combustion"],
|
||||
description:"Contributes only war-relatied things - on hold until AI is introduced - todo"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user