Module:Damage

From Elwiki
Revision as of 00:40, 20 March 2022 by Ritsu (talk | contribs)

Documentation for this module may be created at Module:Damage/doc

local p = {}
p.loop = function(frame)
    local t = {}
    for name, value in frame:argumentPairs() do
        t[name] = value
    end
    t = table.concat(t, ", ")
    return t
end
return p