Module:Gm4Sprite/Aliases: Difference between revisions
Jump to navigation
Jump to search
(add aqua "Enchanted Page") |
(add relocated blocks) |
||
Line 114: | Line 114: | ||
aliases[name] = { title = '&e', name = name } | aliases[name] = { title = '&e', name = name } | ||
end | end | ||
-- Relocated Blocks | |||
local relocatedBlocks = { | |||
{ 'Compressor' , 'Block Compressor' }, | |||
{ 'Custom Crafter' , }, | |||
{ 'Disassembler' , }, | |||
{ 'Enchantment Extractor' , }, | |||
{ 'Ender Hopper' , }, | |||
{ 'Liquid Tank' , 'Empty Tank' }, | |||
{ 'Master Crafter' , 'Mastercraftman\'s Bench' }, | |||
{ 'Smeltery' , }, | |||
{ 'Tinkering Compressor' , }, | |||
{ 'Teleportation Jammer' , }, | |||
{ 'Teleportation Anchor' , } | |||
} | |||
for _, block in ipairs( relocatedBlocks ) do | |||
local name = 'Relocated' .. block[1] | |||
local title = 'Relocated' .. block[1] | |||
if block[2] ~= nil then | |||
title = 'Relocated' .. block[2] | |||
end | |||
aliases[name] = { title = title, name = name, text = '&eRelocator' } | |||
end | |||
-- Metallurgy | -- Metallurgy |