Module:Stats

From Super Fantasy Kingdom Wiki
Jump to navigation Jump to search
Template-info.svg Documentation

Displays stats for units. Call with Template:Stats, code is in Module:Stats.

Parameters

  • inline: If not empty stats will be shown in one line, else in a table format
  • hp: Health
  • ma: Mana
  • sh: Shield
  • pd: Physical Defense
  • md: Magical Defense
  • dm: Damage
  • cr: Critical Chance
  • ra: Range
  • cd: Cooldown
  • ar: Area
  • kb: Knockback
  • sp: Speed
  • du: Duration
  • rg: Rage
  • gr: Greed
  • rr: Reroll
  • ba: Banish
  • cu: Curse

Examples

{{stats|hp=33|dm=8|sh=4|cr=2%|pd=20%|md=10%}}
Damage.png8
Health.png33
Shield.png4
Critical Chance.png2%
Physical Defense.png20%
Magical Defense.png10%
{{stats|hp=20.5|ra=8.33 m|cd=1.2 s|cr=2%}}
Health.png20.5
Critical Chance.png2%
Cooldown.png1.2s
Range.png8.33m
{{stats|hp=33|dm=8|sh=4|cr=2%|pd=20%|md=10%|inline=1}}

Damage.png 8 • Health.png 33 • Shield.png 4 • Critical Chance.png 2% • Physical Defense.png 20% • Magical Defense.png 10%

{{stats
| first = Base stats
| second = Maxed<br/>Base stats
| dm = 5
| dm2 = 6.25
| dmGain = 1
| hp = 11
| hp2 = 14.3
| hpGain = 1
| sh = 13 m
| sh2 = 16.9 m
| shGain = 2
| cr = 5%
| cr2 = 5.63%
| crGain = 1
| pd = 0%
| pd2 = 15%
| pdGain = 3
| md = 0%
| md2 = 15%
| mdGain = 3
}}
Base statsMaxed
Base stats
Damage.png5StatGain1.png6.25
Health.png11StatGain1.png14.3
Shield.png13mStatGain2.png16.9m
Critical Chance.png5%StatGain1.png5.63%
Physical Defense.png0%StatGain3.png15%
Magical Defense.png0%StatGain3.png15%

local p = {}

local statNames = require ('Module:Stats/StatNames')

function p.stats(f)
	return p.create(f:getParent().args)
end

function p.create(args)	
	local usedStats = {}
	local useInline = args.inline ~= nil
	local useInlineBlock = args.inlineBlock ~= nil
	local useGain = args.first ~= nil and args.second ~= nil
	
	for _, statNames in ipairs(statNames) do
		local statAbbreviation = statNames[1]
		local statValue = args[statAbbreviation]
		if statValue ~= nil and statValue ~= '' then
			local statName = statNames[2]
			local secondValue = ''
			local gain = ''
			if useGain then
				secondValue = args[statAbbreviation..'2']
				gain = args[statAbbreviation..'Gain']
				table.insert(usedStats, p.statEntryFormatGain(statName, statValue, secondValue, gain))
			else
				table.insert(usedStats, p.statEntryFormat(statName, statValue, useInline, true))
			end
		end
	end
	
	if #usedStats == 0 then
	  return ''
	end
	
	if useInline then
	  -- one line, separated by bullet points
	  return table.concat(usedStats, ' &bull; ')
	end
		
	-- table format
	if useGain then
		return '<table class="plain-table" style="text-align:left; display:inline-block; border-spacing: 0; border: 2px solid gray; padding: 1em">'..
			'<tr><td></td><td colspan=3 style="text-align: center; font-weight: bold">'..args.first..'</td><td></td><td colspan=3 style="text-align: center; font-weight: bold">'..args.second..'</td></tr>'..
			'<tr>'..table.concat(usedStats, '</tr><tr>')..'</tr></table>'
	end
	
	local inlineBlockStyle = ''
	if useInlineBlock then inlineBlockStyle = ' display:inline-block;' end
	
	return '<table class="plain-table" style="text-align:left; border-spacing: 0;'..inlineBlockStyle..'"><tr>'..
		table.concat(usedStats, '</tr><tr>')..'</tr></table>'
end

function p.statEntryFormat(name, val, inline, withIcon)
	if inline then
		return '[[File:'..name..'.png|link='..name..'|16x16px]]&nbsp;'..val
	else
		local wholeNumberPart, decimalPart, unit  = string.match(val, '^(%d*)(%.?%d*) ?(.*)$')
		local iconColumn = ''
		if withIcon then
			iconColumn = '<td style="padding-right: 0.3em;">[[File:'..name..'.png|link='..name..'|16x16px]]</td>'
		end
		return iconColumn..'<td style="text-align: right; padding: 0">'..
			wholeNumberPart..'</td><td style="padding: 0">'..decimalPart..'</td><td style="padding-left: 0.2em">'..unit..'</td>'
	end
end

function p.statEntryFormatGain(name, val, secondVal, gain)
	local gainCell = ''
	gain = tonumber(gain)
	if gain ~= nil and gain >= 0 then
		gainCell = '<td style="padding: 0 1em;">[[File:StatGain'..gain..'.png|12px]]</td>'
	end
	return p.statEntryFormat(name, val, false, true)..
		gainCell..
		p.statEntryFormat('', secondVal, false, false)
end

return p