Module:Bribes: Difference between revisions

From IdleOn MMO Wiki
mNo edit summary
mNo edit summary
Line 32: Line 32:
         end
         end
         ret = ret .. string.format(
         ret = ret .. string.format(
             intName == "BribeExpansion" and ROW_TEMPLATE or ROW_TEMPLATE_EXPANSION,
             intName == "BribeExpansion" and ROW_TEMPLATE_EXPANSION or ROW_TEMPLATE,
             name,
             name,
             desc,
             desc,

Revision as of 16:37, 8 March 2024

hewwo


local data = mw.loadJsonData('Module:Bribes/data.json')
local p = {}
local Loops = require("Module:Loops")

local ROW_TEMPLATE = [=[<tr>
<td>%s</td>
<td>%s</td>
<td>%s</td>
</tr>]=]

local ROW_TEMPLATE_EXPANSION = [=[<tr>
<th>%s</th>
<th>%s</th>
<th>%s</th>
</tr>]=]

function p.bribez()
    local ret = ""
    for _, bribeData in pairs(data) do
        local name = bribeData["name"]
        local desc = bribeData["desc"]
        local cost = bribeData["cost"]
        local intName = bribeData["intName"]
        if intName == "BribeExpansion" then
            name = "<th>" .. name .. "</th>"
            desc = "<th>" .. desc .. "</th>"
            cost = "<th>" .. cost .. "</th>"
        else
            name = "<td>" .. name .. "</td>"
            desc = "<td>" .. desc .. "</td>"
            cost = "<td>" .. cost .. "</td>"
        end
        ret = ret .. string.format(
            intName == "BribeExpansion" and ROW_TEMPLATE_EXPANSION or ROW_TEMPLATE,
            name,
            desc,
            cost
        )
    end
    return ret
end
return p