Module:UnlockChalDate
Jump to navigation
Jump to search
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