Module:Spell: Difference between revisions

From Kronopolis and the Flat Plane
No edit summary
No edit summary
Line 17: Line 17:


     table.sort(ordered_spells)
     table.sort(ordered_spells)
     for level_index, spells in ordered_spells do
     for level_index in ordered_spells do
        local spells = all_spells.spells[level_index]
         table.insert(out, "| '''" .. formatLevel(level_index) .. "''' \n|")
         table.insert(out, "| '''" .. formatLevel(level_index) .. "''' \n|")
         if #spells > 0 then
         if #spells > 0 then

Revision as of 15:57, 1 March 2023

Usage

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

local p = {}

function p.listDomain(frame)
    local  json = frame.args[1]
    json = firstToUpper(json)
    json = 'Module:Spell/Domain/' .. json .. '.json'
    local all_spells = mw.loadJsonData(json)

    local out = {}

    table.insert(out, '{| class="wikitable"\n! Level !! Spells\n|-\n')

    local ordered_spells = {}
    for spell_lv in pairs(all_spells.spells) do
        table.insert(ordered_spells, spell_lv)
    end

    table.sort(ordered_spells)
    for level_index in ordered_spells do
        local spells = all_spells.spells[level_index]
        table.insert(out, "| '''" .. formatLevel(level_index) .. "''' \n|")
        if #spells > 0 then
            for spell_index, spell in ipairs(spells) do
                if spell_index > 1 then table.insert(out, "<br>") end
                table.insert(out, "[[" .. spell .. "]] ")
            end
        end
        table.insert(out, '\n|-')
    end
    table.insert(out, '|}')

    return table.concat(out)
end

function firstToUpper(str)
    return (str:gsub("^%l", string.upper))
end

function formatLevel(lv)
    local str
    if lv == 0 then str = 'Cantrip' 
    elseif lv == 1 then str = '1st' 
    elseif lv == 2 then str = '2nd' 
    elseif lv == 3 then str = '3rd' 
    else str = lv .. 'th'
    end
    return str
end

return p