Module:UnlockChalDate: Difference between revisions

From SilentBlue.RemyWiki
Jump to navigation Jump to search
(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...")
 
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p={}
local p={}
local color={
local color={
     [300] = 'style="background:#adff2f;" | ',
     -- [300] = 'style="background:#adff2f;" | ',
     [100] = 'style="background:#adff2f;" | ',
     -- [100] = 'style="background:#adff2f;" | ',
     [50] = 'style="background:#f08080;" | ',
     [150] = 'style="background:#f08080;" | ',
     [10] = 'style="background:#da70d6;" | ',
     [50] = 'style="background:#da70d6;" | ',
     [1] = 'style="background:#da70d6;" | '
     [10] = 'style="background:#da70d6;" | '
}
}
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}))
end
end
local function getColor(life, ult)
    if life == 10 and ult == "y" then
        return 'style="background:#823434; color:white;" | '
    end
    return color[life]
end
function p.UnlockChalDate(frame)
function p.UnlockChalDate(frame)
     args=frame:getParent().args
     args=frame:getParent().args
     day=DateDiffRaw({args[1],args[2],args[3]})
     day=DateDiffRaw({args[1],args[2],args[3]}) + 1
     if day >= 28 then life = 300
     --if day >= 28 then life = 300
     elseif day >= 21 then life = 100
     -- elseif day >= 21 then life = 100
     elseif day >= 14 then life = 150
     if day >= 7 then life = 150
     elseif day >= 7 then life = 50
     elseif day >= 4 then life = 50
     else life = 10 end
     else life = 10 end
     return args.ult
     return args[1]..'/'..args[2]..'/'..args[3]..' || '..getColor(life, args.ult or "n")..life
end
end
return p
return p

Latest revision as of 12:15, 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;" | ',
    [150] = 'style="background:#f08080;" | ',
    [50] = 'style="background:#da70d6;" | ',
    [10] = 'style="background:#da70d6;" | '
}
local function DateDiffRaw(args)
    return tonumber(mw.text.trim(mw.getCurrentFrame():expandTemplate{title='DateDiffRaw',args=args}))
end

local function getColor(life, ult)
    if life == 10 and ult == "y" then
        return 'style="background:#823434; color:white;" | '
    end
    return color[life]
end 

function p.UnlockChalDate(frame)
    args=frame:getParent().args
    day=DateDiffRaw({args[1],args[2],args[3]}) + 1
    --if day >= 28 then life = 300
    -- elseif day >= 21 then life = 100
    if day >= 7 then life = 150
    elseif day >= 4 then life = 50
    else life = 10 end
    return args[1]..'/'..args[2]..'/'..args[3]..' || '..getColor(life, args.ult or "n")..life
end
return p