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

De Starfield Wiki
Aucun résumé des modifications
Aucun résumé des modifications
 
(2 versions intermédiaires par un autre utilisateur non affichées)
Ligne 9 : Ligne 9 :
             title = "Propriétés",
             title = "Propriétés",
             rows = {
             rows = {
                {type = "row", label = "Utilisations", value = "utilisations"},
              {type = "row", label = "Symbole", value = "symbole"},
                 {type = "row", label = "Poids", value = "poids"},
                 {type = "row", label = "Poids", value = "poids"},
                 {type = "row", label = "Valeur", value = "valeur"},
                 {type = "row", label = "Valeur", value = "valeur"},
                 {type = "row", label = "Effets", value = "effets"}
                 {type = "row", label = "Rareté", value = "rareté"},
             }
             }
         },
         },
Ligne 19 : Ligne 19 :
             title = "Artisanat",
             title = "Artisanat",
             rows = {
             rows = {
                 {type = "row", label = "Plan", value = "plan"},
                 {type = "row", label = "Matériau de", value = "matériau de"},
                {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"}
             }
             }
         },
         },

Dernière version du 16 septembre 2023 à 01:28

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 = "Symbole", value = "symbole"},
                {type = "row", label = "Poids", value = "poids"},
                {type = "row", label = "Valeur", value = "valeur"},
                {type = "row", label = "Rareté", value = "rareté"},
            }
        },
        {
            type = "table",
            title = "Artisanat",
            rows = {
                {type = "row", label = "Matériau de", value = "matériau de"},
            }
        },
        general.creation_kit()
    }
}