2,875
edits
No edit summary |
No edit summary |
||
Line 530: | Line 530: | ||
:wikitext('Logs') | :wikitext('Logs') | ||
headerRow0:tag('th'):attr('rowspan', '2') | headerRow0:tag('th'):attr('rowspan', '2') | ||
:wikitext(' | :wikitext(Icons._SkillRealmIcon('Firemaking', realm.id) .. '<br>Level') | ||
headerRow0:tag('th'):attr('rowspan', '2') | headerRow0:tag('th'):attr('rowspan', '2') | ||
:wikitext('Burn Time') | :wikitext('[[DLC]]') | ||
headerRow0:tag('th'):attr('rowspan', '2') | |||
:wikitext('Burn<br>Time') | |||
headerRow0:tag('th'):attr('colspan', '2') | headerRow0:tag('th'):attr('colspan', '2') | ||
:wikitext('Without Bonfire') | :wikitext('Without Bonfire') | ||
Line 538: | Line 540: | ||
:wikitext('With Bonfire') | :wikitext('With Bonfire') | ||
headerRow0:tag('th'):attr('rowspan', '2') | headerRow0:tag('th'):attr('rowspan', '2') | ||
:wikitext('Bonfire Bonus') | :wikitext('Bonfire<br>Bonus') | ||
headerRow0:tag('th'):attr('rowspan', '2') | headerRow0:tag('th'):attr('rowspan', '2') | ||
:wikitext('Bonfire Time') | :wikitext('Bonfire<br>Time') | ||
local headerRow1 = tableHtml:tag('tr'):addClass('headerRow-1') | local headerRow1 = tableHtml:tag('tr'):addClass('headerRow-1') | ||
Line 571: | Line 573: | ||
:wikitext(Icons.Icon({name, type='item', notext=true})) | :wikitext(Icons.Icon({name, type='item', notext=true})) | ||
row:tag('td'):wikitext('[[' .. name .. ']]') | row:tag('td'):wikitext('[[' .. name .. ']]') | ||
row:tag('td'): | row:tag('td'):css('text-align', 'center') | ||
:wikitext(level) | |||
row:tag('td'):css('text-align', 'center') | |||
row:tag('td'): | :attr('data-sort-value', Icons.getExpansionID(logData.logID)) | ||
:wikitext(Icons.getDLCColumnIcon(logData.logID)) | |||
row:tag('td'):css('text-align', 'right') | |||
:attr('data-sort-value', burnTime) | :attr('data-sort-value', burnTime) | ||
:wikitext(Shared.timeString(burnTime, true)) | :wikitext(Shared.timeString(burnTime, true)) | ||
row:tag('td'): | row:tag('td'):css('text-align', 'right') | ||
:attr('data-sort-value', baseXP) | :attr('data-sort-value', baseXP) | ||
:wikitext(Num.formatnum(baseXP)) | :wikitext(Num.formatnum(baseXP)) | ||
row:tag('td'): | row:tag('td'):css('text-align', 'right') | ||
:attr('data-sort-value', XPS) | :attr('data-sort-value', XPS) | ||
:wikitext(Num.formatnum(Num.round(XPS, 2, 2))) | :wikitext(Num.formatnum(Num.round(XPS, 2, 2))) | ||
Line 589: | Line 593: | ||
:wikitext('N/A') | :wikitext('N/A') | ||
else | else | ||
row:tag('td'): | row:tag('td'):css('text-align', 'right') | ||
:attr('data-sort-value', XP_BF) | :attr('data-sort-value', XP_BF) | ||
:wikitext(Num.formatnum(XP_BF)) | :wikitext(Num.formatnum(XP_BF)) | ||
row:tag('td'): | row:tag('td'):css('text-align', 'right') | ||
:attr('data-sort-value', XPS_BF) | :attr('data-sort-value', XPS_BF) | ||
:wikitext(Num.formatnum(XPS_BF, 2, 2)) | :wikitext(Num.formatnum(XPS_BF, 2, 2)) | ||
row:tag('td'): | row:tag('td'):css('text-align', 'right') | ||
:attr('data-sort-value', bonfireBonus) | :attr('data-sort-value', bonfireBonus) | ||
:wikitext(bonfireBonus .. '%') | :wikitext(bonfireBonus .. '%') | ||
row:tag('td'): | row:tag('td'):css('text-align', 'right') | ||
:attr('data-sort-value', bonfireTime) | :attr('data-sort-value', bonfireTime) | ||
:wikitext(Shared.timeString(bonfireTime, true)) | :wikitext(Shared.timeString(bonfireTime, true)) |
edits