Actions

Module

Infobox WickSpell

From ThornsWiki

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

local p = {}
 
function p.default(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		top = tostring(mw.title.getCurrentTitle()),
		topStyle = 'background:#5f5543;color:#FFF;font-family:Metamorphous, serif;line-height:1.25em;',
	} )
	:addRow('Spell Name', frame.args["spell_name"])
	:addRow('Spell Origin', frame.args["spell_type"])
end

return p