Actions

Module

Difference between revisions of "Infobox GaldoriSpell"

From ThornsWiki

 
Line 13: Line 13:
 
)
 
)
 
:addHeader('Quick Facts')
 
:addHeader('Quick Facts')
 +
:addRow('Conversation', frame.args["conversation"])
 
:addRow('Spell Branch', frame.args["branch"])
 
:addRow('Spell Branch', frame.args["branch"])
:addRow('Conversation', frame.args["conversation"])
+
:addRow('Chapter', frame.args["chapter"])
:addRow('Categories', frame.args["categories"])
 
 
:addRow('Spell Effects', frame.args["effects"])
 
:addRow('Spell Effects', frame.args["effects"])
 
 

Latest revision as of 16:29, 4 December 2018

Documentation for this module may be created at Module:Infobox GaldoriSpell/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;',
	} )

:addImage(
		string.format('[[File:%s|250px]]', frame.args["image"]), -- featured image
		frame.args["caption"] -- caption
	)
	:addHeader('Quick Facts')
	:addRow('Conversation', frame.args["conversation"])
	:addRow('Spell Branch', frame.args["branch"])
	:addRow('Chapter', frame.args["chapter"])
	:addRow('Spell Effects', frame.args["effects"])
	
end

return p