« Module:Infobox/Planète » : différence entre les versions
mAucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
return { | return { | ||
parts = { | |||
{ | |||
type = "title", | |||
value = "titre", | |||
subtitle = "sous-titre", | |||
}, | |||
{ | |||
type = "images", | |||
imageparameters = {"image", "image2", "image3", "image4", "image5"}, | |||
captionparameter = "légende", | |||
}, | |||
{ | |||
type = "table", | |||
title = "Caractéristiques", | |||
rows = { | |||
{type = "row", label = "Système", value = "système"}, | |||
{type = "row", label = "Type", value = "type"}, | |||
{type = "row", label = "Gravité", value = "gravité"}, | |||
{type = "row", label = "Température", value = "température"}, | |||
{type = "row", label = "Atmosphère", value = "atmosphère"}, | |||
{type = "row", label = "Magnétosphère", value = "magnétosphère"}, | |||
{type = "row", label = "Faune", value = "faune"}, | |||
{type = "row", label = "Flore", value = "flore"}, | |||
{type = "row", label = "Eau", value = "eau"}, | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Colonies", | |||
rows = { | |||
{type = "row", label = "Faction", value = "faction"}, | |||
{type = "row", label = "Lieu", value = "lieu"} | |||
}, | |||
} | |||
} | |||
} | } |
Version du 10 janvier 2023 à 16:25
return {
parts = {
{
type = "title",
value = "titre",
subtitle = "sous-titre",
},
{
type = "images",
imageparameters = {"image", "image2", "image3", "image4", "image5"},
captionparameter = "légende",
},
{
type = "table",
title = "Caractéristiques",
rows = {
{type = "row", label = "Système", value = "système"},
{type = "row", label = "Type", value = "type"},
{type = "row", label = "Gravité", value = "gravité"},
{type = "row", label = "Température", value = "température"},
{type = "row", label = "Atmosphère", value = "atmosphère"},
{type = "row", label = "Magnétosphère", value = "magnétosphère"},
{type = "row", label = "Faune", value = "faune"},
{type = "row", label = "Flore", value = "flore"},
{type = "row", label = "Eau", value = "eau"},
}
},
{
type = "table",
title = "Colonies",
rows = {
{type = "row", label = "Faction", value = "faction"},
{type = "row", label = "Lieu", value = "lieu"}
},
}
}
}