Module:Inventory slot/Aliases: Difference between revisions

No edit summary
mNo edit summary
Line 984: Line 984:
-- Smithing Template
-- Smithing Template
local smithing_templates = {
local smithing_templates = {
{ 'Netherite Upgrade', '',      'Diamond Equipment', 'Netherite Ignot'  },
{ 'Netherite Upgrade', 'Diamond Equipment', 'Netherite Ignot'  },
{ 'Armor Trim',        'Coast',  'Armor',            'Ignot & Crystals' },
{ 'Coast Armor Trim',  'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Dune',  'Armor',            'Ignot & Crystals' },
{ 'Dune Armor Trim',  'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Eye',    'Armor',            'Ignot & Crystals' },
{ 'Eye Armor Trim',    'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Rib',    'Armor',            'Ignot & Crystals' },
{ 'Rib Armor Trim',    'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Sentry', 'Armor',            'Ignot & Crystals' },
{ 'Sentry Armor Trim', 'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Snout',  'Armor',            'Ignot & Crystals' },
{ 'Snout Armor Trim',  'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Spire',  'Armor',            'Ignot & Crystals' },
{ 'Spire Armor Trim',  'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Tide',  'Armor',            'Ignot & Crystals' },
{ 'Tide Armor Trim',  'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Vex',    'Armor',            'Ignot & Crystals' },
{ 'Vex Armor Trim',    'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Ward',  'Armor',            'Ignot & Crystals' },
{ 'Ward Armor Trim',  'Armor',            'Ignot & Crystals' },
{ 'Armor Trim',        'Wild',  'Armor',            'Ignot & Crystals' },
{ 'Wild Armor Trim',  'Armor',            'Ignot & Crystals' },
}
}
Line 1,002: Line 1,002:
local current_alias = {
local current_alias = {
title = 'Smithing Template',
title = 'Smithing Template',
name = smithing_template[2] .. ' ' .. smithing_template[1] .. 'Smithing Template',
name = smithing_template[1] .. ' Smithing Template',
text = '&9Ingredients/&7' .. smithing_template[2] .. ' ' .. smithing_template[1] .. '//Applies to:/ &9' .. smithing_template[3] .. '/&7Ingredients:/ &9' .. smithing_template[4],
text = '&9Ingredients/&7' .. smithing_template[1] .. '//Applies to:/ &9' .. smithing_template[2] .. '/&7Ingredients:/ &9' .. smithing_template[3],
}
}
aliases[smithing_template[2] .. ' ' .. smithing_template[1]] = current_alias
aliases[smithing_template[1] .. ' Smithing Template'] = current_alias
end
end