Module:Infobox/Créature

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

return {
    parts = {
        general.title(),
        general.image(),
        {
            type = "table",
            title = "Caractéristiques",
            rows = {
                {type = "row", label = "Nom scientifique", value = "nom scientifique"},
                {type = "row", label = "Type", value = "type"},
                {type = "row", label = "Variantes", value = "variantes"},
                {type = "row", label = "Tempérament", value = "tempérament"},
                {type = "row", label = "Biomes", value = "biomes"},
                {type = "row", label = "Points de vie", value = "points de vie"},
                {type = "row", label = "Ressource", value = "ressource"},
                {type = "row", label = "Abiletées", value = "abiletées"},
            }
        },
        {
            type = "table",
            title = "Localisation",
            rows = {
                {type = "row", label = "Planètes", value = "planètes"},
                {type = "row", label = "Lieux", value = "lieux"}
            },
        },
        general.creation_kit(),
    }
}