Remove the build time malus from Greek civ bonus.

The 'Hellenic Architecture' bonus for Greek civilisations increased
health and capture points slightly, but also build time.
Because it is active from the start, it ended up being a large economic
debuff that made these civilisations less competitive.

The build-time increase is removed so "Hellenic Architecture" is now a
pure bonus.

Patch by: Feldfeld
Accepted By: wraitii, borg-
Differential Revision: https://code.wildfiregames.com/D2839
This was SVN commit r23840.
This commit is contained in:
wraitii 2020-07-16 08:11:00 +00:00
parent c64fa6017c
commit 32615ae6be

View File

@ -4,11 +4,10 @@
"description": "The Greeks used stone construction from early Mycenaean times.",
"requirements": { "any": [{ "civ": "athen" }, { "civ": "mace" }, { "civ": "spart" }] },
"icon": "ionic_column.png",
"tooltip": "Athenian, Macedonian, and Spartan Structures +10% build time, +10% health, and +10% capture points.",
"tooltip": "Athenian, Macedonian, and Spartan Structures +10% health and +10% capture points.",
"modifications": [
{ "value": "Health/Max", "multiply": 1.1 },
{ "value": "Capturable/CapturePoints", "multiply": 1.1 },
{ "value": "Cost/BuildTime", "multiply": 1.1 }
{ "value": "Capturable/CapturePoints", "multiply": 1.1 }
],
"affects": ["Structure !Wonder"]
}