Module:UnlockChalDate: Difference between revisions
Jump to navigation
Jump to search
Mantou1233 (talk | contribs) No edit summary |
Mantou1233 (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
local color={ | local color={ | ||
-- [300] = 'style="background:#adff2f;" | ', | -- [300] = 'style="background:#adff2f;" | ', | ||
[4] = 'style="background:#ffa500;" | ', | |||
[ | [3] = 'style="background:#f08080;" | ', | ||
[ | [2] = 'style="background:#da70d6;" | ', | ||
[ | [1] = 'style="background:#da70d6;" | ' | ||
} | |||
local lifes={ | |||
[4] = 150, | |||
[3] = 150, | |||
[2] = 50, | |||
[1] = 10 | |||
} | } | ||
local function DateDiffRaw(args) | local function DateDiffRaw(args) | ||
Line 11: | Line 17: | ||
end | end | ||
local function getColor( | local function getColor(mode, ult) | ||
if | if mode == 1 and ult == "y" then | ||
return 'style="background:#823434; color:white;" | ' | return 'style="background:#823434; color:white;" | ' | ||
end | end | ||
return color[ | return color[mode] | ||
end | end | ||
Line 22: | Line 28: | ||
day=DateDiffRaw({args[1],args[2],args[3]}) + 1 | day=DateDiffRaw({args[1],args[2],args[3]}) + 1 | ||
--if day >= 28 then life = 300 | --if day >= 28 then life = 300 | ||
if day >= 14 then mode = 4 | |||
elseif day >= 7 then mode = 3 | |||
elseif day >= 4 then | elseif day >= 4 then mode = 2 | ||
else | else mode = 1 end | ||
return args[1]..'/'..args[2]..'/'..args[3]..' || '..getColor( | return args[1]..'/'..args[2]..'/'..args[3]..' || '..getColor(mode, args.ult or "n")..lifes[mode] | ||
end | end | ||
return p | return p |
Latest revision as of 08:39, 27 December 2024
Documentation for this module may be created at Module:UnlockChalDate/doc
local p={}
local color={
-- [300] = 'style="background:#adff2f;" | ',
[4] = 'style="background:#ffa500;" | ',
[3] = 'style="background:#f08080;" | ',
[2] = 'style="background:#da70d6;" | ',
[1] = 'style="background:#da70d6;" | '
}
local lifes={
[4] = 150,
[3] = 150,
[2] = 50,
[1] = 10
}
local function DateDiffRaw(args)
return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args}))
end
local function getColor(mode, ult)
if mode == 1 and ult == "y" then
return 'style="background:#823434; color:white;" | '
end
return color[mode]
end
function p.UnlockChalDate(frame)
args=frame:getParent().args
day=DateDiffRaw({args[1],args[2],args[3]}) + 1
--if day >= 28 then life = 300
if day >= 14 then mode = 4
elseif day >= 7 then mode = 3
elseif day >= 4 then mode = 2
else mode = 1 end
return args[1]..'/'..args[2]..'/'..args[3]..' || '..getColor(mode, args.ult or "n")..lifes[mode]
end
return p