Module:PerfChalDate: Difference between revisions
Jump to navigation
Jump to search
Tag: Undo |
m (Maybe this will fix it?) |
||
Line 1: | Line 1: | ||
local p={} | local p={} | ||
local function | local function DateDiffRaw(args) | ||
return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title=' | return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args})) | ||
end | end | ||
function p.PerfChalDate(frame) | function p.PerfChalDate(frame) | ||
args=frame:getParent().args | args=frame:getParent().args | ||
day= | day=DateDiffRaw({args[1],args[2],args[3]}) | ||
if day >= 28 then life = 300 | if day >= 28 then life = 300 | ||
elseif day >= 21 then life = 100 | elseif day >= 21 then life = 100 |
Revision as of 14:34, 23 June 2023
Documentation for this module may be created at Module:PerfChalDate/doc
local p={}
local function DateDiffRaw(args)
return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args}))
end
function p.PerfChalDate(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 = 50
elseif day >= 7 then life = 10
else life = 1 end
return args[1]..'/'..args[2]..'/'..args[3]..' || '..life
end
return p