2017-11-21 22:09:35 +00:00
|
|
|
[
|
2017-12-21 13:31:01 +00:00
|
|
|
// Base terrains
|
2018-09-11 20:07:12 +00:00
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Ocean",
|
|
|
|
"type": "Water",
|
|
|
|
"food": 1,
|
|
|
|
"gold": 1,
|
|
|
|
"movementCost": 1,
|
|
|
|
"RGB": [100,100,255]
|
2018-09-11 20:07:12 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Coast",
|
|
|
|
"type": "Water",
|
|
|
|
"food": 1,
|
|
|
|
"movementCost": 1,
|
|
|
|
"RGB": [150,150,255]
|
2018-09-11 20:07:12 +00:00
|
|
|
},
|
2017-11-21 22:09:35 +00:00
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Grassland",
|
|
|
|
"type": "Land",
|
|
|
|
"food": 2,
|
|
|
|
"movementCost": 1,
|
|
|
|
"RGB": [109,139,53]
|
2017-11-21 22:09:35 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Plains",
|
|
|
|
"type": "Land",
|
|
|
|
"food": 1,
|
|
|
|
"production": 1,
|
|
|
|
"movementCost": 1,
|
|
|
|
"RGB": [200,208,161]
|
2017-11-21 22:09:35 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Tundra",
|
|
|
|
"type": "Land",
|
|
|
|
"food": 1,
|
|
|
|
"movementCost": 1,
|
|
|
|
"defenceBonus": -0.1,
|
|
|
|
"RGB": [125,122,113]
|
2017-11-21 22:09:35 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Desert",
|
|
|
|
"type": "Land",
|
|
|
|
"movementCost": 1,
|
|
|
|
"defenceBonus": -0.1,
|
|
|
|
"RGB": [ 255, 255, 102]
|
2017-11-21 22:09:35 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Lakes",
|
|
|
|
"type": "Water",
|
|
|
|
"food": 2,
|
|
|
|
"gold": 1,
|
|
|
|
"RGB": [ 200, 200, 255],
|
|
|
|
"canHaveOverlay": false
|
2017-11-21 22:09:35 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Hill",
|
|
|
|
"type": "Land",
|
|
|
|
"production": 2,
|
|
|
|
"movementCost": 2,
|
|
|
|
"defenceBonus": 0.25,
|
|
|
|
"RGB": [74,81,40],
|
|
|
|
"rough": true
|
2017-11-21 22:09:35 +00:00
|
|
|
},
|
2018-11-28 21:05:14 +00:00
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Mountain",
|
|
|
|
"type": "Land",
|
|
|
|
"impassable": true,
|
|
|
|
"RGB": [89, 45, 0]
|
2018-11-28 21:05:14 +00:00
|
|
|
},
|
2019-03-06 14:45:51 +00:00
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Snow",
|
|
|
|
"type": "Land",
|
|
|
|
"movementCost": 1,
|
|
|
|
"defenceBonus": -0.1,
|
|
|
|
"RGB": [153, 255, 255]
|
2019-03-06 14:45:51 +00:00
|
|
|
},
|
2017-11-21 22:09:35 +00:00
|
|
|
|
2017-12-21 13:31:01 +00:00
|
|
|
// Terrain features
|
2017-11-21 22:09:35 +00:00
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Forest",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"production": 1,
|
|
|
|
"food": 1,
|
|
|
|
"movementCost": 2,
|
|
|
|
"overrideStats": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"defenceBonus": 0.25,
|
|
|
|
"occursOn": ["Tundra","Plains","Grassland","Hill"],
|
|
|
|
"rough": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Jungle",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"food": 2,
|
|
|
|
"movementCost": 2,
|
|
|
|
"overrideStats": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"defenceBonus": 0.25,
|
|
|
|
"occursOn": ["Plains","Grassland"],
|
|
|
|
"rough": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Marsh",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"food": -1,
|
|
|
|
"movementCost": 3,
|
|
|
|
"unbuildable": true,
|
|
|
|
"defenceBonus": -0.1,
|
|
|
|
"occursOn": ["Grassland"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Fallout",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"food": -3,
|
|
|
|
"production": -3,
|
|
|
|
"gold": -3,
|
|
|
|
"movementCost": 2,
|
|
|
|
"unbuildable": true,
|
|
|
|
"defenceBonus": -0.15
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Oasis",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"food": 3,
|
|
|
|
"gold": 1,
|
|
|
|
"movementCost": 1,
|
|
|
|
"unbuildable": true,
|
|
|
|
"defenceBonus": -0.1,
|
|
|
|
"occursOn": ["Desert"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Flood plains",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"food": 2,
|
|
|
|
"movementCost": 1,
|
|
|
|
"defenceBonus": -0.1,
|
|
|
|
"occursOn": ["Desert"]
|
2019-12-16 18:37:49 +00:00
|
|
|
},
|
2020-03-11 09:39:37 +00:00
|
|
|
{
|
|
|
|
"name": "Ice",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"impassable": true,
|
|
|
|
"overrideStats": true,
|
|
|
|
"occursOn": ["Ocean", "Coast"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Atoll",
|
|
|
|
"type": "TerrainFeature",
|
|
|
|
"movementCost": 1,
|
|
|
|
"food": 1,
|
|
|
|
"production": 1,
|
|
|
|
"occursOn": ["Coast"]
|
|
|
|
},
|
2019-12-17 12:23:17 +00:00
|
|
|
|
2019-12-16 18:37:49 +00:00
|
|
|
// Natural Wonders
|
|
|
|
{
|
2020-01-13 17:01:28 +00:00
|
|
|
"name": "Great Barrier Reef",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"food": 2,
|
|
|
|
"production": 1,
|
|
|
|
"gold": 1,
|
|
|
|
"science": 2,
|
|
|
|
"occursOn": ["Coast"],
|
|
|
|
"turnsInto": "Coast",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Old Faithful",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"science": 2,
|
|
|
|
"happiness": 3,
|
|
|
|
"occursOn": ["Grassland","Plains","Tundra","Mountain"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "El Dorado",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"culture": 5,
|
|
|
|
"occursOn": ["Plains"],
|
|
|
|
"turnsInto": "Plains",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"uniques": ["Grants 500 Gold to the first civilization to discover it"],
|
|
|
|
"weight": 2
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Fountain of Youth",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"happiness": 10,
|
|
|
|
"occursOn": ["Plains"],
|
|
|
|
"turnsInto": "Plains",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"uniques": ["Grants Rejuvenation (all healing effects doubled) to adjacent military land units for the rest of the game"],
|
|
|
|
"weight": 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Grand Mesa",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"production": 2,
|
|
|
|
"gold": 3,
|
|
|
|
"occursOn": ["Plains","Desert","Tundra"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Mount Fuji",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"gold": 1,
|
|
|
|
"culture": 5,
|
|
|
|
"occursOn": ["Grassland","Plains"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Krakatoa",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"science": 5,
|
|
|
|
"occursOn": ["Ocean"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Rock of Gibraltar",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"food": 2,
|
|
|
|
"gold": 5,
|
|
|
|
"occursOn": ["Grassland"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Cerro de Potosi",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"gold": 10,
|
|
|
|
"occursOn": ["Plains","Mountain"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 5
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Barringer Crater",
|
|
|
|
"type": "NaturalWonder",
|
|
|
|
"gold": 2,
|
|
|
|
"science": 3,
|
|
|
|
"occursOn": ["Desert","Tundra"],
|
|
|
|
"turnsInto": "Mountain",
|
|
|
|
"impassable": true,
|
|
|
|
"unbuildable": true,
|
|
|
|
"weight": 10
|
|
|
|
}
|
2019-03-06 14:45:51 +00:00
|
|
|
]
|