Bureaucrats, Check users, emailconfirmed, Interface administrators, staff, Administrators, translation-admin, Widget editors
1,659
edits
m (Have to save original values too) |
(Fixed Orb of Ankou's Soul Shards lore) |
||
Line 275: | Line 275: | ||
-- Soul Shards | -- Soul Shards | ||
local pneumas = { | local pneumas = { | ||
'Aggressive | {'Aggressive', '&9Aggressive' }, | ||
'Agile | {'Agile', '&9Agile' }, | ||
'Anchoring | {'Anchoring', '&9Anchoring' }, | ||
'Bargaining | {'Bargaining', '&9Bargaining' }, | ||
'Bashing | {'Bashing', '&9Bashing' }, | ||
'Blasting | {'Blasting', '&9Blasting' }, | ||
'Blinding | {'Blinding', '&9Blinding' }, | ||
'Bounding | {'Bounding', '&9Bounding' }, | ||
'Bubbly | {'Bubbly', '&9Bubbly' }, | ||
'Conjuring | {'Conjuring', '&9Conjuring' }, | ||
'Depriving | {'Depriving', '&9Depriving' }, | ||
'Draining | {'Draining', '&9Draining' }, | ||
'Enduring | {'Enduring', '&9Enduring' }, | ||
'Expeditious | {'Expeditious', '&9Expeditious' }, | ||
'Feathery | {'Feathery', '&9Feathery' }, | ||
'Freezing | {'Freezing', '&9Freezing' }, | ||
'Gazing | {'Gazing', '&9Gazing' }, | ||
'Gliding | {'Gliding', '&9Gliding' }, | ||
'Hawkeye | {'Hawkeye', '&9Hawkeye' }, | ||
'Incombustible | {'Incombustible', '&9Incombustible' }, | ||
'Lifeless | {'Lifeless', '&9Lifeless' }, | ||
'Neutralizing | {'Neutralizing', '&9Neutralizing' }, | ||
'Phasing | {'Phasing', '&9Phasing' }, | ||
'Pricking | {'Pricking', '&7Thorns V&9Pricking' }, | ||
'Retreating | {'Retreating', '&9Retreating' }, | ||
'Rushing | {'Rushing', '&9Rushing' }, | ||
'Scaling | {'Scaling', '&9Scaling' }, | ||
'Soaring | {'Soaring', '&9Soaring' }, | ||
'Striding | {'Striding', '&9Striding' }, | ||
'Synergetic | {'Synergetic', '&9Synergetic' }, | ||
'Vanishing | {'Vanishing', '&9Vanishing' }, | ||
'Venomous | {'Venomous', '&9Venomous' }, | ||
'Volatile | {'Volatile', '&9Volatile' }, | ||
'Withering | {'Withering', '&9Withering' } | ||
} | } | ||
-- | local preAttackDamageText = { | ||
{'Enduring', '/&9+8 Max Health/&c-20%speed' }, | |||
{'Soaring', '/&c-20% Max Health' }, | |||
{'Bashing', '/&c-40% Attack Speed' } | |||
} | |||
local postAttackDamageText = { | |||
{'Anchoring', '&9+0.9 Knockback Resistance' }, | |||
{'Bashing', '&9+70% Attack Damage' } | |||
} | |||
-- | -- Create Soul Shards | ||
for _, shard in ipairs( pneumas ) do | |||
local name = shard[1] .. ' Soul Shard' | |||
local combinedText = shard[2] .. '//&7When in off hand:/' | |||
for _, text in ipairs( preAttackDamageText ) do | |||
if shard[1] == preAttackDamageText[1] then | |||
combinedText = combinedText .. preAttackDamageText[2] | |||
end | |||
end | |||
combinedText = combinedText .. '/&c-20% Attack Damage' | |||
for _, text in ipairs( postAttackDamageText ) do | |||
if shard[1] == postAttackDamageText[1] then | |||
combinedText = combinedText .. postAttackDamageText[2] | |||
end | |||
end | |||
aliases[name] = { title = 'Soul Shard', name = name, text = combinedText } | |||
aliases[ | end | ||
return aliases | return aliases |
edits