20 398
modifications
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(7 versions intermédiaires par un autre utilisateur non affichées) | |||
Ligne 7 : | Ligne 7 : | ||
local perkEffect = localdata['effets aptitude' .. index] | local perkEffect = localdata['effets aptitude' .. index] | ||
if | if perkLink and perkEffect then | ||
row = { type = 'row', label = | row = { | ||
type = 'row', | |||
label = function(localdata) return localdata['aptitude' .. index] end, | |||
value = function(localdata) return localdata['effets aptitude' .. index] end, | |||
} | |||
end | end | ||
Ligne 24 : | Ligne 28 : | ||
{ type = 'row', label = 'Faim', value = 'faim' }, | { type = 'row', label = 'Faim', value = 'faim' }, | ||
{ type = 'row', label = 'Maladie', value = 'maladie' }, | { type = 'row', label = 'Maladie', value = 'maladie' }, | ||
{ type = 'row', label = 'Points de vie', value = 'pv' }, | |||
{ type = 'row', label = 'Radiation', value = 'radiation' }, | { type = 'row', label = 'Radiation', value = 'radiation' }, | ||
{ type = 'row', label = 'Soif', value = 'soif' } | { type = 'row', label = 'Soif', value = 'soif' } | ||
}}, | |||
{ type = 'table', title = 'Effets des aptitudes', collapseparameters = { collapsible = true, collapsed = true }, rows = { | |||
{ type = 'row', label = 'Mutation', value = 'mutation' }, | |||
buildPerkRow(localdata, 1), | |||
buildPerkRow(localdata, 2), | |||
buildPerkRow(localdata, 3), | |||
buildPerkRow(localdata, 4), | |||
buildPerkRow(localdata, 5) | |||
}}, | }}, | ||
{ type = 'table', title = 'Artisanat', rows = { | { type = 'table', title = 'Artisanat', rows = { | ||
Ligne 41 : | Ligne 54 : | ||
{ type = 'row', label = 'Recette', value = 'recette' } | { type = 'row', label = 'Recette', value = 'recette' } | ||
}}, | }}, | ||
{ type = 'table', title = ' | { type = 'table', title = 'Technique', collapseparameters = { collapsible = true, collapsed = true }, rows = { | ||
{ type = 'row', label = 'Prototype ID', value = 'proto' }, | { type = 'row', label = 'Prototype ID', value = 'proto' }, | ||
{ type = 'row', label = 'Editor ID', value = 'editor id' }, | { type = 'row', label = 'Editor ID', value = 'editor id' }, | ||
{ type = 'row', label = '[[Form | { type = 'row', label = '[[Form ID]]', value = 'formid' }, | ||
{ type = 'row', label = 'Fichier message', value = 'message' } | { type = 'row', label = 'Fichier message', value = 'message' } | ||
}}, | }}, |
modifications