ElEditors, Interface administrators, Administrators
85,550
edits
No edit summary Tag: Reverted |
m (add i18n) |
||
(13 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
-- pystart | -- pystart | ||
require('Module:CommonFunctions') | require('Module:CommonFunctions') | ||
local i18n = require('Module:I18n') | |||
local getArgs = require('Module:Arguments').getArgs | local getArgs = require('Module:Arguments').getArgs | ||
local getTranslations = i18n.getTranslations | |||
local p = {} | local p = {} | ||
-- Main process | -- Main process | ||
function p.main(frame) | function p.main(frame) | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local is_rose = args[1] == 'Rose' and args.ecp == 'true' | local tr = getTranslations(frame, 'Template:Traits', args.lang, true) | ||
local is_rose = args[1] == 'Rose' and args.ecp == 'true' | |||
function translate(key) | |||
return i18n.translate(tr, key) | |||
end | |||
-- Argument init | -- Argument init | ||
Line 22: | Line 29: | ||
-- Dictionary for headers | -- Dictionary for headers | ||
local prop = { 'MP Usage', 'Cooldown', 'Duration', 'MP Recovery', 'Max Hits' | local prop = { | ||
is_rose and translate('ECP Usage') or translate('MP Usage'), | |||
translate('Cooldown'), | |||
translate('Duration'), | |||
is_rose and translate('ECP Recovery') or translate('MP Recovery'), | |||
translate('Max Hits'), | |||
translate('Effects'), | |||
} | |||
local prop_short = { 'mp', 'cd', 'duration', 'mp_recovery', 'hits', 'effects', 'chance' } | |||
local | local OPTIONS = { | ||
lang_suffix = args.lang and ('/' .. args.lang) or '', | |||
lang_append = args.lang ~= nil and args.lang ~= '' | |||
} | |||
local STR = { | local STR = { | ||
Line 44: | Line 58: | ||
POWERFUL = 'Powerful', | POWERFUL = 'Powerful', | ||
USEFUL = 'Useful', | USEFUL = 'Useful', | ||
SEC = ' Seconds', | SEC = 'Seconds', | ||
MP = ' MP', | MP = 'MP', | ||
ECP = ' ECP' | ECP = 'ECP', | ||
PERSISTENT = 'Persistent', | |||
PERSISTENT2 = 'Persistent2' | |||
} | } | ||
Line 54: | Line 70: | ||
{ STR.KB1 }, | { STR.KB1 }, | ||
{ STR.REGEN1 }, | { STR.REGEN1 }, | ||
{ STR.USEFUL } | { STR.USEFUL, STR.PERSISTENT2 }, | ||
{ STR.KB2 } | |||
} | } | ||
Line 66: | Line 83: | ||
}, | }, | ||
[STR.CRITICAL] = { | [STR.CRITICAL] = { | ||
mp = 120 | mp = (args['def_ignore1'] ~= nil or args['def_ignore2'] ~= nil) and 100 or 120 | ||
}, | }, | ||
[STR.HASTE] = { | [STR.HASTE] = { | ||
Line 91: | Line 108: | ||
[STR.USEFUL] = { | [STR.USEFUL] = { | ||
dmg = 80 | dmg = 80 | ||
}, | |||
[STR.PERSISTENT2] = { | |||
dmg = 100 | |||
} | } | ||
} | } | ||
Line 98: | Line 118: | ||
return char:gsub('/', '') | return char:gsub('/', '') | ||
end | end | ||
local trait_table = mw.html.create('div'):attr('class', 'content-table'):tag('table'):attr({ | local trait_table = mw.html.create('div'):attr('class', 'content-table'):tag('table'):attr({ | ||
Line 132: | Line 150: | ||
tr4 = new_row() | tr4 = new_row() | ||
-- Add indicator headers | -- Add indicator headers | ||
tr1:tag('th'):wikitext('Mode'):attr('rowspan', 2) | tr1:tag('th'):wikitext(translate('Mode')):attr('rowspan', 2) | ||
tr3:tag('td'):wikitext(frame:expandTemplate { | tr3:tag('td'):wikitext(frame:expandTemplate { | ||
title = 'PvE' | title = translate('PvE') | ||
}) | }) | ||
tr4:tag('td'):wikitext(frame:expandTemplate { | tr4:tag('td'):wikitext(frame:expandTemplate { | ||
title = 'PvP' | title = translate('PvP') | ||
}) | }) | ||
end | end | ||
Line 143: | Line 161: | ||
-- Loop through 2 input traits. | -- Loop through 2 input traits. | ||
for trait_count, trait_name in ipairs(traits) do | for trait_count, trait_name in ipairs(traits) do | ||
local th = tr1:tag('th'):wikitext(trait_name:gsub( | local th = tr1:tag('th'):wikitext(trait_name:gsub(translate(STR.PERSISTENT) .. 2, translate(STR.PERSISTENT)) .. ' ' .. skill); | ||
local th_effect; | local th_effect; | ||
local th_skilltext; | local th_skilltext; | ||
Line 151: | Line 169: | ||
for detail_key, detail in ipairs(details) do | for detail_key, detail in ipairs(details) do | ||
if not th_effect then | if not th_effect then | ||
th_effect = tr2:tag('th'):wikitext('Attribute Effect'); | th_effect = tr2:tag('th'):wikitext(translate('Attribute Effect')); | ||
end | end | ||
if indexOf(trait_name, detail) then | if indexOf(trait_name, detail) then | ||
local th_detail = tr2:tag('th'):wikitext(prop[detail_key]); | local th_detail = tr2:tag('th'):wikitext(translate(prop[detail_key])); | ||
th:attr('colspan', tonumber(th:getAttr('colspan') or 1) + 1) | th:attr('colspan', tonumber(th:getAttr('colspan') or 1) + 1) | ||
end | end | ||
end | end | ||
-- Unnamed argument. | -- Unnamed argument. | ||
Line 191: | Line 193: | ||
if not th_skilltext then | if not th_skilltext then | ||
th_skilltext = tr3:tag('td'):attr('rowspan', has_pvp_values and 2 or 1):wikitext(frame:expandTemplate { | th_skilltext = tr3:tag('td'):attr('rowspan', has_pvp_values and 2 or 1):wikitext(frame:expandTemplate { | ||
title = 'SkillText', | title = translate('SkillText'), | ||
args = { | args = { | ||
trait_name, | trait_name, | ||
Line 231: | Line 233: | ||
suffix = STR.SEC | suffix = STR.SEC | ||
end | end | ||
suffix = suffix and (' ' .. suffix) or '' | |||
local base_detail = args[short_detail_improved .. modeSuffix] | local base_detail = args[short_detail_improved .. modeSuffix] | ||
Line 236: | Line 239: | ||
local function calcEndValue(base) | local function calcEndValue(base) | ||
local end_value; | local end_value; | ||
if tonumber( | if base and tonumber(base) == nil then | ||
end_value = base | end_value = base | ||
else | else | ||
end_value = (tonumber(multiplier) / 100) * tonumber(base or -1) | end_value = (tonumber(multiplier) / 100) * tonumber(base or -1) | ||
Line 254: | Line 257: | ||
title = 'Tt', | title = 'Tt', | ||
args = { calcEndValue(enhanced_detail) .. "'''", | args = { calcEndValue(enhanced_detail) .. "'''", | ||
"Final Enhanced Skill" } | translate("Final Enhanced Skill") } | ||
} | } | ||
end | end | ||
Line 265: | Line 268: | ||
end | end | ||
local detail_cell = (is_pvp and tr4 or tr3):tag('td'):wikitext(detail_text):attr('rowspan', | local detail_cell = (is_pvp and tr4 or tr3):tag('td'):wikitext(detail_text):attr('rowspan', has_pvp_values and (not args[short_detail_improved .. '_pvp']) and 2 or 1); | ||
end | end | ||
end | end |