8,222
edits
No edit summary |
No edit summary |
||
Line 179: | Line 179: | ||
} | } | ||
for _, hat in ipairs( hatPack ) do | for _, hat in ipairs( hatPack ) do | ||
local name = hat[1] | |||
local color = hat[2] | |||
local lore = hat[3] | |||
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Hat Pack 1 ♦/&r&o' .. lore} | |||
end | |||
-- Halloween Series -- | |||
local halloweenHats = { | |||
{ 'Original Witch Hat', '&a', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'}, | |||
} | |||
for _, hat in ipairs( halloweenHats ) do | |||
local name = hat[1] | local name = hat[1] | ||
local color = hat[2] | local color = hat[2] | ||
Line 199: | Line 210: | ||
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!'}, | ||
{ 'Butcher\'s Headband', '&c', 'Keeps the sweat out of your eyes!'}, | |||
{ 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'}, | { 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'}, | ||
{ 'Cleric\'s Cowl', '&d', 'Hey, where\'s the rest of the cape?'}, | |||
{ '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.'}, | ||
{ 'Fisherman\'s Lucky Hat', '&6', 'It was thiiiiiiis big!'}, | |||
{ 'Fletcher\'s Feather Hat', '&f', 'Practically a marksman already!'}, | |||
{ 'Librarian\'s Book Hat', '&4', 'Can\'t put it down!'}, | |||
{ 'Shepherd\'s Herding Hat', '&f', 'They never go where I want them to.'}, | |||
{ 'Weaponsmith\'s Eyepatch', '&c', 'I keep running into walls with this thing...'}, | { 'Weaponsmith\'s Eyepatch', '&c', 'I keep running into walls with this thing...'}, | ||
} | } |