Bureaucrats, emailconfirmed, Interface administrators, staff, Administrators, translation-admin, translator
2,564
edits
(default Soul Shard shouldn't have 2 blank lines, fix postAttackDamageText, add correct lore to Orb of Ankou) |
(fix incorrect variable name) |
||
Line 260: | Line 260: | ||
for _, pneuma in ipairs( pneumas ) do | for _, pneuma in ipairs( pneumas ) do | ||
local name = 'Orb of Ankou (' .. pneuma .. ')' | local name = 'Orb of Ankou (' .. pneuma .. ')' | ||
local combinedText = '&dPneumas:/&9' .. | local combinedText = '&dPneumas:/&9' .. pneuma .. '//&7When in Off Hand:' | ||
for _, | for _, pneuma2 in ipairs( preLore ) do | ||
if | if pneuma == pneuma2[1] then | ||
combinedText = | combinedText = pneuma2[2] .. '/' .. combinedText | ||
end | end | ||
end | end | ||
for _, | for _, pneuma2 in ipairs( preAttackDamageText ) do | ||
if | if pneuma == pneuma2[1] then | ||
combinedText = combinedText .. '/' .. | combinedText = combinedText .. '/' .. pneuma2[2] | ||
end | end | ||
end | end | ||
Line 276: | Line 276: | ||
combinedText = combinedText .. '/&c-20% Attack Damage' | combinedText = combinedText .. '/&c-20% Attack Damage' | ||
for _, | for _, pneuma2 in ipairs( postAttackDamageText ) do | ||
if | if pneuma == pneuma2[1] then | ||
combinedText = combinedText .. '/' .. | combinedText = combinedText .. '/' .. pneuma2[2] | ||
end | end | ||
end | end |
edits