Sylvanas Windrunner
Tier A Cost 6
Level: 1
Health
const MINIhp = 430; const mini_hp = document.getElementById('mini'); const minidata = document.getElementById('minidata'); mini_hp.addEventListener('input', updateMinidata); function updateMinidata(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentHP = Math.round(MINIhp * levelMultiplier); minidata.textContent = `${currentHP}`; } updateMinidata({ target: mini_hp });
Damage
const MINIdmg = 190; const mini_dmg = document.getElementById('mini'); const damageValue = document.getElementById('damageValue'); mini_dmg.addEventListener('input', updateDamage); function updateDamage(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentDmg = Math.round(MINIdmg * levelMultiplier); damageValue.textContent = `${currentDmg}`; } updateDamage({ target: mini_dmg });
Area Damage
-
DPS
const MINIdmg4 = 190; const MINIaspd4 = 1.3; const mini4 = document.getElementById('mini'); const dpsValue4 = document.getElementById('dpsValue4'); const levelValue4 = document.getElementById('mini-value'); mini4.addEventListener('input', updateDPS4); function updateDPS4(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentDamage = Math.round(MINIdmg4 * levelMultiplier); const currentDPS = (currentDamage / MINIaspd4).toFixed(1); dpsValue4.textContent = `${currentDPS}`; levelValue4.textContent = `${selectedLevel}`; } // Trigger updateDPS4 function initially updateDPS4({ target: mini4 });
Percent DPS
-
Attack Speed
1.3
Range
8.5
Speed
Medium (2)
Duration
-
Radius
-
A ranged Leader with a powerful bow and arrow. Summons a Banshee on death.
Windrunner Warchief
All Undead and Horde Minis gain 30% movement speed near Sylvanas.
Ranged
Attacks enemies from a distance.
One-Target
Strong vs AoE units.
Haunt
Summon a Banshee on death.
Black Arrow
Pierce through enemies in a line, dealing Elemental damage.
Banshee’s Wail
Scream on Death, Stunning nearby enemies for 3 seconds.
Forsaken Fury
Nearby Horde and Undead Minis gain Fury.
The Necromancer is a reliable choice for one of the Undead slots. As one of the finest units in the Undead faction, it can take advantage of Sylvanas’s speed aura. In addition, a front-row unit is needed. The 4-cost Stonehoof Tauren is a strong recommendation. It can topple the opponent’s rear-guard, but it does not possess AoE capabilities, necessitating the use of Sylvanas’s “Black Arrow” talent. Another fitting undead unit suggestion is the Skeleton, endowed with the “Exhume” talent. As a cost-effective tower support unit for the Unbound, it aligns well with Sylvanas’s build.
The composition for the three slots at the bottom remains uncertain (details will be available after the Undead week). Temporarily, units like Bat Rider, a high-value ground AoE unit, are recommended because of Sylvanas’s strong anti-air capabilities. Quilboar is another good option as it can provide distance support and function as an elemental tank. The final slot could be filled by the S.A.F.E. Pilot, who can lend remote support and has potent AoE skills.
Sylvanas Windrunner
Tier A Cost 6
Level: 1
Health
const MINIhp = 300; const mini_hp = document.getElementById('mini'); const minidata = document.getElementById('minidata'); mini_hp.addEventListener('input', updateMinidata); function updateMinidata(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentHP = Math.round(MINIhp * levelMultiplier); minidata.textContent = `${currentHP}`; } updateMinidata({ target: mini_hp });
-
-
Damage
const LEFTdmg = 18; const left_dmg = document.getElementById('mini'); const leftdmg = document.getElementById('leftdmg'); left_dmg.addEventListener('input', updateleftdmg); function updateleftdmg(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentLEFTDMG = Math.round(LEFTdmg * levelMultiplier); leftdmg.textContent = `${currentLEFTDMG}`; } updateleftdmg({ target: left_dmg });
-
const MINIdmg = 100; const mini_dmg = document.getElementById('mini'); const damageValue = document.getElementById('damageValue'); mini_dmg.addEventListener('input', updateDamage); function updateDamage(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentDmg = Math.round(MINIdmg * levelMultiplier); damageValue.textContent = `${currentDmg}`; } updateDamage({ target: mini_dmg });
DPS
const LEFTDPS = 90; const left_dps = document.getElementById('mini'); const leftdps = document.getElementById('leftdps'); mini_hp.addEventListener('input', updateleftdps); function updateleftdps(e) { const selectedLevel = e.target.value; const levelMultiplier = Math.pow(1.1001, selectedLevel - 1); const currentLEFTDPS = Math.round(LEFTDPS * levelMultiplier); leftdps.textContent = `${currentLEFTDPS}`; } updateleftdps({ target: left_dps });
-
-
Range
8
Speed
Medium (2)
Duration
-
Radius
-