Module:UnlockChalDate: Difference between revisions
Jump to navigation
Jump to search
Mantou1233 (talk | contribs) (Created page with "local p={} local color={ [300] = 'style="background:#adff2f;" | ', [100] = 'style="background:#adff2f;" | ', [50] = 'style="background:#f08080;" | ', [10] = 'style="background:#da70d6;" | ', [1] = 'style="background:#da70d6;" | ' } local function DateDiffRaw(args) return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args})) end function p.UnlockChalDate(frame) args=frame:getParent().args day=DateDiffRaw...") |
Mantou1233 (talk | contribs) No edit summary |
||
Line 7: | Line 7: | ||
[1] = 'style="background:#da70d6;" | ' | [1] = 'style="background:#da70d6;" | ' | ||
} | } | ||
local function tableToString(tbl) | |||
local result = {} | |||
for k, v in pairs(tbl) do | |||
if type(v) == "table" then | |||
table.insert(result, k .. " = {" .. tableToString(v) .. "}") | |||
else | |||
table.insert(result, k .. " = " .. tostring(v)) | |||
end | |||
end | |||
return table.concat(result, ", ") | |||
end | |||
local function DateDiffRaw(args) | local function DateDiffRaw(args) | ||
return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args})) | return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args})) | ||
Line 18: | Line 31: | ||
elseif day >= 7 then life = 50 | elseif day >= 7 then life = 50 | ||
else life = 10 end | else life = 10 end | ||
return args | return tableToString(args) | ||
end | end | ||
return p | return p |
Revision as of 11:48, 21 December 2024
Documentation for this module may be created at Module:UnlockChalDate/doc
local p={}
local color={
[300] = 'style="background:#adff2f;" | ',
[100] = 'style="background:#adff2f;" | ',
[50] = 'style="background:#f08080;" | ',
[10] = 'style="background:#da70d6;" | ',
[1] = 'style="background:#da70d6;" | '
}
local function tableToString(tbl)
local result = {}
for k, v in pairs(tbl) do
if type(v) == "table" then
table.insert(result, k .. " = {" .. tableToString(v) .. "}")
else
table.insert(result, k .. " = " .. tostring(v))
end
end
return table.concat(result, ", ")
end
local function DateDiffRaw(args)
return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args}))
end
function p.UnlockChalDate(frame)
args=frame:getParent().args
day=DateDiffRaw({args[1],args[2],args[3]})
if day >= 28 then life = 300
elseif day >= 21 then life = 100
elseif day >= 14 then life = 150
elseif day >= 7 then life = 50
else life = 10 end
return tableToString(args)
end
return p