Module:Inventory slot/Aliases: Difference between revisions
mNo edit summary |
Added display names for extended/enhanced potions, added effect text for enhanced potions, added exceptions for Turtle Master. |
||
| Line 54: | Line 54: | ||
['Uncraftable Tipped Arrow'] = { name = 'Uncraftable Tipped Arrow', text = '&7No effects' }, | ['Uncraftable Tipped Arrow'] = { name = 'Uncraftable Tipped Arrow', text = '&7No effects' }, | ||
['Potion of Night Vision Extended'] = { name = 'Potion of Night Vision', | ['Potion of Healing Enhanced'] = { name = 'Potion of Healing' }, | ||
[' | ['Potion of Fire Resistance Extended'] = { name = 'Potion of Fire Resistance' }, | ||
[' | ['Potion of Regeneration Extended'] = { name = 'Potion of Regeneration' }, | ||
[' | ['Potion of Regeneration Enhanced'] = { name = 'Potion of Regeneration' }, | ||
['Potion of | ['Potion of Strength Extended'] = { name = 'Potion of Strength' }, | ||
[' | ['Potion of Strength Enhanced'] = { name = 'Potion of Strength' }, | ||
[' | ['Potion of Swiftness Extended'] = { name = 'Potion of Swiftness' }, | ||
[' | ['Potion of Swiftness Enhanced'] = { name = 'Potion of Swiftness' }, | ||
['Potion of Night Vision Extended'] = { name = 'Potion of Night Vision' }, | |||
['Potion of Invisibility Extended'] = { name = 'Potion of Invisibility' }, | |||
['Potion of Water Breathing Extended'] = { name = 'Potion of Water Breathing' }, | |||
['Potion of Leaping Extended'] = { name = 'Splash Potion of Leaping' }, | |||
['Potion of Leaping Enhanced'] = { name = 'Potion of Leaping' }, | |||
['Potion of Slow Falling Extended'] = { name = 'Potion of Slow Falling' }, | |||
['Potion of Poison Extended'] = { name = 'Potion of Poison' }, | |||
['Potion of Poison Enhanced'] = { name = 'Potion of Poison' }, | |||
['Potion of Weakness Extended'] = { name = 'Potion of Weakness' }, | |||
['Potion of Harming Enhanced'] = { name = 'Potion of Harming' }, | |||
['Potion of Slowness Extended'] = { name = 'Potion of Slowness' }, | |||
['Potion of the Turtle Master'] = { name = 'Potion of the Turtle Master', text = '&cSlowness IV (1:00)/&9Resistance IV (1:00)' }, | |||
['Potion of the Turtle Master Extended'] = { name = 'Potion of the Turtle Master', text = '&cSlowness IV (3:00)/&9Resistance IV (3:00)' }, | |||
['Potion of the Turtle Master Enhanced'] = { name = 'Potion of the Turtle Master', text = '&cSlowness VI (1:00)/&9Resistance VI (1:00)' }, | |||
} | } | ||
| Line 340: | Line 351: | ||
{'Swiftness', '&9Speed', '3:00', '8:00', '1:30' }, | {'Swiftness', '&9Speed', '3:00', '8:00', '1:30' }, | ||
{'Fire Resistance', '&9Fire Resistance', '3:00', '8:00', '' }, | {'Fire Resistance', '&9Fire Resistance', '3:00', '8:00', '' }, | ||
{'Poison', '&cPoison', '0:45', '1:30', '0:21 | {'Poison', '&cPoison', '0:45', '1:30', '0:21' }, | ||
{'Healing', '&9Instant Health', '', '', '' }, | {'Healing', '&9Instant Health', '', '', '' }, | ||
{'Night Vision', '&9Night Vision', '3:00', '8:00', '' }, | {'Night Vision', '&9Night Vision', '3:00', '8:00', '' }, | ||
| Line 348: | Line 359: | ||
{'Leaping', '&9Jump Boost', '3:00', '8:00', '1:30' }, | {'Leaping', '&9Jump Boost', '3:00', '8:00', '1:30' }, | ||
{'Harming', '&cInstant Damage', '', '', '' }, | {'Harming', '&cInstant Damage', '', '', '' }, | ||
{'Water Breathing', '&9Water Breathing', '3:00', '8:00', ' | {'Water Breathing', '&9Water Breathing', '3:00', '8:00', '' }, | ||
{'Invisibility', '&9Invisibility', '3:00', '8:00', '1:30' }, | {'Invisibility', '&9Invisibility', '3:00', '8:00', '1:30' }, | ||
{'Slow Falling', '&9Slow Falling', '1:30', '4:00', '' }, | {'Slow Falling', '&9Slow Falling', '1:30', '4:00', '' }, | ||
| Line 362: | Line 373: | ||
local aliasName = 'Potion of ' .. statusProps[1] .. ' Extended' | local aliasName = 'Potion of ' .. statusProps[1] .. ' Extended' | ||
aliases[aliasName] = { title = aliasName, name = aliasName, text = statusProps[2] .. ' (' .. statusProps[4] .. ')'} | aliases[aliasName] = { title = aliasName, name = aliasName, text = statusProps[2] .. ' (' .. statusProps[4] .. ')'} | ||
local aliasName = 'Potion of ' .. statusProps[1] .. ' Enhanced' | |||
aliases[aliasName] = { title = aliasName, name = aliasName, text = statusProps[2] .. ' II (' .. statusProps[5] .. ')'} | |||
else | else | ||
local aliasName = 'Potion of ' .. statusProps[1] | local aliasName = 'Potion of ' .. statusProps[1] | ||