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