ElEditors, Interface administrators, Administrators
70,981
edits
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
addField('name', 'Full Name'); | addField('name', 'Full Name'); | ||
end | end | ||
local fields = { | |||
{ | |||
id = 'name', | |||
localize = 'Full Name', | |||
special = true | |||
}, | |||
{ | |||
id = 'class' | |||
}, | |||
{ | |||
id = 'weapon', | |||
dual = true | |||
}, | |||
{ | |||
id = 'age', | |||
dual = true | |||
}, | |||
{ | |||
id = 'race', | |||
dual = true | |||
}, | |||
{ | |||
id = 'role', | |||
dual = true | |||
}, | |||
{ | |||
id = 'village', | |||
localize = 'Location', | |||
dual = true | |||
}, | |||
{ | |||
id = 'Height', | |||
dual = true | |||
}, | |||
{ | |||
id = 'Weight', | |||
dual = true | |||
}, | |||
{ | |||
id = 'Blood', | |||
localize = 'Blood Type', | |||
dual = true | |||
}, | |||
{ | |||
id = 'groups', | |||
localize = 'Affiliations', | |||
collapsed = true | |||
}, | |||
{ | |||
id = 'VA', | |||
localize = 'Voice Actors', | |||
dual = true, | |||
collapsed = true | |||
} | |||
} | |||
addFields(fields); | |||
return tostring(infobox); | return tostring(infobox); |