added cool mana to spell totals
This commit is contained in:
parent
2620fa74d4
commit
36947c6f87
1 changed files with 6 additions and 5 deletions
11
display.js
11
display.js
|
@ -1205,19 +1205,20 @@ function displaySpellDamage(parent_elem, overallparent_elem, build, spell, spell
|
||||||
title_elemavg.classList.add('Normal');
|
title_elemavg.classList.add('Normal');
|
||||||
|
|
||||||
if (spellIdx != 0) {
|
if (spellIdx != 0) {
|
||||||
title_elem.textContent = spell.title + " (" + build.getSpellCost(spellIdx, spell.cost) + ")";
|
|
||||||
let first = document.createElement("b");
|
let first = document.createElement("b");
|
||||||
first.textContent = spell.title + " (";
|
first.textContent = spell.title + " (";
|
||||||
|
title_elem.appendChild(first.cloneNode(true)); //cloneNode is needed here.
|
||||||
title_elemavg.appendChild(first);
|
title_elemavg.appendChild(first);
|
||||||
let second = document.createElement("b");
|
let second = document.createElement("b");
|
||||||
second.textContent = build.getSpellCost(spellIdx, spell.cost);
|
second.textContent = build.getSpellCost(spellIdx, spell.cost);
|
||||||
second.classList.add("Mana");
|
second.classList.add("Mana");
|
||||||
|
title_elem.appendChild(second.cloneNode(true));
|
||||||
title_elemavg.appendChild(second);
|
title_elemavg.appendChild(second);
|
||||||
let fourth = document.createElement("b");
|
let third = document.createElement("b");
|
||||||
fourth.textContent = ")";
|
third.textContent = ")";
|
||||||
title_elemavg.appendChild(fourth);
|
title_elem.appendChild(third.cloneNode(true));
|
||||||
|
title_elemavg.appendChild(third);
|
||||||
|
|
||||||
//title_elemavg.textContent = spell.title + " (" + build.getSpellCost(spellIdx, spell.cost) + ")";
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
title_elem.textContent = spell.title;
|
title_elem.textContent = spell.title;
|
||||||
|
|
Loading…
Add table
Reference in a new issue