View source for Module:DropsLineTest
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
-- Define a function to generate output numbers and colored cells based on the input
function p.generateOutput(frame)
local inputNumber = tonumber(frame.args[1]) or 0
local output = {}
-- Add the input number with color
table.insert(output, "|{{Color cell|#FFFFFF}}|1/" .. inputNumber)
-- Calculate and add percentages with colored cells
table.insert(output, "|{{Color cell|#FFCCCC}}|1/" .. (inputNumber * 0.85)) -- 10%
table.insert(output, "|{{Color cell|#FF9999}}|1/" .. (inputNumber * 0.75)) -- 20%
table.insert(output, "|{{Color cell|#FF6666}}|1/" .. (inputNumber * 0.70)) -- 30%
table.insert(output, "|{{Color cell|#FF3333}}|1/" .. (inputNumber * 0.65)) -- 40%
table.insert(output, "|{{Color cell|#FF0000}}|1/" .. (inputNumber * 0.60)) -- 50%
return table.concat(output, '\n')
end
000
1:0
Template used on this page:
Return to Module:DropsLineTest.