return {
-- Panning
Cooldown = 60, -- in seconds
EnablePanNothing = false, -- true or false
PanNothingChance = 50,
EnablePanMoney = false, -- true or false
PanMoney = {
chance = 100,
min = 100,
max = 200,
notification = true, -- true or false
},
EnablePanBreak = true,
BronzeBreakChance = 100,
IronBreakChance = 60,
GoldBreakChance = 30,
DiscordWebhook = '',
-- Common items you can get with the Bronze Gold pan
CommonItems = {
chance = 100,
min = 1,
max = 1,
enablegoldnuggets = true,
goldnuggets = 1,
items = {'seaweed'},
notification = true, -- true or false
},
-- Unique items you can get with the Iron Gold pan
UniqueItems = {
chance = 100,
min = 1,
max = 1,
enablegoldnuggets = true,
goldnuggets = 3,
items = {'gold_earrings', 'gold_ring'},
notification = true, -- true or false
},
-- Special items you can get with the Gold Gold pan
SpecialItems = {
chance = 100,
min = 1,
max = 3,
enablegoldnuggets = true,
goldnuggets = 5,
items = {'gold_watch', 'gold_necklace'},
notification = true, -- true or false
},
-- Shop
buyitems = {
{ title = 'Bronze Gold pan', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬100', item = 'bronze_goldpan', buyprice = 100},
{ title = 'Iron Gold pan', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬1000', item = 'iron_goldpan', buyprice = 1000},
{ title = 'Gold Gold pan', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬5000', item = 'gold_goldpan', buyprice = 5000},
},
sellitems = {
{ title = 'Seaweed', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬15', item = 'seaweed', sellprice = 15},
{ title = 'Gold earrings', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬100', item = 'gold_earrings', sellprice = 100},
{ title = 'Gold ring', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬125', item = 'gold_ring', sellprice = 125},
{ title = 'Gold watch', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬200', item = 'gold_watch', sellprice = 200},
{ title = 'Gold necklace', icon = 'fas fa-coins', iconColor = '#FEEFC6', description = 'Price: β¬200', item = 'gold_necklace', sellprice = 200},
},
-- Swap Shop
swapitems = {
{ title = 'Gold necklace', icon = 'fas fa-shuffle', iconColor = '#FEEFC6', description = 'Price: 5x Gold nuggets', sellprice = 5, item = 'gold_necklace'},
},
currencyswapitem = 'gold_nuggets',
}