From 71d45cd9cedbbdc776b358476c3ab77c00a50e66 Mon Sep 17 00:00:00 2001 From: wowgetoffyourcellphone Date: Fri, 24 Nov 2023 20:03:51 +0000 Subject: [PATCH] [Gameplay] "Woad Warriors" civ bonus for the Britons Patch by: @borg- Accepted by: @wowgetoffyourcellphone Comments by: @real_tabasco_sauce, @chrstgtr Differential Revision: https://code.wildfiregames.com/D5190 This was SVN commit r27956. --- .../mods/public/simulation/data/civs/brit.json | 5 +++++ .../civbonuses/brit_woad_warriors.json | 18 ++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 binaries/data/mods/public/simulation/data/technologies/civbonuses/brit_woad_warriors.json diff --git a/binaries/data/mods/public/simulation/data/civs/brit.json b/binaries/data/mods/public/simulation/data/civs/brit.json index 6ecfc039c5..4cfcd47932 100644 --- a/binaries/data/mods/public/simulation/data/civs/brit.json +++ b/binaries/data/mods/public/simulation/data/civs/brit.json @@ -40,6 +40,11 @@ "Name": "Deas Celtica", "History": "Celtic religion and druidry inspired their warlike mindset.", "Description": "Druids increase attack rates of soldiers near them by 5%." + }, + { + "Name": "Woad Warriors", + "History": "Britons paint their bodies with Woad, which produces a blue color and gives them a fiercesome appearance in battle.", + "Description": "All Infantry Units +5% movement speed, and gain +1 loot taking." } ], "WallSets": [ diff --git a/binaries/data/mods/public/simulation/data/technologies/civbonuses/brit_woad_warriors.json b/binaries/data/mods/public/simulation/data/technologies/civbonuses/brit_woad_warriors.json new file mode 100644 index 0000000000..e6e6ffc429 --- /dev/null +++ b/binaries/data/mods/public/simulation/data/technologies/civbonuses/brit_woad_warriors.json @@ -0,0 +1,18 @@ +{ + "genericName": "Woad Warriors", + "autoResearch": true, + "description": "Britons paint their bodies with Woad, which produces a blue color and gives them a fiercesome appearance in battle.", + "icon": "woad_warriors.png", + "tooltip": "All Infantry Units +5% movement speed, and gain +1 loot taking.", + "requirements": { "civ": "brit" }, + "modifications": [ + { "value": "UnitMotion/WalkSpeed", "multiply": 1.05 }, + { "value": "Looter/Resource/metal", "add": 1 }, + { "value": "Looter/Resource/stone", "add": 1 }, + { "value": "Looter/Resource/food", "add": 1 }, + { "value": "Looter/Resource/wood", "add": 1 } + + ], + "affects": ["Infantry"], + "soundComplete": "interface/alarm/alarm_upgradearmory.xml" +}