Module:ParallelAliases: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
Line 18: Line 18:
}
}


-- Fishing - Junk --
-- Fishing loot: junk --


local junkLoot = {
local junkLoot = {
Line 29: Line 29:
local lore = junk[2]
local lore = junk[2]
aliases[name] = { title = name, name = name, text = '&l&cJUNK/&r&7' .. lore}
aliases[name] = { title = name, name = name, text = '&l&cJUNK/&r&7' .. lore}
end
-- Fishing loot: treasure --
local treasureLoot = {
{ 'Treasure Bundle', 'A bundle full of pirate treasure!'},
{ 'Overflowing Treasure Bundle', 'A bundle bursting with pirate treasure!'},
}
for _, treasure in ipairs( treasureLoot ) do
local name = treasure[1]
local lore = treasure[2]
aliases[name] = { title = name, name = name, text = '&l&6TREASURE/&r&7' .. lore}
end
end


-- Hat Pack 1 --
-- Hat Pack 1 --
local hatPack = {  
local hatPack = {  
{ 'Glow Squid Hat',                 '&a', '*glowy blorp*'},
{ 'Glow Squid Hat', '&a', '*glowy blorp*'},
{ 'Pirate Hat',                     '&6', 'Arr, me matey! Set sail for all the seven seas!'},
{ 'Pirate Hat', '&6', 'Arr, me matey! Set sail for all the seven seas!'},
{ 'Squid Hat',                     '&9', '*blorp*'},
{ 'Squid Hat', '&9', '*blorp*'},


}
}
Line 47: Line 59:
-- Halloween Series --
-- Halloween Series --
local halloweenHats = {  
local halloweenHats = {  
{ 'Original Witch Hat',             '&a', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Original Witch Hat', '&a', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
}
}
for _, hat in ipairs( halloweenHats ) do
for _, hat in ipairs( halloweenHats ) do
Line 58: Line 70:
-- Villager Series --
-- Villager Series --
local villagerHats = {  
local villagerHats = {  
{ 'Armorer\'s Welding Mask',       '&7', 'Shield your eyes from the fiery forge!'},
{ 'Armorer\'s Welding Mask', '&7', 'Shield your eyes from the fiery forge!'},
{ 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'},
{ 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'},
{ 'Farmer\'s Straw Hat',           '&e', 'It ain\'t much, but it\'s honest work.'},
{ 'Farmer\'s Straw Hat', '&e', 'It ain\'t much, but it\'s honest work.'},
{ 'Weaponsmith\'s Eyepatch',       '&c', 'I keep running into walls with this thing...'},
{ 'Weaponsmith\'s Eyepatch', '&c', 'I keep running into walls with this thing...'},
}
}
for _, hat in ipairs( villagerHats ) do
for _, hat in ipairs( villagerHats ) do
Line 72: Line 84:
-- Cat Series --
-- Cat Series --
local catHats = {  
local catHats = {  
{ 'British Shorthair', '&7'},
{ 'British Shorthair', '&7'},
{ 'Calico',             '&6'},
{ 'Calico', '&6'},
{ 'Red',               '&c'},
{ 'Red', '&c'},
}
}
for _, kitty in ipairs( catHats ) do
for _, kitty in ipairs( catHats ) do