Module:Bribes: Difference between revisions
From IdleOn MMO Wiki
mNo edit summary |
mNo edit summary Tag: Reverted |
||
Line 29: | Line 29: | ||
name, | name, | ||
desc, | desc, | ||
frame: | frame:expandTemplate{ title = 'Coindisplay', args = bribe.cost } | ||
) | ) | ||
else | else | ||
Line 36: | Line 36: | ||
name, | name, | ||
desc, | desc, | ||
frame: | frame:expandTemplate{ title = 'Coindisplay', args = bribe.cost } | ||
) | ) | ||
end | end |
Revision as of 22:01, 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(frame)
local ret = ""
for _, bribe in ipairs(data) do
local name = bribe.name
local desc = bribe.desc
local cost = bribe.cost
local intName = bribe.intName
if bribe.intName == "BribeExpansion" then
ret = ret .. string.format(
ROW_TEMPLATE_EXPANSION,
name,
desc,
frame:expandTemplate{ title = 'Coindisplay', args = bribe.cost }
)
else
ret = ret .. string.format(
ROW_TEMPLATE,
name,
desc,
frame:expandTemplate{ title = 'Coindisplay', args = bribe.cost }
)
end
end
return ret
end
return p
---------------------------------losin my sanity