Module:Spellbook
This module generates the spellbook tables in the pages of the category Category:Book, and the lists of spells in the Book page.
Required by: Template:Spellbook and Template:Spellbook2.
Requires: Module:Table of spellbooks and Module:Table of spells
local p = {} local function table_has_value(t, v) if t ~= nil then for _,x in pairs(t) do if x == v then return true end end end return false end function p.spellbook_table(frame) local data = mw.loadData('Module:Table of spellbooks') local book = frame.args[1] if not book then return "" end local result = [==[{| cellpadding="5" border="1" |- align="center" ! Tile || Spell || Type || Level ]==] for _,sp in ipairs(data[book]) do result = result .. "|-\n| " .. sp.image .. " || " .. sp.letter .. " - [[" .. sp.name .. "]] || " .. sp.schools .. " || " .. sp.level .. "\n" end result = result .. "|}\n" return result end function p.short_spell_list(frame) local data = mw.loadData('Module:Table of spellbooks') local book = frame.args[1] if not book then return "" end local school = frame.args[2] local spell_data = nil if school then spell_data = mw.loadData('Module:Table of spells') end local result = "'''[[" .. book .. "]]''': " local spell_list = {} for _,sp in ipairs(data[book]) do if school == nil or table_has_value(spell_data[sp.name]["schools"], school) then table.insert(spell_list, "[[".. sp.name .. "]]") end end result = result .. table.concat(spell_list, ", ") return result end return p