| Talent | Type/Cost | Scales With | Description |
|---|---|---|---|
| Prismatic Slash | 20 Equilibrium 16 cooldown |
Mindpower | Attack for random high-elemental damage + burst. Raw points increase physical, spell, mental saves by 1. |
| Venomous Breath | 12 Equilibrium 12 cooldown |
Strength | Breathe insidious poison in a cone (damage for 6 turns). Raw points increase nature resistance by 2%. |
| Wyrmic Guile | Passive | -- | Raw points increase Cunning by 2, knockback resistance by 10%, and blindness + stun immunity by 5%. |
| Chromatic Fury | Passive | -- | Raw points increase physical, fire, cold, lightning, acid damages by 2%; resistance penetrations by 4%; and resistances by 0.5%. |
Math/code for 1.0:
Prismatic Slash
wpn_dmg_mult = combatTalentWeaponDamage(t, 1.2, 2.0)
burst_dmg = combatTalentMindDamage(t, 20, 230)
radius = 1 + getTalentLevel(t) / 2
Venomous Breath
radius = 4 + getTalentLevelRaw(t)
damage = combatTalentStatDamage(t, "str", 60, 650) / 6
heal_reduce = 10 + getTalentLevel(t) * 8
