705
modifications
Page créée avec « local localdata = require('Module:Infobox/Localdata') local keyWords = { ['minerai'] = { subject = 'Minerai', link = 'Minerais' }, } function buildSubHead(localdata, keyWordType, default) local subhead = default if localdata['type'] and keyWords[localdata['type']:lower()] then local keyWord = keyWords[localdata['type']:lower()] if keyWord then subhead = keyWord[keyWordType] end end return subhead end return { parts = { { type = 'title', val... » |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
local | local general = require("Module:Infobox/Fonctions") | ||
return { | return { | ||
parts = { | |||
general.title(), | |||
general.image(), | |||
{ | |||
type = "table", | |||
title = "Propriétés", | |||
rows = { | |||
{type = "row", label = "Utilisations", value = "utilisations"}, | |||
{type = "row", label = "Poids", value = "poids"}, | |||
{type = "row", label = "Valeur", value = "valeur"}, | |||
{type = "row", label = "Effets", value = "effets"} | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Artisanat", | |||
rows = { | |||
{type = "row", label = "Plan", value = "plan"}, | |||
{type = "row", label = "Composant de", value = "composant de"}, | |||
{type = "row", label = "Débloque", value = "débloque"}, | |||
{type = "row", label = "Modifie", value = "modifie"} | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Missions", | |||
rows = { | |||
{type = "row", label = "Missions", value = "missions"}, | |||
{type = "row", label = "Événements", value = "événements"} | |||
} | |||
}, | |||
general.creation_kit() | |||
} | |||
} | } |