Module:Infobox/Consommable

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 = "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()
    }
}