Module:Damage: Difference between revisions

From Elwiki
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}
p.loop = function(frame)
p.loop = function(frame)
local stage = frame.args.stage
  for key, value in pairs(frame.args) do
local rows = {}
      print(key, " -- ", value)
-- the actual looping part
  end
for value in mw.text.gsplit(stage, ',') do
table.insert(rows, '|' .. value)
end
return ' {|\n' .. table.concat(rows, '\n|-\n') .. '\n|}'
end
end
return p
return p

Revision as of 00:32, 20 March 2022

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

local p = {}
p.loop = function(frame)
   for key, value in pairs(frame.args) do
       print(key, " -- ", value)
   end
end
return p