8,222
edits
No edit summary |
No edit summary |
||
Line 190: | Line 190: | ||
{ 'Angry Nectar Bee Hat', '&6', 'BZZZZZ... *drip*'}, | { 'Angry Nectar Bee Hat', '&6', 'BZZZZZ... *drip*'}, | ||
{ 'Heart Glasses', '&c', 'Yowza!'}, | { 'Heart Glasses', '&c', 'Yowza!'}, | ||
{ 'White Top Hat', '&f', 'What\'s hiding under there?'}, | |||
} | } | ||
Line 197: | Line 198: | ||
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 .. hatArmorText} | aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Hat Pack 1 ♦/&r&5&o' .. lore .. hatArmorText} | ||
end | |||
-- Hat Pack 2 -- | |||
local hatPack2 = { | |||
{ 'Trapper Hat', '	d5a2d', true, 'Guaranteed to keep your ears warm!'}, | |||
} | |||
for _, hat in ipairs( hatPack2 ) do | |||
local name = hat[1] | |||
local color = hat[2] | |||
local dyeable | |||
if hat[3] then dyeable = dyeableText else dyeable = '' end | |||
local lore = hat[4] | |||
aliases[name] = { title = '&l' .. color .. name, name = name, text = dyeable .. '&8♦ Hat Pack 2 ♦/&r&5&o' .. lore .. hatArmorText} | |||
end | end | ||
Line 276: | Line 291: | ||
-- Misc Hats -- | -- Misc Hats -- | ||
local miscHats = { | local miscHats = { | ||
{ 'Early Supporter Glasses', '&2', '&5&oThanks for supporting the server!'}, | { 'Early Supporter Glasses', '&2', '&5&oThanks for supporting the server!'}, | ||
{ 'Sculk Plague Doctor Mask', '&3', '&5&oBring out the leeches!'}, | { '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 2020 Glasses', '&b', '&8New Year\'s Eve 2020/&5&oHere\'s to 2021!'}, | ||
{ 'New Year\'s Eve 2023 Glasses', '& | { 'New Year\'s Eve 2023 Glasses', '&b', '&b♦ Dyeable ♦/&r&8New Year\'s Eve 2023/&r&5&oWe\'ll take a cup of kindness yet,/for auld lang syne.'}, | ||
{ 'Santa Hat', '&#ee001a', '&8Christmas 2020/&r&5&oBut I heard him exclaim, ere he drove out of sight—/“Happy Christmas to all, and to all a good night!”'}, | |||
{ 'Reindeer Antlers', '&6', '&8Christmas 2021/&r&5&oNow, Dasher! Now, Dancer! Now, Prancer and Vixen!/On, Comet! On, Cupid! On, Donder and Blitzen!'}, | |||
{ 'White Reindeer Antlers', '&f', '&8Christmas 2021/&r&5&oNow, Dasher! Now, Dancer! Now, Prancer and Vixen!/On, Comet! On, Cupid! On, Donder and Blitzen!'}, | |||
{ 'Structure Creator Hat', '&6', '&81.18 Structure Contest/&r&5&oAwarded to players with an accepted/build in the 1.18 Structure Contest!'}, | |||
{ 'Wild Structure Creator Hat', '&2', '&81.19 Structure Contest/&r&5&oAwarded to players with an accepted/build in the 1.19 Structure Contest!'}, | |||
} | } | ||
for _, hat in ipairs( miscHats ) do | for _, hat in ipairs( miscHats ) do |