8,222
edits
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
'Charms', | 'Charms', | ||
['Charm Remover'] | ['Charm Remover'] = { title = '&eCharm Remover', name = 'Charm Remover' }, | ||
'Gear', | 'Gear', | ||
Line 12: | Line 12: | ||
'Food', | 'Food', | ||
['Baguette'] | ['Baguette'] = { name = 'Baguette'}, | ||
['Hot Chocolate'] = { name = 'Hot Chocolate', text = '&9Instant Health/&9Speed (00:10)' }, | ['Hot Chocolate'] = { name = 'Hot Chocolate', text = '&9Instant Health/&9Speed (00:10)' }, | ||
['Parallel Soda'] = { title = 'Parallel Soda Can', name = 'Parallel Soda', text = '&5&oIt\'s not Pepsi... it\'s Parallel!' }, | |||
['Pasta Carbanara'] = { name = 'Pasta Carbanara'}, | |||
'Misc', | 'Misc', | ||
Line 48: | Line 50: | ||
end | end | ||
-- Pizza -- | |||
for num = 0, 8, 1 | |||
do | |||
if num == 0 then | |||
local name = 'Pizza' | |||
elseif num == 1 then | |||
local name = 'Pizza 1 Slice' | |||
else | |||
local name = 'Pizza ' .. num .. ' Slices' | |||
end | |||
aliases[name] = { title = 'Pizza', name = name, text = '&7Slices: ' .. num} | |||
end | |||
-- Sushi -- | |||
for num = 0, 4, 1 | |||
do | |||
if num == 0 then | |||
local name = 'Sushi Roll' | |||
elseif num == 1 then | |||
local name = 'Sushi Roll 1 Slice' | |||
else | |||
local name = 'Sushi Roll ' .. num .. ' Slices' | |||
end | |||
aliases[name] = { title = 'Sushi Roll', name = name, text = '&7Slices: ' .. num} | |||
end | |||
-- Fishing loot: junk -- | -- Fishing loot: junk -- | ||
local junkLoot = { | local junkLoot = { | ||
{ 'Old Boot', 'Who lost their shoe?'}, | { 'Old Boot', 'Who lost their shoe?'}, | ||
Line 63: | Line 88: | ||
end | end | ||
-- Fishing loot: treasure - | -- Fishing loot: treasure - | ||
local treasureLoot = { | local treasureLoot = { | ||
{ 'Treasure Bundle', 'A bundle full of pirate treasure!'}, | { 'Treasure Bundle', 'A bundle full of pirate treasure!'}, | ||
Line 76: | Line 100: | ||
-- Fishing loot: common -- | -- Fishing loot: common -- | ||
local commonLoot = { | local commonLoot = { | ||
{ 'Cooked Bream', 'A greenish-brown fish, popular with anglers'}, | { 'Cooked Bream', 'A greenish-brown fish, popular with anglers'}, | ||
Line 98: | Line 121: | ||
-- Fishing loot: uncommon -- | -- Fishing loot: uncommon -- | ||
local uncommonLoot = { | local uncommonLoot = { | ||
{ 'Cooked Crab', 'A crustacean with a mean pinch!'}, | { 'Cooked Crab', 'A crustacean with a mean pinch!'}, | ||
Line 118: | Line 140: | ||
-- Fishing loot: rare -- | -- Fishing loot: rare -- | ||
local rareLoot = { | local rareLoot = { | ||
{ 'Cooked Calamari', 'A large squid with a distinctive color'}, | { 'Cooked Calamari', 'A large squid with a distinctive color'}, | ||
Line 133: | Line 154: | ||
-- Fishing loot: ultrarare -- | -- Fishing loot: ultrarare -- | ||
local ultrarareLoot = { | local ultrarareLoot = { | ||
{ 'Cooked Moorish Idol Fish', 'An exotic tropical fish/AKA Gill from Finding Nemo'}, | { 'Cooked Moorish Idol Fish', 'An exotic tropical fish/AKA Gill from Finding Nemo'}, |