Module:Damage

From Elwiki
Revision as of 00:37, 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
   local t = table.concat(t, "\n")
   return t
end
return p