861
edits
Hypermoron (talk | contribs) (test) |
Hypermoron (talk | contribs) (more hats) |
||
Line 17: | Line 17: | ||
['Tinted Potion Bottle'] = { title = '&7Tinted Potion Bottle', name = 'Tinted Potion Bottle', text = '&oA gross bottle that you should/never drink under any circumstances' }, | ['Tinted Potion Bottle'] = { title = '&7Tinted Potion Bottle', name = 'Tinted Potion Bottle', text = '&oA gross bottle that you should/never drink under any circumstances' }, | ||
} | } | ||
-- Hat Pack 1 -- | |||
local hatPack = { | |||
{ 'Glow Squid Hat', '&a', '*glowy blorp*'}, | |||
{ 'Pirate Hat', '&6', 'Arr, me matey! Set sail for all the seven seas!'}, | |||
{ 'Squid Hat', '&9', '*blorp*'}, | |||
} | |||
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 color = hat[2] | |||
local lore = hat[3] | |||
aliases[name] = { title = '&l' .. color .. name, name = name, text = '&8♦ Hat Pack 1 ♦/&r&o' .. lore} | |||
end | |||
-- Villager Series -- | -- Villager Series -- | ||
Line 23: | Line 48: | ||
{ 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'}, | { 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'}, | ||
{ '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.'}, | ||
{ ' | { 'Weaponsmith\'s Eyepatch', '&c', 'I keep running into walls with this thing...'}, | ||
} | } | ||
for _, hat in ipairs( villagerHats ) do | for _, hat in ipairs( villagerHats ) do |