Difference between revisions of "Module:Drop"
| Line 15: | Line 15: | ||
rarity:attr('style', 'background-color: #b55e0c; color: #fef0e4') | rarity:attr('style', 'background-color: #b55e0c; color: #fef0e4') | ||
elseif args.Rarity == 'Uncommon' then | elseif args.Rarity == 'Uncommon' then | ||
| − | rarity:attr('style', 'background-color: # | + | rarity:attr('style', 'background-color: #d2af2f; color: #fef9de') |
elseif args.Rarity == 'Common' then | elseif args.Rarity == 'Common' then | ||
| − | rarity:attr('style', 'background-color: #64953b; color: # | + | rarity:attr('style', 'background-color: #64953b; color: #edffdf') |
elseif args.Rarity == 'Very rare' then | elseif args.Rarity == 'Very rare' then | ||
rarity:attr('style', 'background-color: #9f261e; color: #feecea') | rarity:attr('style', 'background-color: #9f261e; color: #feecea') | ||
Revision as of 10:12, 9 November 2025
Documentation for this module may be created at Module:Drop/doc
local export = {}
local item = require('Module:Item')
function export.main(frame)
local args = frame:getParent().args
local row = mw.html.create('tr'):addClass('coa-drop-row')
row:tag('td'):attr('style', 'text-align:left'):wikitext(item.inline(args.Name))
row:tag('td'):wikitext(args.Quantity)
local text = args.Rate and args.Rate or args.Rarity
local rarity = row:tag('td'):wikitext(text)
if args.Rarity == 'Rare' then
rarity:attr('style', 'background-color: #b55e0c; color: #fef0e4')
elseif args.Rarity == 'Uncommon' then
rarity:attr('style', 'background-color: #d2af2f; color: #fef9de')
elseif args.Rarity == 'Common' then
rarity:attr('style', 'background-color: #64953b; color: #edffdf')
elseif args.Rarity == 'Very rare' then
rarity:attr('style', 'background-color: #9f261e; color: #feecea')
end
return tostring(row)
end
return export