Module:PerfChalDate
Jump to navigation
Jump to search
Documentation for this module may be created at Module:PerfChalDate/doc
local p={}
local DateDiff=require("Module:DateDiff").DateDiff
local function PerfChalDate(frame)
args=frame:getParent().args
day=DateDiff(args[1],args[2],args[3])
if day >= 28 then life = 300 end
if day >= 21 then life = 100 end
if day >= 14 then life = 50 end
if day >= 7 then life = 10 end
life = 1
return args[1]..'/'..args[2]..'/'..args[3]..' || '..life
end
return p