1
0
forked from 0ad/0ad

Two new techs, to demonstrate negative bonuses. These are the infantry spearman speed and armour techs for Hellenes.

This was SVN commit r4165.
This commit is contained in:
Matei 2006-07-23 17:26:37 +00:00
parent c19dbd1360
commit b82451a4ff
4 changed files with 108 additions and 1 deletions

View File

@ -18,5 +18,16 @@
</Traits>
<Actor>structures/hellenes/barracks.xml</Actor>
<Actions>
<Create>
<List>
<Research>
<Hele_Spearman_Armour_1 />
<Hele_Spearman_Speed_1 />
</Research>
</List>
</Create>
</Actions>
</Entity>

View File

@ -11,7 +11,7 @@
<Icon_Cell>3</Icon_Cell>
<Classes>Spear</Classes>
<Classes>Spear, InfantrySpearman</Classes>
<Rollover>Probably one of the most primitive units in the game. Fighting with a sharp object at the end of the pole didn't require a lot of technology to develop. It also allowed the human to distance themselves from their attacker. As time passed the spears got longer and longer. Started with a fighting style similar to using a quarterstaff, then to using them in numbers as a 'pin cushion' vs. humans (sarissa in a phalanx). Later it was developed to combat cavalry. During the medieval period it evolved to the pike. These units tended to be armoured as heavily as possible.</Rollover>

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
<Tech>
<ID>
<Generic>Spearman Armour 1</Generic>
<Specific>Reinforced Sandals</Specific>
<Icon>PortraitSheetTech</Icon>
<Icon_Cell>0</Icon_Cell>
<Classes>Buff</Classes>
<Rollover></Rollover>
<History></History>
</ID>
<Req>
<Time>5</Time>
<Resource>
<Food>0</Food>
<Wood>100</Wood>
<Stone>0</Stone>
<Ore>100</Ore>
</Resource>
</Req>
<Effect>
<Target>InfantrySpearman</Target>
<Pair>hele_spearman_speed_1</Pair>
<Modifier>
<Attribute>traits.armour.value</Attribute>
<Value>10%</Value>
</Modifier>
<Modifier>
<Attribute>actions.move.speed</Attribute>
<Value>-3%</Value>
</Modifier>
<Modifier>
<Attribute>actions.move.run.speed</Attribute>
<Value>-3%</Value>
</Modifier>
</Effect>
</Tech>

View File

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
<Tech>
<ID>
<Generic>Spearman Speed 1</Generic>
<Specific>Rocket Boots</Specific>
<Icon>PortraitSheetTech</Icon>
<Icon_Cell>0</Icon_Cell>
<Classes>Buff</Classes>
<Rollover></Rollover>
<History></History>
</ID>
<Req>
<Time>5</Time>
<Resource>
<Food>0</Food>
<Wood>100</Wood>
<Stone>0</Stone>
<Ore>100</Ore>
</Resource>
</Req>
<Effect>
<Target>InfantrySpearman</Target>
<Pair>hele_spearman_armour_1</Pair>
<Modifier>
<Attribute>traits.armour.value</Attribute>
<Value>-3%</Value>
</Modifier>
<Modifier>
<Attribute>actions.move.speed</Attribute>
<Value>10%</Value>
</Modifier>
<Modifier>
<Attribute>actions.move.run.speed</Attribute>
<Value>10%</Value>
</Modifier>
</Effect>
</Tech>