« Module:Infobox/Lieu » : différence entre les versions
Page créée avec « localdata = require( "Module:Infobox/Localdata" ) -- sujet local subject = localdata['type'] or 'Jeu vidéo' subjects = { ["jeu vidéo"] = "Jeu vidéo", ["jeu de rôle"] = "Jeu de rôle", ["jeu de plateau"] = "Jeu de plateau", ["fangame"] = "''Fangame''" } subject = subjects[subject] or 'Jeu vidéo' return { parts = { { type = "title", value = "nom", subtitle = "sous-titre", icon = "icône", subhead = { subject = subject, link = "Série Fallout" }}, {... » |
Proposition d'ajout d'un champ "Nom de cellule" |
||
(23 versions intermédiaires par 4 utilisateurs non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
local general = require("Module:Infobox/Fonctions") | |||
return { | return { | ||
parts = { | |||
general.title(), | |||
general.image(), | |||
{ | |||
type = "table", | |||
title = "Informations générales", | |||
rows = { | |||
{type = "row", label = "Type", value = "type"}, | |||
{type = "row", label = "Système", value = "système"}, | |||
{type = "row", label = "Faction", value = "faction"}, | |||
{type = "row", label = "Planète", value = "planète"}, | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Technique", | |||
collapseparameters = {collapsible = true, collapsed = true}, | |||
rows = { | |||
{type = "row", label = "Nom de cellule", value = "Nom de cellule"}, | |||
{type = "row", label = "Proto ID", value = "proto"}, | |||
{type = "row", label = "[[Editor ID]]", value = "editorid"}, | |||
{type = "row", label = "[[Form ID]]", value = "formid"}, | |||
}, | |||
}, | |||
} | |||
} | } |
Dernière version du 22 juin 2024 à 23:32
local general = require("Module:Infobox/Fonctions")
return {
parts = {
general.title(),
general.image(),
{
type = "table",
title = "Informations générales",
rows = {
{type = "row", label = "Type", value = "type"},
{type = "row", label = "Système", value = "système"},
{type = "row", label = "Faction", value = "faction"},
{type = "row", label = "Planète", value = "planète"},
}
},
{
type = "table",
title = "Technique",
collapseparameters = {collapsible = true, collapsed = true},
rows = {
{type = "row", label = "Nom de cellule", value = "Nom de cellule"},
{type = "row", label = "Proto ID", value = "proto"},
{type = "row", label = "[[Editor ID]]", value = "editorid"},
{type = "row", label = "[[Form ID]]", value = "formid"},
},
},
}
}