Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.

La documentation pour ce module peut être créée à Module:Infobox/Configs/doc

local configs = {
    monde = {
        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 = 'spawn', label = 'Spawn' }, -- Champ spécial pour les coordonnées
                }
            },
            {
                titre = 'Informations',
                champs = {
                    { cle = 'status', label = 'Status' },
                    { cle = 'difficulte', label = 'Difficulté' }
                }
            }
        }
    }
}

return configs