Module:Infobox/Configs/Monde
De Nefald
Autres actions
La documentation pour ce module peut être créée à Module:Infobox/Configs/Monde/doc
local config = {
titre = function(args)
return args.nom or '{{PAGENAME}}'
end,
image = function(args)
if args.image then
return '[[Fichier:' .. args.image .. '|300px]]'
end
return nil
end,
sections = {
{
titre = 'Spécificités',
champs = {
{ cle = 'seed', label = 'Seed' },
{ cle = 'monde', label = 'Type de monde' },
{ cle = 'x', label = 'Coordonnée X' },
{ cle = 'y', label = 'Coordonnée Y' },
{ cle = 'z', label = 'Coordonnée Z' }
}
},
{
titre = 'Informations',
champs = {
{ cle = 'status', label = 'Status' },
{ cle = 'difficulte', label = 'Difficulté' },
{ cle = 'dimensions', label = 'Dimensions' }
}
},
{
titre = 'Accès et Permissions',
champs = {
{ cle = 'acces', label = 'Accessibilité' }
}
}
}
}
return config