Module:ParallelAliases: Difference between revisions

Jump to navigation Jump to search
no edit summary
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


-- Halloween Series --
-- Cat Series --
local halloweenHats = {  
local catHats = {  
{ 'Original Witch Hat', '&a', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'},
{ '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', '&#8a756a'},
{ 'Red Cat Hat', '&c'},
{ 'Siamese Cat Hat', '&#e9dcc7'},
{ 'Tabby Cat Hat', '&#785940'},
{ 'Tuxedo Cat Hat', '&f'},
{ 'White Cat Hat', '&f'},
}
}
for _, hat in ipairs( halloweenHats ) do
for _, kitty in ipairs( catHats ) do
local name = hat[1]
local name = kitty[1]
local color = hat[2]
local color = kitty[2]
local lore = hat[3]
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♦ Hat Pack 1 ♦/&r&o' .. lore}
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
-- Cat Series --
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', '&#8a756a'},
{ 'Red Cat Hat', '&c'},
{ 'Siamese Cat Hat', '&#e9dcc7'},
{ 'Tabby Cat Hat', '&#785940'},
{ 'Tuxedo Cat Hat', '&f'},
{ 'White Cat Hat', '&f'},
}
for _, kitty in ipairs( catHats ) do
local name = kitty[1]
local color = kitty[2]
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Cat Series ♦/&r&oThe purr-fect hat!'}
end
end


return aliases
return aliases

Navigation menu