Module:Infobox/Faction

De Starfield Wiki
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(),
    }
}