Changes to terrain combat bonuses (#3990)

as in civ5, all base terrain have no penalty/bonuses, mountain has +25%.
This commit is contained in:
ravignir 2021-05-24 19:44:53 +02:00 committed by GitHub
parent 05c9813ac9
commit 2feefeb4af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,6 @@
"type": "Land", "type": "Land",
"food": 2, "food": 2,
"movementCost": 1, "movementCost": 1,
"defenceBonus": -0.1,
"RGB": [97,171,58], "RGB": [97,171,58],
"uniques": ["Occurs at temperature between [-0.4] and [0.8] and humidity between [0.5] and [1]", "Open terrain"] "uniques": ["Occurs at temperature between [-0.4] and [0.8] and humidity between [0.5] and [1]", "Open terrain"]
}, },
@ -30,7 +29,6 @@
"food": 1, "food": 1,
"production": 1, "production": 1,
"movementCost": 1, "movementCost": 1,
"defenceBonus": -0.1,
"RGB": [168,185,102], "RGB": [168,185,102],
"uniques": ["Occurs at temperature between [-0.4] and [0.8] and humidity between [0] and [0.5]", "uniques": ["Occurs at temperature between [-0.4] and [0.8] and humidity between [0] and [0.5]",
"Occurs at temperature between [0.8] and [1] and humidity between [0.7] and [1]", "Open terrain"] "Occurs at temperature between [0.8] and [1] and humidity between [0.7] and [1]", "Open terrain"]
@ -40,7 +38,6 @@
"type": "Land", "type": "Land",
"food": 1, "food": 1,
"movementCost": 1, "movementCost": 1,
"defenceBonus": -0.1,
"RGB": [189,204,191], "RGB": [189,204,191],
"uniques": ["Occurs at temperature between [-1] and [-0.4] and humidity between [0.5] and [1]", "Open terrain"] "uniques": ["Occurs at temperature between [-1] and [-0.4] and humidity between [0.5] and [1]", "Open terrain"]
}, },
@ -48,7 +45,6 @@
"name": "Desert", "name": "Desert",
"type": "Land", "type": "Land",
"movementCost": 1, "movementCost": 1,
"defenceBonus": -0.1,
"RGB": [ 230, 230, 113], "RGB": [ 230, 230, 113],
"uniques": ["Occurs at temperature between [0.8] and [1] and humidity between [0] and [0.7]", "Open terrain"] "uniques": ["Occurs at temperature between [0.8] and [1] and humidity between [0] and [0.7]", "Open terrain"]
}, },
@ -64,6 +60,7 @@
"name": "Mountain", "name": "Mountain",
"type": "Land", "type": "Land",
"impassable": true, "impassable": true,
"defenceBonus": 0.25,
"RGB": [120, 120, 120], "RGB": [120, 120, 120],
"uniques":["Has an elevation of [4] for visibility calculations"] "uniques":["Has an elevation of [4] for visibility calculations"]
}, },
@ -71,7 +68,6 @@
"name": "Snow", "name": "Snow",
"type": "Land", "type": "Land",
"movementCost": 1, "movementCost": 1,
"defenceBonus": -0.1,
"RGB": [231, 242, 249], "RGB": [231, 242, 249],
"uniques": ["Occurs at temperature between [-1] and [-0.4] and humidity between [0] and [0.5]", "Open terrain"] "uniques": ["Occurs at temperature between [-1] and [-0.4] and humidity between [0] and [0.5]", "Open terrain"]
}, },