Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Card stats: Difference between revisions

From Sekaipedia
Content added Content deleted
m (added +)
mNo edit summary
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local util = require('Module:Utilities')
local VariablesLua = mw.ext.VariablesLua


local p = {}
local p = {}

local function editIfNil(value, func)
if value and value ~= '' then
if func then
return func(value)
end
return value
end
return string.format(
"<span class=\"plainlinks\">[%s?action=edit ? (edit)]</span>",
tostring(mw.uri.fullUrl(mw.title.getCurrentTitle().text))
)
end



function p.main(frame)
function p.main(frame)
local args = getArgs(frame)
local args = getArgs(frame)
local rarity = args['rarity']
local rarity = args['rarity'] or VariablesLua.var('rarity')
local min_performance = args['min performance']
local minPerformance = args['min performance']
local min_technique = args['min technique']
local minTechnique = args['min technique']
local min_stamina = args['min stamina']
local minStamina = args['min stamina']
local min_power = args['min power']
local minPower = args['min power']


local max_performance = args['max performance']
local maxPerformance = args['max performance']
local max_technique = args['max technique']
local maxTechnique = args['max technique']
local max_stamina = args['max stamina']
local maxStamina = args['max stamina']
local max_power = args['max power']
local maxPower = args['max power']
local max_level = '?'
local maxLevel = '?'
local max_levels = {
local maxLevels = {
['1'] = '20',
['1'] = '20',
['2'] = '30',
['2'] = '30',
['3'] = '50',
['3'] = '50',
['4'] = '60',
['4'] = '60',
['birthday'] = '60'
['birthday'] = '60',
['Birthday'] = '60'
}
}
if rarity ~= nil and rarity ~= '' then
local ss_bonus = nil
maxLevel = maxLevels[rarity] or '?'
local side_story_bonuses = {
['1'] = { 300, 600 },
['2'] = { 450, 900 },
['3'] = { 600, 1500 },
['4'] = { 750, 1800 },
['birthday'] = { 720, 1650 }
}
local mr_bonus = nil
local master_rank_bonuses = {
['1'] = 150,
['2'] = 300,
['3'] = 450,
['4'] = 600,
['birthday'] = 540
}
if rarity ~= nil then
max_level = max_levels[rarity] or '?'
ss_bonus = side_story_bonuses[rarity]
mr_bonus = master_rank_bonuses[rarity]
end
end


assert((tonumber(min_power) or 0) ==
assert((tonumber(minPower) or 0) ==
(tonumber(min_performance) or 0) +
(tonumber(minPerformance) or 0) +
(tonumber(min_technique) or 0) +
(tonumber(minTechnique) or 0) +
(tonumber(min_stamina) or 0))
(tonumber(minStamina) or 0))
assert((tonumber(max_power) or 0) ==
assert((tonumber(maxPower) or 0) ==
(tonumber(max_performance) or 0) +
(tonumber(maxPerformance) or 0) +
(tonumber(max_technique) or 0) +
(tonumber(maxTechnique) or 0) +
(tonumber(max_stamina) or 0))
(tonumber(maxStamina) or 0))


local stat_table = mw.html.create('table'):addClass('wikitable')
local root = mw.html.create('table')
:addClass('wikitable')
stat_table:tag('tr')
:tag('tr')
:tag('th')
:tag('th')
:attr({
:attr('height', '30px')
['width'] = '33%',
['height'] = '30px'
})
:done()
:done()
:tag('th')
:tag('th')
:attr('width', '33%')
:wikitext('Level 1')
:wikitext('Level 1')
:done()
:done()
:tag('th')
:tag('th')
:attr('width', '33%')
:wikitext('Level ' .. maxLevel)
:wikitext('Level ' .. max_level)
:done()
:done()
:done()
:done()
:tag('tr')
:tag('tr')
:tag('td')
:tag('th')
:attr('height', '30px')
:attr('height', '30px')
:wikitext('[[File:Icon performance.png|25px|link=]] Performance')
:wikitext('[[File:Icon performance.png|25px|link=]] Performance')
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(min_performance))
:wikitext(util.editIfNil(minPerformance))
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(max_performance))
:wikitext(util.editIfNil(maxPerformance))
:done()
:done()
:done()
:done()
:tag('tr')
:tag('tr')
:tag('td')
:tag('th')
:attr('height', '30px')
:attr('height', '30px')
:wikitext('[[File:Icon technique.png|25px|link=]] Technique')
:wikitext('[[File:Icon technique.png|25px|link=]] Technique')
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(min_technique))
:wikitext(util.editIfNil(minTechnique))
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(max_technique))
:wikitext(util.editIfNil(maxTechnique))
:done()
:done()
:done()
:done()
:tag('tr')
:tag('tr')
:tag('td')
:tag('th')
:attr('height', '30px')
:attr('height', '30px')
:wikitext('[[File:Icon stamina.png|25px|link=]] Stamina')
:wikitext('[[File:Icon stamina.png|25px|link=]] Stamina')
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(min_stamina))
:wikitext(util.editIfNil(minStamina))
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(max_stamina))
:wikitext(util.editIfNil(maxStamina))
:done()
:done()
:done()
:done()
:tag('tr')
:tag('tr')
:tag('td')
:tag('th')
:attr('height', '30px')
:attr('height', '30px')
:wikitext('Power')
:wikitext('Power')
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(min_power))
:wikitext(util.editIfNil(minPower))
:done()
:done()
:tag('td')
:tag('td')
:wikitext(editIfNil(max_power))
:wikitext(util.editIfNil(maxPower))
:done()
:done()
:done()
:done()
:done()
:done()
return tostring(root)
if rarity then
local heading = mw.html.create('h3'):wikitext('Additional Stats')
local additional = mw.html.create('ul')
:tag('li')
:wikitext('Side Story 1: +' .. ss_bonus[1])
:done()
:tag('li')
:wikitext('Side Story 2: +' .. ss_bonus[2])
:done()
:tag('li')
:wikitext('Master rank: +' .. mr_bonus)
:done()
:done()
return tostring(stat_table) .. tostring(heading) .. tostring(additional)
end
return tostring(stat_table)
end
end



