1
0
forked from 0ad/0ad

[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.
This commit is contained in:
wowgetoffyourcellphone 2023-11-24 20:03:51 +00:00
parent a0592a3c37
commit 71d45cd9ce
2 changed files with 23 additions and 0 deletions

View File

@ -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": [

View File

@ -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"
}