Module:Infobox/Consommable

De Starfield Wiki
Révision datée du 9 mai 2023 à 19:20 par Kims (discussion | contributions) (Page créée avec « local general = require("Module:Infobox/Fonctions") return { parts = { general.title(), general.image(), { type = "table", title = "Propriétés", rows = { {type = "row", label = "Poids", value = "poids"}, {type = "row", label = "Valeur", value = "valeur"}, } }, { type = "table", title = "Artisanat", rows... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
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 = "Poids", value = "poids"},
                {type = "row", label = "Valeur", value = "valeur"},
            }
        },
        {
            type = "table",
            title = "Artisanat",
            rows = {
            }
        },
        general.creation_kit()
    }
}