« Module:Infobox/Faction » : différence entre les versions

De Starfield Wiki
Aucun résumé des modifications
maintenance
 
Ligne 1 : Ligne 1 :
local general = require("Module:Infobox/Fonctions")
return {
return {
     parts = {
     parts = {
         {
         general.title(),
            type = "title",
         general.image(),
            value = "titre",
            subtitle = "sous-titre",
         },
        {
            type = "images",
            imageparameters = {"image", "image2", "image3", "image4", "image5"},
            captionparameter = "légende",
        },
         {
         {
             type = "table",
             type = "table",
Ligne 49 : Ligne 43 :
                 {type = "row", label = "Division", value = "divisions"},
                 {type = "row", label = "Division", value = "divisions"},
                 {type = "row", label = "Relation", value = "relations"},
                 {type = "row", label = "Relation", value = "relations"},
             }
             },
         },
         },
        general.creation_kit(),
     }
     }
}
}

Dernière version du 25 novembre 2023 à 06:20

Documentation[voir] [modifier] [purger]
local general = require("Module:Infobox/Fonctions")

return {
    parts = {
        general.title(),
        general.image(),
        {
            type = "table",
            title = "Politique",
            rows = {
                {type = "row", label = "Type", value = "type"},
                {type = "row", label = "Gouvernement", value = "gouvernement"},
                {type = "row", label = "Structure", value = "structure"},
                {type = "row", label = "Dissolution", value = "dissolution"},
            }
        },
        {
            type = "table",
            title = "Société",
            rows = {
                {type = "row", label = "Fondateurs", value = "fondateurs"},
                {type = "row", label = "Chefs", value = "chefs"},
                {type = "row", label = "Membres notables", value = "membres"},
            }
        },
        {
            type = "table",
            title = "Territoires",
            rows = {
                {type = "row", label = "Capitale", value = "capitale"},
                {type = "row", label = "Territoires", value = "territoires"},
                {type = "row", label = "Quartier-général", value = "qg"},
                {type = "row", label = "Centres majeurs", value = "majeurs"},
                {type = "row", label = "Lieux notables", value = "lieux"},
                {type = "row", label = "Systèmes", value = "systèmes"},
            }
        },
        {
            type = "table",
            title = "Relations et associations",
            rows = {
                {type = "row", label = "Parent", value = "parents"},
                {type = "row", label = "Division", value = "divisions"},
                {type = "row", label = "Relation", value = "relations"},
            },
        },
        general.creation_kit(),
    }
}