mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
Team bonuses for Britons, Gauls and Romans. Reviewed by elexis. Refs #4082.
Differential Revision: https://code.wildfiregames.com/D502 This was SVN commit r19591.
This commit is contained in:
parent
576754566d
commit
a589b067a9
6 changed files with 51 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "global",
|
||||
"affects": ["Healer"],
|
||||
"affectedPlayers": ["ExclusiveMutualAlly"],
|
||||
"modifications": [
|
||||
{ "value": "Cost/Resources/food", "multiply": 0.8 },
|
||||
{ "value": "Cost/Resources/wood", "multiply": 0.8 },
|
||||
{ "value": "Cost/Resources/metal", "multiply": 0.8 },
|
||||
{ "value": "Cost/Resources/stone", "multiply": 0.8 }
|
||||
],
|
||||
"auraName": "Druids",
|
||||
"auraDescription": "-20% resources cost for allies healers."
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"type": "global",
|
||||
"affects": ["Structure"],
|
||||
"affectedPlayers": ["ExclusiveMutualAlly"],
|
||||
"modifications": [
|
||||
{ "value": "ProductionQueue/TechCostMultiplier/time", "multiply": 0.8 }
|
||||
],
|
||||
"auraName": "Druidic Wisdom",
|
||||
"auraDescription": "-10% research time for technologies of allies."
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"type": "global",
|
||||
"affects": ["Infantry"],
|
||||
"affectedPlayers": ["ExclusiveMutualAlly"],
|
||||
"modifications": [
|
||||
{ "value": "Cost/BuildTime", "multiply": 0.8 }
|
||||
],
|
||||
"auraName": "Conscription",
|
||||
"auraDescription": "-20% training time for allied infantry."
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Entity parent="special/player">
|
||||
<Auras datatype="tokens">
|
||||
teambonuses/brit_player_teambonus
|
||||
</Auras>
|
||||
</Entity>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Entity parent="special/player">
|
||||
<Auras datatype="tokens">
|
||||
teambonuses/gaul_player_teambonus
|
||||
</Auras>
|
||||
</Entity>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Entity parent="special/player">
|
||||
<Auras datatype="tokens">
|
||||
teambonuses/rome_player_teambonus
|
||||
</Auras>
|
||||
</Entity>
|
||||
Loading…
Reference in a new issue