8,222
edits
No edit summary |
No edit summary |
||
Line 170: | Line 170: | ||
aliases[name] = { title = name, name = name, text = '&l&5ULTRA RARE/&r&7' .. lore} | aliases[name] = { title = name, name = name, text = '&l&5ULTRA RARE/&r&7' .. lore} | ||
end | end | ||
-- Hat Pack 1 -- | -- Hat Pack 1 -- | ||
Line 185: | Line 187: | ||
end | end | ||
-- | -- Cat Series -- | ||
local | local catHats = { | ||
{ ' | { 'Black Cat Hat', '&8'}, | ||
{ 'British Shorthair Cat Hat', '&7'}, | |||
{ 'Calico Cat Hat', '&6'}, | |||
{ 'Jellie Cat Hat', '&f'}, | |||
{ 'Ocelot Hat', '&e'}, | |||
{ 'Persian Cat Hat', '&#f3ca8e'}, | |||
{ 'Ragdoll Cat Hat', 'a756a'}, | |||
{ 'Red Cat Hat', '&c'}, | |||
{ 'Siamese Cat Hat', '&#e9dcc7'}, | |||
{ 'Tabby Cat Hat', '򿸔'}, | |||
{ 'Tuxedo Cat Hat', '&f'}, | |||
{ 'White Cat Hat', '&f'}, | |||
} | } | ||
for _, | for _, kitty in ipairs( catHats ) do | ||
local name = | local name = kitty[1] | ||
local color = | local color = kitty[2] | ||
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Cat Series ♦/&r&oThe purr-fect hat!'} | |||
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ | |||
end | end | ||
Line 225: | Line 237: | ||
local lore = hat[3] | local lore = hat[3] | ||
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Villager Series ♦/&r&o' .. lore} | aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Villager Series ♦/&r&o' .. lore} | ||
end | end | ||
return aliases | return aliases |