Module:UnlockChalDate: Difference between revisions

From SilentBlue.RemyWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
local color={
local color={
     -- [300] = 'style="background:#adff2f;" | ',
     -- [300] = 'style="background:#adff2f;" | ',
     -- [100] = 'style="background:#adff2f;" | ',
     [4] = 'style="background:#ffa500;" | ',
     [150] = 'style="background:#f08080;" | ',
     [3] = 'style="background:#f08080;" | ',
     [50] = 'style="background:#da70d6;" | ',
     [2] = 'style="background:#da70d6;" | ',
     [10] = '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(life, ult)
local function getColor(mode, ult)
     if life == 10 and ult == "y" then
     if mode == 1 and ult == "y" then
         return 'style="background:#823434; color:white;" | '
         return 'style="background:#823434; color:white;" | '
     end
     end
     return color[life]
     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
     -- elseif day >= 21 then life = 100
     if day >= 14 then mode = 4
     if day >= 7 then life = 150
     elseif day >= 7 then mode = 3
     elseif day >= 4 then life = 50
     elseif day >= 4 then mode = 2
     else life = 10 end
     else mode = 1 end
     return args[1]..'/'..args[2]..'/'..args[3]..' || '..getColor(life, args.ult or "n")..life
     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