Latest revision as of 07:04, 4 February 2024

Documentation for this module may be created at Module:Card stats/doc

local getArgs = require('Module:Arguments').getArgs
local util    = require('Module:Utilities')
local VariablesLua = mw.ext.VariablesLua

local p = {}

function p.main(frame)
	local args = getArgs(frame)
	
	local rarity = args['rarity'] or VariablesLua.var('rarity')
	
	local minPerformance = args['min performance']
	local minTechnique   = args['min technique']
	local minStamina     = args['min stamina']
	local minPower       = args['min power']

	local maxPerformance = args['max performance']
	local maxTechnique   = args['max technique']
	local maxStamina     = args['max stamina']
	local maxPower       = args['max power']
	
	local maxLevel = '?'
	local maxLevels = {
		['1'] = '20',
		['2'] = '30',
		['3'] = '50',
		['4'] = '60',
		['birthday'] = '60',
		['Birthday'] = '60'
	}
	
	if rarity ~= nil and rarity ~= '' then
		maxLevel = maxLevels[rarity] or '?'
	end

	assert((tonumber(minPower) or 0) == 
		(tonumber(minPerformance) or 0) +
		(tonumber(minTechnique) or 0) +
		(tonumber(minStamina) or 0))
		
	assert((tonumber(maxPower) or 0) == 
		(tonumber(maxPerformance) or 0) +
		(tonumber(maxTechnique) or 0) +
		(tonumber(maxStamina) or 0))

	
	local root = mw.html.create('table')
		:addClass('wikitable')
		:tag('tr')
			:tag('th')
				:attr('height', '30px')
				:done()
			:tag('th')
				:wikitext('Level 1')
				:done()
			:tag('th')
				:wikitext('Level ' .. maxLevel)
				:done()
			:done()
		:tag('tr')
			:tag('th')
				:attr('height', '30px')
				:wikitext('[[File:Icon performance.png|25px|link=]] Performance')
				:done()
			:tag('td')
				:wikitext(util.editIfNil(minPerformance))
				:done()
			:tag('td')
				:wikitext(util.editIfNil(maxPerformance))
				:done()
			:done()
		:tag('tr')
			:tag('th')
				:attr('height', '30px')
				:wikitext('[[File:Icon technique.png|25px|link=]] Technique')
				:done()
			:tag('td')
				:wikitext(util.editIfNil(minTechnique))
				:done()
			:tag('td')
				:wikitext(util.editIfNil(maxTechnique))
				:done()
			:done()
		:tag('tr')
			:tag('th')
				:attr('height', '30px')
				:wikitext('[[File:Icon stamina.png|25px|link=]] Stamina')
				:done()
			:tag('td')
				:wikitext(util.editIfNil(minStamina))
				:done()
			:tag('td')
				:wikitext(util.editIfNil(maxStamina))
				:done()
			:done()
		:tag('tr')
			:tag('th')
				:attr('height', '30px')
				:wikitext('Power')
				:done()
			:tag('td')
				:wikitext(util.editIfNil(minPower))
				:done()
			:tag('td')
				:wikitext(util.editIfNil(maxPower))
				:done()
			:done()
		:done()
	
	return tostring(root)
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.