861
edits
Hypermoron (talk | contribs) No edit summary |
Hypermoron (talk | contribs) No edit summary |
||
Line 18: | Line 18: | ||
} | } | ||
-- Fishing | -- Fishing loot: junk -- | ||
local junkLoot = { | local junkLoot = { | ||
Line 29: | Line 29: | ||
local lore = junk[2] | local lore = junk[2] | ||
aliases[name] = { title = name, name = name, text = '&l&cJUNK/&r&7' .. lore} | aliases[name] = { title = name, name = name, text = '&l&cJUNK/&r&7' .. lore} | ||
end | |||
-- Fishing loot: treasure -- | |||
local treasureLoot = { | |||
{ 'Treasure Bundle', 'A bundle full of pirate treasure!'}, | |||
{ 'Overflowing Treasure Bundle', 'A bundle bursting with pirate treasure!'}, | |||
} | |||
for _, treasure in ipairs( treasureLoot ) do | |||
local name = treasure[1] | |||
local lore = treasure[2] | |||
aliases[name] = { title = name, name = name, text = '&l&6TREASURE/&r&7' .. lore} | |||
end | end | ||
-- Hat Pack 1 -- | -- Hat Pack 1 -- | ||
local hatPack = { | local hatPack = { | ||
{ 'Glow Squid Hat', | { 'Glow Squid Hat', '&a', '*glowy blorp*'}, | ||
{ 'Pirate Hat', | { 'Pirate Hat', '&6', 'Arr, me matey! Set sail for all the seven seas!'}, | ||
{ 'Squid Hat', | { 'Squid Hat', '&9', '*blorp*'}, | ||
} | } | ||
Line 47: | Line 59: | ||
-- Halloween Series -- | -- Halloween Series -- | ||
local halloweenHats = { | local halloweenHats = { | ||
{ 'Original Witch Hat', | { 'Original Witch Hat', '&a', 'Double, double toil and trouble;/Fire burn and cauldron bubble...'}, | ||
} | } | ||
for _, hat in ipairs( halloweenHats ) do | for _, hat in ipairs( halloweenHats ) do | ||
Line 58: | Line 70: | ||
-- Villager Series -- | -- Villager Series -- | ||
local villagerHats = { | local villagerHats = { | ||
{ 'Armorer\'s Welding Mask', | { 'Armorer\'s Welding Mask', '&7', 'Shield your eyes from the fiery forge!'}, | ||
{ 'Cartographer\'s Golden Monocle', '&e', | { 'Cartographer\'s Golden Monocle', '&e', 'They make maps so tiny these days...'}, | ||
{ 'Farmer\'s Straw Hat', | { 'Farmer\'s Straw Hat', '&e', 'It ain\'t much, but it\'s honest work.'}, | ||
{ 'Weaponsmith\'s Eyepatch', | { 'Weaponsmith\'s Eyepatch', '&c', 'I keep running into walls with this thing...'}, | ||
} | } | ||
for _, hat in ipairs( villagerHats ) do | for _, hat in ipairs( villagerHats ) do | ||
Line 72: | Line 84: | ||
-- Cat Series -- | -- Cat Series -- | ||
local catHats = { | local catHats = { | ||
{ 'British Shorthair', | { 'British Shorthair', '&7'}, | ||
{ 'Calico', | { 'Calico', '&6'}, | ||
{ 'Red', | { 'Red', '&c'}, | ||
} | } | ||
for _, kitty in ipairs( catHats ) do | for _, kitty in ipairs( catHats ) do |