62 737
modifications
Page créée avec « local localdata = require('Module:Infobox/Localdata') function buildSuccess(localdata) local success = nil local icon = require('Module:Icône') if localdata['achèv… » |
Harmonisation des identifiants techniques |
||
(5 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 5 : | Ligne 5 : | ||
local icon = require('Module:Icône') | local icon = require('Module:Icône') | ||
if localdata[' | if localdata['succès'] then | ||
success = localdata[' | success = localdata['succès'] | ||
end | end | ||
local gamerscore = localdata['gamerscore'] | |||
local trophy = localdata['type de trophée'] | |||
if gamerscore or trophy then | |||
if success == nil then | if success == nil then | ||
success = mw.title.getCurrentTitle().text | success = mw.title.getCurrentTitle().text | ||
Ligne 16 : | Ligne 19 : | ||
success = success ..'<div style="float:right;padding-left:15px;position:relative;white-space:nowrap;">' | success = success ..'<div style="float:right;padding-left:15px;position:relative;white-space:nowrap;">' | ||
if | if gamerscore then | ||
success = success ..'<span style="padding-left:4px;">'.. icon. | success = success ..'<span style="padding-left:4px;">'.. icon._build({ 'gamerscore' }) ..'</span>' | ||
success = success ..'<span style="padding-left: 2px;position:relative;top:1px;">'.. | success = success ..'<span style="padding-left: 2px;position:relative;top:1px;">'.. gamerscore ..'</span>' | ||
end | end | ||
if | if trophy then | ||
success = success ..'<span style="padding-left:4px;">'.. icon. | success = success ..'<span style="padding-left:4px;">'.. icon._build({ 'trophéeps3' }) ..'</span>' | ||
success = success ..'<span style="padding-left: 2px;position:relative;top:1px;">'.. | success = success ..'<span style="padding-left: 2px;position:relative;top:1px;">'.. trophy ..'</span>' | ||
end | end | ||
Ligne 39 : | Ligne 42 : | ||
{ type = 'row', label = 'Tâche', value = 'tâche' }, | { type = 'row', label = 'Tâche', value = 'tâche' }, | ||
{ type = 'row', label = 'Requiert', value = 'requiert' }, | { type = 'row', label = 'Requiert', value = 'requiert' }, | ||
{ type = 'row', label = 'Récompense', value = ' | { type = 'row', label = 'Récompense', value = 'récompense' }, | ||
{ type = 'row', label = 'Succès', value = function (localdata) return buildSuccess(localdata) end }, | { type = 'row', label = 'Succès', value = function (localdata) return buildSuccess(localdata) end }, | ||
{ type = 'row', label = ' | { type = 'row', label = 'Répétable', value = 'répétable' }, | ||
{ type = 'row', label = '[[Form ID|Base ID]]', value = ' | { type = 'row', label = '[[Form ID|Base ID]]', value = 'formid' } | ||
}}, | }}, | ||
{ type = 'text', value = 'pied' } | { type = 'text', value = 'pied' } | ||
} | } | ||
} | } |
modifications