mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-08 23:08:35 +07:00
Initial commit
This commit is contained in:
38
android/assets/jsons/BasicHelp.json
Normal file
38
android/assets/jsons/BasicHelp.json
Normal file
@ -0,0 +1,38 @@
|
||||
[
|
||||
{
|
||||
"Name":"City",
|
||||
"Description": "Your cities are the basis of your empire. Each city has a certain amount of population and many tiles, and can work as many tiles as it has population.\nThe center tile of a city is always worked and does not require population.\nNew Cities can be constructed by building a Settler.\nEach city your empire has removes 3 Happiness from the emmpire, and each population - another 1 Happiness, so plan carefully!"
|
||||
},
|
||||
{
|
||||
"Name":"Tile",
|
||||
"Description": "Tiles are areas where your population can work the land.\nEvery tile has a base terrain, such as Grassland, Tundra etc, and some have terrain overlays, like Hill, Forest etc.\nDepending on the terrain, tiles can hold tile resources.\nEach tile can have one improvement at anny given time."
|
||||
},
|
||||
{
|
||||
"Name":"Population",
|
||||
"Description": "Represents the number of people in your city, who can work the city's tiles.\nPopulation grows by having enough surplus food, and will shrink if there isn't enough food to go around.\nEach Population consumes 2 Food per turn.\nWhen a new population is added, it will automatically work the tile producing the most food.\nYou can manually assign population to tiles by clicking the population icon on a tile - you'll have to remove a population from a tile to assign it somewhere else!"
|
||||
},
|
||||
{
|
||||
"Name":"Basic Resources",
|
||||
"Description": "There are 6 basic resources in Civ: Food, Production, Gold, Science, Happiness and Culture.\rProduction and Food are per individual city, while the other resources are empire-wide.\rBasic resources are produced by working city tiles and by buildings."
|
||||
},
|
||||
{
|
||||
"Name":"Food",
|
||||
"Description": "A basic resource. Each city can store surplus food.\nWhen the surplus food reaches a certain amount dependant on the population, it is consumed and the city gains another population.\nIf all the suplus food is depleted, and there is a food shortage, the city will lose a population."
|
||||
},
|
||||
{
|
||||
"Name":"Production",
|
||||
"Description": "A basic resource. Production is used to build buildings and units in the city.\r\nEach idle population (not working a tile) produces 1 production."
|
||||
},
|
||||
{
|
||||
"Name":"Science",
|
||||
"Description": "A basic resource. Represents the scientific advancement of your empire.\nEach Technology requires a certain amount of Science, which increases as the technologies become more advanced.\nEach Population produces 1 Science."
|
||||
},
|
||||
{
|
||||
"Name":"Gold",
|
||||
"Description": "A basic resource. Represents the wealth of your empire.\nMost buildings have mainainance costs, which require Gold per turn.\nEvery turn you are in a gold deficit, you will lose science points equal to your debt, which can halt your scientific advancement entirely!."
|
||||
},
|
||||
{
|
||||
"Name":"Happiness",
|
||||
"Description": "A basic resource.\nEach city decreases your empire's happiness by 3, and each population by 1.\nYou can increase your happiness by buildings, or by working Luxury resources.\nWhen in an unhappy state, your surplus food added is reduced to 1/4, dramatically slowing your city growth.\nWhen enough Happiness is accrued, your empire will enter a Golden Age!"
|
||||
}
|
||||
]
|
167
android/assets/jsons/Buildings.json
Normal file
167
android/assets/jsons/Buildings.json
Normal file
@ -0,0 +1,167 @@
|
||||
[
|
||||
|
||||
{
|
||||
"Name":"Worker",
|
||||
"Description": "Can build improvements on tiles",
|
||||
"Cost":60
|
||||
},
|
||||
{
|
||||
"Name":"Settler",
|
||||
"Description": "Founds a new city",
|
||||
"Cost":106
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"Name":"Palace",
|
||||
"Description": "Indicates that this city is the capital",
|
||||
"IsWonder":true,
|
||||
"Production":3,
|
||||
"Science":3,
|
||||
"Gold":3,
|
||||
"Culture":1,
|
||||
"Cost":1
|
||||
},
|
||||
{
|
||||
"Name":"Monument",
|
||||
"Description": "Produces culture, enabling border growth",
|
||||
"Culture":2,
|
||||
"Cost":40,
|
||||
"Maintainance":1
|
||||
},
|
||||
{
|
||||
"Name":"Granary",
|
||||
"Description": "Wheat, bananas and deer produce +1 food.",
|
||||
"Food":2,
|
||||
"ResourceBonusStats":{"Food":1},
|
||||
"Maintainance":1,
|
||||
"RequiredTech":"Pottery"
|
||||
},
|
||||
{
|
||||
"Name":"Library",
|
||||
"Description": "Adds 1 science for each 2 population in the city.",
|
||||
"Maintainance":1,
|
||||
"RequiredTech":"Writing"
|
||||
},
|
||||
{
|
||||
"Name":"Great Library",
|
||||
"Description": "Provides a free technology, and a library in the city it is built in",
|
||||
"Science":3,
|
||||
"Culture":1,
|
||||
"IsWonder":true,
|
||||
"ProvidesFreeBuilding": "Library",
|
||||
"FreeTechs":1,
|
||||
"RequiredTech":"Writing"
|
||||
},
|
||||
|
||||
{
|
||||
"Name":"Temple",
|
||||
"Description": "",
|
||||
"Culture":3,
|
||||
"RequiredBuilding":"Monument",
|
||||
"Maintainance":2,
|
||||
"RequiredTech":"Philosophy"
|
||||
},
|
||||
{
|
||||
"Name":"Oracle",
|
||||
"Description": "Provides a free social policy - HOW????",
|
||||
"Culture":3,
|
||||
"IsWonder":true,
|
||||
"RequiredTech":"Philosophy"
|
||||
},
|
||||
{
|
||||
"Name":"National College",
|
||||
"Description": "+50% science from this city",
|
||||
"Science":3,
|
||||
"Culture":1,
|
||||
"IsWonder":true,
|
||||
"RequiredBuildingInAllCities":"Library",
|
||||
"RequiredTech":"Philosophy"
|
||||
},
|
||||
{
|
||||
"Name":"Stable",
|
||||
"Description": "Cattle, sheep and horses produce +1 production.",
|
||||
"Maintainance":1,
|
||||
"ResourceRequired":true,
|
||||
"ResourceBonusStats":{"Production":1},
|
||||
"RequiredTech":"Horseback Riding"
|
||||
},
|
||||
{
|
||||
"Name":"Circus Maximus",
|
||||
"Description": "",
|
||||
"Happiness":5,
|
||||
"Culture":1,
|
||||
"IsWonder":true,
|
||||
"RequiredBuildingInAllCities":"Colloseum",
|
||||
"RequiredTech":"Philosophy"
|
||||
},
|
||||
{
|
||||
"Name":"Hanging Gardens",
|
||||
"Description": "",
|
||||
"Food":10,
|
||||
"Culture":1,
|
||||
"IsWonder":true,
|
||||
"RequiredTech":"Mathematics"
|
||||
},
|
||||
{
|
||||
"Name":"Colloseum",
|
||||
"Description": "",
|
||||
"Maintainance":1,
|
||||
"Happiness":2,
|
||||
"RequiredTech":"Construction"
|
||||
},
|
||||
{
|
||||
"Name":"Market",
|
||||
"Description": "",
|
||||
"Gold":2,
|
||||
"PercentStatBonus":{"Gold":25},
|
||||
"RequiredTech":"Currency"
|
||||
},
|
||||
{
|
||||
"Name":"Chichen Itza",
|
||||
"Description": "Length of golden ages increased +50%",
|
||||
"Gold":5,
|
||||
"Culture":1,
|
||||
"IsWonder":true,
|
||||
"RequiredTech":"Currency"
|
||||
},
|
||||
{
|
||||
"Name":"Mint",
|
||||
"Description": "",
|
||||
"Maintainance":0,
|
||||
"ResourceRequired":true,
|
||||
"ResourceBonusStats":{"Gold":2},
|
||||
"RequiredTech":"Currency"
|
||||
},
|
||||
{
|
||||
"Name":"Machu Pichu",
|
||||
"Description": "Gold from all trade routes +25%. Can only be built on cities with mountain in range of 2 tiles - this is a problem!",
|
||||
"Gold":5,
|
||||
"Culture":1,
|
||||
"IsWonder":true,
|
||||
"RequiredTech":"Currency"
|
||||
},
|
||||
{
|
||||
"Name":"Aqueduct",
|
||||
"Description": "40% of food is carried over after a new citizen is born - HOW?!?!?!",
|
||||
"Maintainance":1,
|
||||
"Food":2,
|
||||
"RequiredTech":"Engineering"
|
||||
},
|
||||
{
|
||||
"Name":"Workshop",
|
||||
"Description": "",
|
||||
"Maintainance":2,
|
||||
"Production":2,
|
||||
"PercentStatBonus":{"Production":15},
|
||||
"RequiredTech":"Metal Casting"
|
||||
},
|
||||
{
|
||||
"Name":"Forge",
|
||||
"Description": "Iron provides +1 production",
|
||||
"Maintainance":1,
|
||||
"ResourceRequired":true,
|
||||
"ResourceBonusStats":{"Production":1},
|
||||
"RequiredTech":"Metal Casting"
|
||||
}
|
||||
]
|
217
android/assets/jsons/Techs.json
Normal file
217
android/assets/jsons/Techs.json
Normal file
@ -0,0 +1,217 @@
|
||||
[
|
||||
{
|
||||
"ColumnNumber": 1,
|
||||
"TechCost": 35,
|
||||
"BuildingCost":60,
|
||||
"Techs":[
|
||||
{
|
||||
"Name":"Pottery",
|
||||
"Row":2,
|
||||
"Description":"Allows your cities to construct a granary, which provides food."
|
||||
},
|
||||
{
|
||||
"Name":"Animal Husbandry",
|
||||
"Row":5,
|
||||
"Description":"Reveals horses, and allows workers to build pastures, which improve various animal resources."
|
||||
},
|
||||
{
|
||||
"Name":"Mining",
|
||||
"Row":9,
|
||||
"Description":"Allows workers to build mines, which grant access to several strategic and luxury resources and increases production. Also allows workers to clear forests."
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"ColumnNumber": 2,
|
||||
"TechCost": 55,
|
||||
"BuildingCost":75,
|
||||
"WonderCost":185,
|
||||
"Techs":[
|
||||
{
|
||||
"Name":"Sailing",
|
||||
"Row":1,
|
||||
"Prerequisites":["Pottery"],
|
||||
"Description":"Allows access to sea resources by building work boats"
|
||||
},
|
||||
{
|
||||
"Name":"Calendar",
|
||||
"Row":2,
|
||||
"Prerequisites":["Pottery"],
|
||||
"Description":"Allows your workers to build Plantations, which grant access to several luxury resources"
|
||||
},
|
||||
{
|
||||
"Name":"Writing",
|
||||
"Row":3,
|
||||
"Prerequisites":["Pottery"],
|
||||
"Description":"Allows your cities to construct libraries, which increases science produced. Also enables construction of the Great Library wonder."
|
||||
},
|
||||
{
|
||||
"Name":"Trapping",
|
||||
"Row":5,
|
||||
"Prerequisites":["Animal Husbandry"],
|
||||
"Description":"Allows your workers to build Camps and Trading Posts, which increase gold produced and grant access to several luxury resources"
|
||||
},
|
||||
{
|
||||
"Name":"The Wheel",
|
||||
"Row":6,
|
||||
"Prerequisites":["Animal Husbandry"],
|
||||
"Description":"Allows construction or roads to your capilat city, providing gold from trade"
|
||||
},
|
||||
{
|
||||
"Name":"Masonry",
|
||||
"Row":9,
|
||||
"Prerequisites":["Mining"],
|
||||
"Description":"Allows workers to build quarries, granting access to stone and marble resources, and clear marshes. Also enables construction of the Pyramids wonder."
|
||||
},
|
||||
{
|
||||
"Name":"Bronze Working",
|
||||
"Row":10,
|
||||
"Prerequisites":["Mining"],
|
||||
"Description":"Allows workers to remove jungles"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"ColumnNumber": 3,
|
||||
"TechCost": 115,
|
||||
"BuildingCost":100,
|
||||
"WonderCost":250,
|
||||
"Techs":[
|
||||
{
|
||||
"Name":"Optics",
|
||||
"Cost":95,
|
||||
"Row":1,
|
||||
"Prerequisites":["Sailing"],
|
||||
"Description":"Allows construction of lighthouses, providing more food for sea tiles"
|
||||
},
|
||||
{
|
||||
"Name":"Philosophy",
|
||||
"Row":3,
|
||||
"Prerequisites":["Writing"],
|
||||
"Description":"Allows construction of temples, which generate culture, and the Oracle and National College wonders"
|
||||
},
|
||||
{
|
||||
"Name":"Horseback Riding",
|
||||
"Row":5,
|
||||
"Prerequisites":["The Wheel"],
|
||||
"Description":"Allows construction of stables, which increase production on cattle, sheep and horses"
|
||||
},
|
||||
{
|
||||
"Name":"Mathematics",
|
||||
"Row":7,
|
||||
"Prerequisites":["The Wheel"],
|
||||
"Description": "Serves as a stepping stone to other technologies. Also enables construction of the Hanging Gardens wonder."
|
||||
},
|
||||
{
|
||||
"Name":"Construction",
|
||||
"Row":9,
|
||||
"Prerequisites":["Masonry"],
|
||||
"Description":"Allows construction of colloseums, which generate happiness, and building lumber mills on forests, providing production"
|
||||
},
|
||||
{
|
||||
"Name":"Iron Working",
|
||||
"Row":10,
|
||||
"Prerequisites":["Bronze Working"],
|
||||
"Description":"Reveals Iron on map"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"ColumnNumber": 4,
|
||||
"TechCost": 305,
|
||||
"BuildingCost":120,
|
||||
"WonderCost":300,
|
||||
"Techs":[
|
||||
{
|
||||
"Name":"Theology",
|
||||
"Row":2,
|
||||
"Prerequisites":["Calendar","Philosophy"],
|
||||
"Description":"???"
|
||||
},
|
||||
{
|
||||
"Name":"Civil Service",
|
||||
"Row":4,
|
||||
"Prerequisites":["Trapping","Philosophy"],
|
||||
"Description":"Enables the Chichen Itza wonder, which increases the length of golden ages"
|
||||
},
|
||||
{
|
||||
"Name":"Currency",
|
||||
"Row":7,
|
||||
"Prerequisites":["Mathematics"],
|
||||
"Description":"Enables construction of Markets and Mints, which increase gold. Also enables the Machu Pichu wonder."
|
||||
},
|
||||
{
|
||||
"Name":"Engineering",
|
||||
"Row":8,
|
||||
"Prerequisites":["Mathematics","Construction"],
|
||||
"Description":"Enables construction of aqueducts, which speed up city growth"
|
||||
},
|
||||
{
|
||||
"Name":"Metal Casting",
|
||||
"Row":10,
|
||||
"Prerequisites":["Construction","Iron Working"],
|
||||
"Description":"Enables constrution of Forges and Workshops, increasing production"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"ColumnNumber": 5,
|
||||
"TechCost": 535,
|
||||
"BuildingCost":160,
|
||||
"WonderCost":400,
|
||||
"Techs":[
|
||||
{
|
||||
"Name":"Compass",
|
||||
"Row":1,
|
||||
"Cost":415,
|
||||
"Prerequisites":["Optics"],
|
||||
"Description":"???"
|
||||
},
|
||||
{
|
||||
"Name":"Education",
|
||||
"Row":3,
|
||||
"Prerequisites":["Theology","Civil Service"],
|
||||
"Description":"???"
|
||||
},
|
||||
{
|
||||
"Name":"Chivalry",
|
||||
"Row":5,
|
||||
"Prerequisites":["Horseback Riding","Civil Service","Currency"],
|
||||
"Description":"???"
|
||||
},
|
||||
{
|
||||
"Name":"Machinery",
|
||||
"Row":8,
|
||||
"Prerequisites":["Engineering"],
|
||||
"Description":"???"
|
||||
},
|
||||
{
|
||||
"Name":"Physics",
|
||||
"Row":9,
|
||||
"Prerequisites":["Engineering","Metal Casting"],
|
||||
"Description":"???"
|
||||
},
|
||||
{
|
||||
"Name":"Steel",
|
||||
"Row":10,
|
||||
"Prerequisites":["Metal Casting"],
|
||||
"Description":"???"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"ColumnNumber": 6,
|
||||
"TechCost": 1265,
|
||||
"BuildingCost":250,
|
||||
"WonderCost":625,
|
||||
"Techs":[
|
||||
{
|
||||
"Name":"Economics",
|
||||
"Row":1,
|
||||
"Prerequisites":["Chivalry"],
|
||||
"Description":"This is a lie, change!!!"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
82
android/assets/jsons/Terrains.json
Normal file
82
android/assets/jsons/Terrains.json
Normal file
@ -0,0 +1,82 @@
|
||||
[
|
||||
{
|
||||
"Name":"Grassland",
|
||||
"Type":"BaseTerrain",
|
||||
"Food":2,
|
||||
"RGB":"0,255,0"
|
||||
},
|
||||
{
|
||||
"Name":"Plains",
|
||||
"Type":"BaseTerrain",
|
||||
"Food":1,
|
||||
"Production":1,
|
||||
"RGB":"240,180,135"
|
||||
},
|
||||
{
|
||||
"Name":"Tundra",
|
||||
"Type":"BaseTerrain",
|
||||
"Food":1,
|
||||
"RGB":"130,137,121"
|
||||
},
|
||||
{
|
||||
"Name":"Desert",
|
||||
"Type":"BaseTerrain",
|
||||
"RGB":"237,201,175"
|
||||
},
|
||||
{
|
||||
"Name":"Lakes",
|
||||
"Type":"BaseTerrain",
|
||||
"Food":1,
|
||||
"Gold":1,
|
||||
"RGB":"104,120,201",
|
||||
"CanHaveOverlay":false
|
||||
},
|
||||
{
|
||||
"Name":"Hill",
|
||||
"Type":"BaseTerrain",
|
||||
"Production":2,
|
||||
"RGB":"116,88,62"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"Name":"Forest",
|
||||
"Type":"TerrainFeature",
|
||||
"Production":1,
|
||||
"Food":1,
|
||||
"OverrideStats":true,
|
||||
"Unbuildable":true,
|
||||
"OccursOn":["Tundra","Plains","Grassland"],
|
||||
"RemovalTech": "Mining"
|
||||
},
|
||||
{
|
||||
"Name":"Jungle",
|
||||
"Type":"TerrainFeature",
|
||||
"Food":2,
|
||||
"OverrideStats":true,
|
||||
"Unbuildable":true,
|
||||
"OccursOn":["Plains","Grassland"],
|
||||
"RemovalTech": "Bronze Working"
|
||||
},
|
||||
{
|
||||
"Name":"Marsh",
|
||||
"Type":"TerrainFeature",
|
||||
"Food":-1,
|
||||
"Unbuildable":true,
|
||||
"OccursOn":["Grassland"],
|
||||
"RemovalTech": "Masonry"
|
||||
},
|
||||
{
|
||||
"Name":"Oasis",
|
||||
"Type":"TerrainFeature",
|
||||
"Food":3,
|
||||
"Unbuildable":true,
|
||||
"OccursOn":["Desert"]
|
||||
},
|
||||
{
|
||||
"Name":"Flood plains",
|
||||
"Type":"TerrainFeature",
|
||||
"Food":2,
|
||||
"OccursOn":["Desert"]
|
||||
}
|
||||
]
|
71
android/assets/jsons/TileImprovements.json
Normal file
71
android/assets/jsons/TileImprovements.json
Normal file
@ -0,0 +1,71 @@
|
||||
[
|
||||
{
|
||||
"Name":"Farm",
|
||||
"TerrainsCanBeBuiltOn":["Plains","Grassland","Desert","Food plains"],
|
||||
"Food":1,
|
||||
"TurnsToBuild":6,
|
||||
"ImprovingTech":"Fertilizer",
|
||||
"ImprovingTechStats":{"Food":1}
|
||||
},
|
||||
{
|
||||
"Name":"Lumber mill",
|
||||
"TerrainsCanBeBuiltOn":["Forest"],
|
||||
"Production":1,
|
||||
"TurnsToBuild":6,
|
||||
"TechRequired":"Construction",
|
||||
"ImprovingTech":"Scientific Theory",
|
||||
"ImprovingTechStats":{"Production":1}
|
||||
},
|
||||
{
|
||||
"Name":"Mine",
|
||||
"TerrainsCanBeBuiltOn":["Hill"],
|
||||
"Production":1,
|
||||
"TurnsToBuild":6,
|
||||
"TechRequired":"Mining",
|
||||
"ImprovingTech":"Chemistry",
|
||||
"ImprovingTechStats":{"Production":1}
|
||||
},
|
||||
{
|
||||
"Name":"Trading post",
|
||||
"TerrainsCanBeBuiltOn":["Plains","Grassland","Desert","Hill","Tundra","Forest","Jungle","Food plains"],
|
||||
"Gold":1,
|
||||
"TurnsToBuild":6,
|
||||
"TechRequired":"Trapping",
|
||||
"ImprovingTech":"Economics",
|
||||
"ImprovingTechStats": {"Gold":1}
|
||||
},
|
||||
{
|
||||
"Name":"Camp",
|
||||
"TurnsToBuild":6,
|
||||
"TechRequired":"Trapping",
|
||||
"ImprovingTech":"Economics",
|
||||
"ImprovingTechStats":{"Gold":1}
|
||||
},
|
||||
{
|
||||
"Name":"Oil well",
|
||||
"Production":3,
|
||||
"TurnsToBuild":6
|
||||
},
|
||||
{
|
||||
"Name":"Pasture",
|
||||
"TurnsToBuild":6,
|
||||
"TechRequired":"Animal Husbandry",
|
||||
"ImprovingTech":"Fertilizer",
|
||||
"ImprovingTechStats":{"Food":1}
|
||||
},
|
||||
{
|
||||
"Name":"Plantation",
|
||||
"TurnsToBuild":6,
|
||||
"Gold":1,
|
||||
"TechRequired":"Calendar",
|
||||
"ImprovingTech":"Fertilizer",
|
||||
"ImprovingTechStats":{"Food":1}
|
||||
},
|
||||
{
|
||||
"Name":"Quarry",
|
||||
"TurnsToBuild":6,
|
||||
"TechRequired":"Masonry",
|
||||
"ImprovingTech":"Chemistry",
|
||||
"ImprovingTechStats":{"Production":1}
|
||||
}
|
||||
]
|
157
android/assets/jsons/TileResources.json
Normal file
157
android/assets/jsons/TileResources.json
Normal file
@ -0,0 +1,157 @@
|
||||
[
|
||||
{
|
||||
"Name":"Cattle",
|
||||
"ResourceType":"Bonus",
|
||||
"TerrainsCanBeFoundOn":["Grassland"],
|
||||
"Food":1,
|
||||
"Improvement":"Pasture",
|
||||
"ImprovementStats":{"Production":1},
|
||||
"Building":"Stable"
|
||||
},
|
||||
{
|
||||
"Name":"Sheep",
|
||||
"ResourceType":"Bonus",
|
||||
"TerrainsCanBeFoundOn":["Plains","Hill"],
|
||||
"Food":1,
|
||||
"Improvement":"Pasture",
|
||||
"ImprovementStats":{"Food":1},
|
||||
"Building":"Stable"
|
||||
},
|
||||
{
|
||||
"Name":"Deer",
|
||||
"ResourceType":"Bonus",
|
||||
"TerrainsCanBeFoundOn":["Forest","Tundra"],
|
||||
"Food":1,
|
||||
"Improvement":"Camp",
|
||||
"ImprovementStats":{"Production":1},
|
||||
"Building":"Granary"
|
||||
},
|
||||
{
|
||||
"Name":"Bananas",
|
||||
"ResourceType":"Bonus",
|
||||
"TerrainsCanBeFoundOn":["Jungle"],
|
||||
"Food":1,
|
||||
"Improvement":"Plantation",
|
||||
"ImprovementStats":{"Food":2,"Production":-1},
|
||||
"Building":"Granary"
|
||||
},
|
||||
{
|
||||
"Name":"Wheat",
|
||||
"ResourceType":"Bonus",
|
||||
"TerrainsCanBeFoundOn":["Plains","Flood plains","Desert"],
|
||||
"Food":1,
|
||||
"Improvement":"Farm",
|
||||
"ImprovementStats":{"Food":1},
|
||||
"Building":"Granary"
|
||||
},
|
||||
{
|
||||
"Name":"Stone",
|
||||
"ResourceType":"Bonus",
|
||||
"TerrainsCanBeFoundOn":["Plains","Desert"],
|
||||
"Production":1,
|
||||
"Improvement":"Quarry",
|
||||
"ImprovementStats":{"Production":1},
|
||||
"Building":"Stone Works"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"Name":"Horses",
|
||||
"ResourceType":"Strategic",
|
||||
"RevealedBy":"Animal Husbandry",
|
||||
"TerrainsCanBeFoundOn":["Plains","Desert"],
|
||||
"Production":1,
|
||||
"Improvement":"Pasture",
|
||||
"ImprovementStats":{"Production":1},
|
||||
"Building":"Stable"
|
||||
},
|
||||
{
|
||||
"Name":"Iron",
|
||||
"ResourceType":"Strategic",
|
||||
"RevealedBy":"Iron Working",
|
||||
"TerrainsCanBeFoundOn":["Grassland","Plains","Desert","Tundra","Snow","Hill"],
|
||||
"Production":1,
|
||||
"Improvement":"Mine",
|
||||
"ImprovementStats":{"Production":1},
|
||||
"Building":"Forge"
|
||||
},
|
||||
{
|
||||
"Name":"Coal",
|
||||
"ResourceType":"Strategic",
|
||||
"RevealedBy":"Industrialization",
|
||||
"TerrainsCanBeFoundOn":["Grassland","Plains","Hill"],
|
||||
"Production":1,
|
||||
"Improvement":"Mine",
|
||||
"ImprovementStats":{"Production":2}
|
||||
},
|
||||
{
|
||||
"Name":"Oil",
|
||||
"ResourceType":"Strategic",
|
||||
"RevealedBy":"Biology",
|
||||
"TerrainsCanBeFoundOn":["Desert","Coast","Tundra","Snow","Marsh"],
|
||||
"Production":1,
|
||||
"Improvement":"Oil well",
|
||||
"ImprovementStats":{"Production":3}
|
||||
},
|
||||
{
|
||||
"Name":"Aluminum",
|
||||
"ResourceType":"Strategic",
|
||||
"RevealedBy":"Electricity",
|
||||
"TerrainsCanBeFoundOn":["Plains","Desert","Tundra","Hill"],
|
||||
"Production":1,
|
||||
"Improvement":"Mine",
|
||||
"ImprovementStats":{"Production":2}
|
||||
},
|
||||
{
|
||||
"Name":"Uranium",
|
||||
"ResourceType":"Strategic",
|
||||
"RevealedBy":"Atomic Theory",
|
||||
"TerrainsCanBeFoundOn":["Plains","Desert","Tundra","Hill","Snow"],
|
||||
"Production":1,
|
||||
"Improvement":"Mine",
|
||||
"ImprovementStats":{"Production":2}
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"Name":"Furs",
|
||||
"ResourceType":"Luxury",
|
||||
"TerrainsCanBeFoundOn":["Forest","Tundra"],
|
||||
"Gold":2,
|
||||
"Improvement":"Camp",
|
||||
"ImprovementStats":{"Gold":1}
|
||||
},
|
||||
{
|
||||
"Name":"Cotton",
|
||||
"ResourceType":"Luxury",
|
||||
"TerrainsCanBeFoundOn":["Grassland","Plains","Desert"],
|
||||
"Gold":2,
|
||||
"Improvement":"Plantation",
|
||||
"ImprovementStats":{"Gold":1}
|
||||
},
|
||||
{
|
||||
"Name":"Spices",
|
||||
"ResourceType":"Luxury",
|
||||
"TerrainsCanBeFoundOn":["Jungle","Forest"],
|
||||
"Gold":2,
|
||||
"Improvement":"Plantation",
|
||||
"ImprovementStats":{"Gold":1}
|
||||
},
|
||||
{
|
||||
"Name":"Sugar",
|
||||
"ResourceType":"Luxury",
|
||||
"TerrainsCanBeFoundOn":["Plains","Flood plains","Grassland","Marsh"],
|
||||
"Gold":2,
|
||||
"Improvement":"Plantation",
|
||||
"ImprovementStats":{"Gold":1}
|
||||
},
|
||||
{
|
||||
"Name":"Marble",
|
||||
"ResourceType":"Luxury",
|
||||
"TerrainsCanBeFoundOn":["Desert","Plains","Tundra","Hill","Grassland"],
|
||||
"Gold":2,
|
||||
"Improvement":"Quarry",
|
||||
"ImprovementStats":{"Gold":1,"Production":1},
|
||||
"Building":"Stone Works"
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user