Lots off background work for future water tiles

Resized xxxhdpi icon
This commit is contained in:
Yair Morgenstern
2018-09-11 23:07:12 +03:00
parent d7a08cfc01
commit 9c8e173f4e
12 changed files with 178 additions and 71 deletions

View File

@ -1,15 +1,29 @@
[
// Base terrains
{
name:"Ocean",
type:"Water",
food:2,
movementCost:1,
RGB: [100,100,255]
},
{
name:"Coast",
type:"Water",
food:2,
movementCost:1,
RGB: [150,150,255]
},
{
name:"Grassland",
type:"BaseTerrain",
type:"Land",
food:2,
movementCost:1,
RGB: [109,139,53]
},
{
name:"Plains",
type:"BaseTerrain",
type:"Land",
food:1,
production:1,
movementCost:1,
@ -17,27 +31,28 @@
},
{
name:"Tundra",
type:"BaseTerrain",
type:"Land",
food:1,
movementCost:1,
RGB: [125,122,113]
},
{
name:"Desert",
type:"BaseTerrain",
type:"Land",
movementCost:1,
RGB: [ 255, 255, 102]
},
{
name:"Lakes",
type:"BaseTerrain",
type:"Water",
food:1,
gold:1
gold:1,
RGB: [ 200, 200, 255],
canHaveOverlay:false
},
{
name:"Hill",
type:"BaseTerrain",
type:"Land",
production:2,
movementCost:2,
defenceBonus: 0.25,