talents-warcries

Talents >> Techniques

Talent Type/Cost Scales With Description
Shattering Shout 20 Stamina
7 cooldown
Strength Physical damage cone.
Second Wind 50 cooldown -- Gain percent of your max Stamina.
Battle Shout 40 Stamina
30 cooldown
-- Increase max Life and Stamina.
Battle Cry 40 Stamina
30 cooldown
Physical power Lower enemy defense (cone) for 7 turns.

Math/code for 1.0:

Shattering Shout
radius = 3 + getTalentLevelRaw(t)
damage = 50 + (getTalentLevel(t) * getStr()) / 2.3

Second Wind
stamina = (20 + getTalentLevel(t) * 7) * max_stamina / 100

Battle Shout
duration = 5 + getTalentLevelRaw(t) * 2
power = 10 + getTalentLevelRaw(t)

Battle Cry
radius = 3 + getTalentLevelRaw(t)
power = 7 * getTalentLevel(t)
apply_power = combatPhysicalpower()