Module:Spell: Difference between revisions

From Kronopolis and the Flat Plane
No edit summary
No edit summary
Line 3: Line 3:
function p.getDomainList(frame)
function p.getDomainList(frame)
     local directory = 'Json/Spell/Domain/'
     local directory = 'Json/Spell/Domain/'
     local page = directory .. frame.arg1
     local page = directory .. frame.args[1]
     local data = mw.loadJsonData(page)
     local data = mw.loadJsonData(page)
      
      

Revision as of 13:06, 24 February 2023

Usage

  • {{#invoke:spell|list|domain=}}
  • {{#invoke:spell|list|category=}}

local p = {}

function p.getDomainList(frame)
    local directory = 'Json/Spell/Domain/'
    local page = directory .. frame.args[1]
    local data = mw.loadJsonData(page)
    
    local out = {}

	for idx = 1, 5 do
		table.insert(out, idx)
	end

	return table.concat(out, "<br>")
end

return p