Module:Slot/Aliases/The Aether

From Aether Project Wiki
Jump to navigation Jump to search
This is the documentation page. It will be transcluded into the main module page. See Template:Documentation for more information

This table defines modaliases for The Aether.


local aliases = {
	['Any altar fuel'] = { 'Ambrosium Shard', 'Block of Ambrosium'  },
	['Any freezer fuel'] = { 'Icestone', 'Icestone Stairs', 'Icestone Slab', 'Icestone Wall'  },
}

-- Tooltip colors --
local greenTooltips = {
	'Flaming Sword',
	'Lightning Sword',
	'Lightning Knife',
	'Holy Sword',
	'Pig Slayer',
	'Vampire Blade',
	'Phoenix Bow',
	'Hammer of Kingbdogz',
	'Valkyrie Lance',
	'Valkyrie Axe',
	'Valkyrie Shovel',
	'Valkyrie Pickaxe',
	'Valkyrie Hoe',
	'Valkyrie Helmet',
	'Valkyrie Chestplate',
	'Valkyrie Leggings',
	'Valkyrie Boots',
	'Valkyrie Gloves',
	'Neptune Helmet',
	'Neptune Chestplate',
	'Neptune Leggings',
	'Neptune Boots',
	'Neptune Gloves',
	'Phoenix Helmet',
	'Phoenix Chestplate',
	'Phoenix Leggings',
	'Phoenix Boots',
	'Phoenix Gloves',
	'Obsidian Helmet',
	'Obsidian Chestplate',
	'Obsidian Leggings',
	'Obsidian Boots',
	'Obsidian Gloves',
	'Agility Cape',
	'Invisibility Cloak',
	'Valkyrie Cape',
	'Golden Feather',
	'Regeneration Stone',
	'Iron Bubble',
	'Shield of Repulsion',
	'Victory Medal',
	'Bronze Key',
	'Silver Key',
	'Gold Key',
	'Nature Staff',
	'Cloud Staff',
	'Life Shard',
	'Book of Lore',
	'Blue Gummy Swet',
	'Golden Gummy Swet',
	'Aerogel',
	'Aerogel Slab',
	'Aerogel Stairs',
	'Aerogel Wall',
}
for _, name in ipairs( greenTooltips ) do
	aliases[name] = { title = '§a', name = name }
end

local aquaTooltips = {
	'Enchanted Dart',
	'Enchanted Dart Shooter',
	'Enchanted Berry',
	'Healing Stone',
	'Music Disc Aether Tune',
	'Music Disc Ascending Dawn',
	'Music Disc Chinchilla',
	'Music Disc High',
	'Skyroot Remedy Bucket',
	'Enchanted Aether Grass Block',
	'Quicksoil Glass',
	'Quicksoil Glass Pane',
	'Enchanted Gravitite',
}
for _, name in ipairs( aquaTooltips ) do
	aliases[name] = { title = '&b', name = name }
end

return aliases