8,222
edits
No edit summary |
No edit summary |
||
Line 226: | Line 226: | ||
-- Spooky Hat Pack -- | -- Spooky Hat Pack -- | ||
local halloweenHats = { | local halloweenHats = { | ||
{ 'Original Witch Hat', '& | { 'Original Witch Hat', '&2', '&b♦ Dyeable ♦', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'}, | ||
{ 'Red Witch Hat', '&c', '&b♦ Dyeable ♦', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'}, | |||
} | } | ||
for _, hat in ipairs( halloweenHats ) do | for _, hat in ipairs( halloweenHats ) do | ||
local name = hat[1] | local name = hat[1] | ||
local color = hat[2] | local color = hat[2] | ||
local lore = hat[ | local dyeable = hat[3] | ||
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Hat Pack | local lore = hat[4] | ||
aliases[name] = { title = '&l' .. color .. name, name = name, text = dyeable .. '&8♦ Spooky Hat Pack ♦/&r&5&o' .. lore .. '//&r&7When on head:/&9+2 Armor'} | |||
end | end | ||