Module:Infobox/Matériau

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

return {
    parts = {
        general.title(),
        general.image(),
        {
            type = "table",
            title = "Propriétés",
            rows = {
                {type = "row", label = "Utilisations", value = "utilisations"},
                {type = "row", label = "Poids", value = "poids"},
                {type = "row", label = "Valeur", value = "valeur"},
                {type = "row", label = "Effets", value = "effets"}
            }
        },
        {
            type = "table",
            title = "Artisanat",
            rows = {
                {type = "row", label = "Plan", value = "plan"},
                {type = "row", label = "Composant de", value = "composant de"},
                {type = "row", label = "Débloque", value = "débloque"},
                {type = "row", label = "Modifie", value = "modifie"}
            }
        },
        {
            type = "table",
            title = "Missions",
            rows = {
                {type = "row", label = "Missions", value = "missions"},
                {type = "row", label = "Événements", value = "événements"}
            }
        },
        general.creation_kit()
    }
}