Unciv/android/assets/jsons/Terrains.json

133 lines
1.8 KiB
JSON
Raw Normal View History

2017-11-21 22:09:35 +00:00
[
2017-12-21 13:31:01 +00:00
// Base terrains
{
name:"Ocean",
type:"Water",
food:1,
gold:1,
movementCost:1,
RGB: [100,100,255]
},
{
name:"Coast",
type:"Water",
food:1,
movementCost:1,
RGB: [150,150,255]
},
2017-11-21 22:09:35 +00:00
{
2017-12-01 13:14:18 +00:00
name:"Grassland",
type:"Land",
2017-12-01 13:14:18 +00:00
food:2,
movementCost:1,
RGB: [109,139,53]
2017-11-21 22:09:35 +00:00
},
{
2017-12-01 13:14:18 +00:00
name:"Plains",
type:"Land",
2017-12-01 13:14:18 +00:00
food:1,
production:1,
movementCost:1,
RGB: [200,208,161]
2017-11-21 22:09:35 +00:00
},
{
2017-12-01 13:14:18 +00:00
name:"Tundra",
type:"Land",
2017-12-01 13:14:18 +00:00
food:1,
movementCost:1,
defenceBonus: -0.1,
RGB: [125,122,113]
2017-11-21 22:09:35 +00:00
},
{
2017-12-01 13:14:18 +00:00
name:"Desert",
type:"Land",
movementCost:1,
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",
type:"Water",
food:2,
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",
type:"Land",
2017-12-01 13:14:18 +00:00
production:2,
movementCost:2,
defenceBonus: 0.25,
RGB: [74,81,40],
rough: true
2017-11-21 22:09:35 +00:00
},
{
name:"Mountain",
type:"Land",
impassable:true,
RGB: [89, 45, 0]
},
/*
{
name:"Snow",
type:"Land",
movementCost:1,
defenceBonus: -0.1,
RGB: [153, 255, 255]
},
*/
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,
movementCost:2,
2017-12-01 13:14:18 +00:00
overrideStats:true,
unbuildable:true,
defenceBonus: 0.25,
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,
movementCost:2,
2017-12-01 13:14:18 +00:00
overrideStats:true,
unbuildable:true,
defenceBonus: 0.25,
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,
movementCost:3,
2017-12-01 13:14:18 +00:00
unbuildable:true,
defenceBonus: -0.1,
occursOn:["Grassland"]
2017-11-21 22:09:35 +00:00
},
{
2017-12-01 13:14:18 +00:00
name:"Oasis",
type:"TerrainFeature",
food:3,
gold:1,
movementCost:1,
2017-12-01 13:14:18 +00:00
unbuildable:true,
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,
movementCost:1,
defenceBonus: -0.1,
2017-12-01 13:14:18 +00:00
occursOn:["Desert"]
2017-11-21 22:09:35 +00:00
}
]