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

De Starfield Wiki
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... »
 
Aucun résumé des modifications
Balise : Révoqué
Ligne 17 : Ligne 17 :
             title = "Artisanat",
             title = "Artisanat",
             rows = {
             rows = {
            }
        },
        {
            type = "table",
            title = "Technique",
            rows = {
{ type = 'row', label = 'Editor ID', value = 'editor id' },
{ type = 'row', label = '[[Form ID]]', value = 'formid' },
             }
             }
         },
         },

Version du 27 août 2023 à 17:06

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 = {
            }
        },
        {
            type = "table",
            title = "Technique",
            rows = {
			{ type = 'row', label = 'Editor ID', value = 'editor id' },
			{ type = 'row', label = '[[Form ID]]', value = 'formid' },
            }
        },
        general.creation_kit()
    }
}