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

local p = {}
p.getTotal = function(frame)
    local k = {}
    for name, value in frame.args do
        k[name] = value
    end
    return table.concat(k, "\n")
end
return p