17,101
edits
(getBuildingInfoBox: Add TotH icon) |
(getTraderTable, getBuildingUpgradeTable: Add TotH icon) |
||
Line 456: | Line 456: | ||
table.insert(resultPart, '\n|-\n| ' .. Icons.Icon({item.name, type='item', size=50, notext=true})) | table.insert(resultPart, '\n|-\n| ' .. Icons.Icon({item.name, type='item', size=50, notext=true})) | ||
table.insert(resultPart, '\n| ' .. Icons.Icon({item.name, type='item', noicon=true})) | table.insert(resultPart, '\n| ' .. Icons.getExpansionIcon(item.id) .. Icons.Icon({item.name, type='item', noicon=true})) | ||
table.insert(resultPart, '\n| ' .. itemDesc) | table.insert(resultPart, '\n| ' .. itemDesc) | ||
table.insert(resultPart, '\n|data-sort-value="' .. costSort ..'" style="text-align:right"| ' .. Icons.Icon({res.name, type='resource', qty=resQty, notext=true})) | table.insert(resultPart, '\n|data-sort-value="' .. costSort ..'" style="text-align:right"| ' .. Icons.Icon({res.name, type='resource', qty=resQty, notext=true})) | ||
Line 670: | Line 670: | ||
table.insert(ret, '\n|-\n!colspan="2"| Name') | table.insert(ret, '\n|-\n!colspan="2"| Name') | ||
for _, building in ipairs(buildingList) do | for _, building in ipairs(buildingList) do | ||
table.insert(ret, '\n!' .. Icons.Icon({building.name, type='building'})) | table.insert(ret, '\n!' .. Icons.getExpansionIcon(building.id) .. Icons.Icon({building.name, type='building'})) | ||
end | end | ||