Module:Spell

From Kronopolis and the Flat Plane
Revision as of 17:46, 23 February 2023 by Wioum (talk | contribs)

Usage

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

local p = {}

function p.getDomainList(frame)
    local page = 'Module:Spell/domain_' .. frame.args[0] .. '.json'
    local data = mw.loadJsonData(page)
    return data
end

return p