The Fungus talents are initially available to Wyrmic characters. They may also be learned by Antimagic devotees, from Protector Myssil in Zigur.
| Talent | Type/Cost | Scales With | Description |
|---|---|---|---|
| Wild Growth | Sustained 15 Equilibrium |
-- | Increase duration of regeneration effects. |
| Fungal Growth | Passive | Mindpower | Each time you are healed, get a 6-turn regeneration effect. |
| Ancestral Life | Passive | Mindpower | Gain fraction of a turn and restore EQ when you use regeneration effects. |
| Sudden Growth | 22 Equilibrium 25 cooldown |
-- | Heal for a multiple of your current life regeneration rate. |
Math for 1.0:
Wild Growth
dur = floor(getTalentLevel(t))
Fungal Growth
power = 20 + combatTalentMindDamage(t, 5, 500) / 10
Ancestral Life
turn = bound(50 + combatTalentMindDamage(t, 5, 500) / 10, 50, 160)
eq = bound(ceil(getTalentLevel(t) / 2), 1, 4)
Sudden Growth
mult = bound(5 + getTalentLevel(t), 3, 12)
