Module:Infobox/Caractéristique

De Les Archives de Vault-Tec
Révision datée du 16 juin 2021 à 08:50 par Kharmitch (discussion | contributions) (Page créée avec « local localdata = require('Module:Infobox/Localdata') local games = require('Module:Jeux') local keyWords = { ['dérivée'] = { subject = 'Statistique dérivée', li… »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
Documentation du module

Ce module contient le paramétrage de l'infobox {{Infobox stat}}.

Documentation transclues de Module:Infobox/Caractéristique/doc.
local localdata = require('Module:Infobox/Localdata')
local games = require('Module:Jeux')

local keyWords = {
	['dérivée']     = { subject = 'Statistique dérivée', link = 'Statistiques dérivées' },
	['primaire']    = { subject = 'Statistique primaire', link = 'Statistiques primaires' },
	['compétence']  = { subject = 'Compétence', link = 'Compétence' }
}

function buildGamesTable(localdata, index)
	local row = { type = 'text' } --fake
	
	if localdata['jeux'..index] then
		local game = games.buildLinksList({ localdata['jeux'..index] })
		
		if game then
			row = { type = 'table', title = game, rows = {
				{ type = 'row', label = 'SPECIAL', value = 'special'..index },
				{ type = 'row', label = 'Exigences', value = 'requiert'..index },
				{ type = 'row', label = 'Rangs', value = 'rangs'..index },
				{ type = 'row', label = 'Effets', value = 'effets'..index },
				{ type = 'row', label = '[[Form ID|Base ID]]', value = 'baseid'..index }
			}}
		end
	end
	
	return row
end

function buildSubHead(localdata, keyWordType, default)
	local subhead = default
	if localdata['type'] and keyWords[localdata['type']:lower()] then
		local keyWord = keyWords[localdata['type']:lower()]
		if keyWord then
			subhead = keyWord[keyWordType]
		end
	end
	return subhead
end

return {
	parts = {
		{ type = 'title', value = 'nom', subtitle = 'sous-titre', icon = 'icône', subhead = { games = 'jeux', subject = buildSubHead(localdata, 'subject', 'Statistique'), link = buildSubHead(localdata, 'link', 'Statistique') }},
		{ type = 'images', imageparameters = { 'image', 'image2', 'image3', 'image4', 'image5' }, captionparameter = { 'légende', 'image desc' }},
		buildGamesTable(localdata, '1'),
		buildGamesTable(localdata, '2'),
		buildGamesTable(localdata, '3'),
		buildGamesTable(localdata, '4'),
		buildGamesTable(localdata, '5'),
		buildGamesTable(localdata, '6'),
		buildGamesTable(localdata, '7'),
		buildGamesTable(localdata, '8'),
		{ type = 'text', value = 'pied' }
	}
}