Module:Bribes

From IdleOn MMO Wiki
Revision as of 16:49, 8 March 2024 by BHY4A (talk | contribs)

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 = ""
    local luaSux = {}
    for luaSux in pairs(data) do
        luaSux[#luaSux + 1] = luaSuck
    end
    for _, luaSuck in pairs(luaSux) do
    	local bribeData = data[luaSuck]
        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