Module:ParallelAliases: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 21: Line 21:
['Unstable Soul Shard']     = { title = '&6Unstable Soul Shard', name = 'Unstable Soul Shard'},
['Unstable Soul Shard']     = { title = '&6Unstable Soul Shard', name = 'Unstable Soul Shard'},
['Tinted Potion Bottle'] = { title = '&7Tinted Potion Bottle', name = 'Tinted Potion Bottle', text = '&5&oA gross bottle that you should/never drink under any circumstances' },
['Tinted Potion Bottle'] = { title = '&7Tinted Potion Bottle', name = 'Tinted Potion Bottle', text = '&5&oA gross bottle that you should/never drink under any circumstances' },
}
}


Line 181: Line 182:
-- 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*'},
{ 'Bee Hat', '&6', 'Bzzzzz...'},
{ 'Angry Bee Hat', '&6', 'BZZZZZ...'},
{ 'Nectar Bee Hat', '&6', 'Bzzzzz... *drip*'},
{ 'Angry Nectar Bee Hat', '&6', 'BZZZZZ... *drip*'},
{ 'Heart Glasses', '&c', 'Yowza!'},


}
}
Line 190: Line 196:
local color = hat[2]
local color = hat[2]
local lore = hat[3]
local lore = hat[3]
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Hat Pack 1 ♦/&r&5&o' .. lore}
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Hat Pack 1 ♦/&r&5&o' .. lore .. hatArmorText}
end
end


Line 211: Line 217:
local name = kitty[1]
local name = kitty[1]
local color = kitty[2]
local color = kitty[2]
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Cat Series ♦/&r&5&oThe purr-fect hat!'}
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Cat Series ♦/&r&5&oThe purr-fect hat!' .. hatArmorText}
end
end


Line 224: Line 230:
local name = hat[1] .. ' Donator Crown'
local name = hat[1] .. ' Donator Crown'
local color = hat[2]
local color = hat[2]
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&5&oAwarded to &r&ePlayer &r&5&ofor their/generous support for Parallel!'}
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&5&oAwarded to &r&ePlayer &r&5&ofor their/generous support for Parallel!' .. hatArmorText}
end
end


-- Spooky Hat Pack --
-- Spooky Hat Pack --
local halloweenHats = {  
local halloweenHats = {  
{ 'Original Witch Hat', '&2', false, 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Original Witch Hat', '&2', false, 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Red Witch Hat', '&c', false, 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Red Witch Hat', '&c', false, 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Witch Hat', '&c', true, 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Witch Hat', '&2', true, 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ 'Black Plague Doctor Mask', '&8', false, 'Bring out the leeches!'},
{ 'White Plague Doctor Mask', '&f', false, 'Bring out the leeches!'},
{ 'Pink Plague Doctor Mask', '&#ff69b4', false, 'Bring out the leeches!'},
{ 'Bloody Netherite Axe Hat', '&8', false, 'Here\'s Johnny!'},
{ 'Pumpkin Hat', '&#f9801d', false, 'We got this idea from &r&5Among Us!'},
{ 'Jack o\'Lantern Hat', '&#f9801d', false, 'It\'s like the Pumpkin Hat, but on fire!'},
}
}
for _, hat in ipairs( halloweenHats ) do
for _, hat in ipairs( halloweenHats ) do
Line 259: Line 271:
local color = hat[2]
local color = hat[2]
local lore = hat[3]
local lore = hat[3]
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Villager Series ♦/&r&5&o' .. lore}
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Villager Series ♦/&r&5&o' .. lore .. hatArmorText}
end
 
-- Misc Hats --
local miscHats = {
{ 'Early Supporter Glasses', '&2', '&5&oThanks for supporting the server!'},
{ 'Sculk Plague Doctor Mask', '&3', '&5&oBring out the leeches!'},
{ 'New Year\'s Eve 2020 Glasses', '&b', '&8New Year\'s Eve 2020/&5&oHere\'s to 2021!'},
{ 'New Year\'s Eve 2023 Glasses', '&3', '&b♦ Dyeable ♦/&r&8New Year\'s Eve 2023/&r&5&oWe\'ll take a cup of kindness yet,/for auld lang syne.'},
}
for _, hat in ipairs( miscHats ) do
local name = hat[1]
local color = hat[2]
local lore = hat[3]
aliases[name] = { title = '&l' .. color .. name, name = name, text = lore .. hatArmorText}
end
end


return aliases
return aliases