Installation
Basic installation instructions for this script
Last updated
Basic installation instructions for this script
Last updated
Do not change resource name, otherwise the resource will not work!
Ensure are installed and running before frozen-fishing
Place script in resources
directory
Add the item images from INSTALLATION
directory
Configure config.lua
as you wish
/*--- REELS ----*/
INSERT INTO `items` (`name`, `label`) VALUES ('zillareel', 'Zilla Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('thunderreel', 'Thunder Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('fishrusreel', 'Fish R Us Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('rockbottomreel', 'Rock Bottom Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('linesnifferreel', 'LineSniffer Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('brokeassreel', 'BrokeAss Reel');
INSERT INTO `items` (`name`, `label`) VALUES ('fish-finder', 'Fish Finder');
/*--- LINES -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('kingbraid', 'KingBraid Line');
INSERT INTO `items` (`name`, `label`) VALUES ('lightningbraid', 'Lightning Braid');
INSERT INTO `items` (`name`, `label`) VALUES ('noodlebraid', 'NoodleBraid Line');
INSERT INTO `items` (`name`, `label`) VALUES ('mobeymono', 'Mobey Mono Line');
INSERT INTO `items` (`name`, `label`) VALUES ('bitesizemono', 'BiteSize Mono Line');
INSERT INTO `items` (`name`, `label`) VALUES ('cheapmono', 'Cheap Mono Line');
/*---- HOOKS -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('towhook', 'Tow Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no10', '#10/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no6', '#6/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no3', '#3/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no2', '#2/0 Fish Hook');
INSERT INTO `items` (`name`, `label`) VALUES ('no1', '#1/0 Fish Hook');
/*--- RODS ---- */
INSERT INTO `items` (`name`, `label`) VALUES ('magnumxlrod', 'Magnum XL Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('zeusrod', 'Zeus Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('brutasrod', 'Brutas Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('nerorod', 'Nero Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('elementalrod', 'Elemental Rod');
INSERT INTO `items` (`name`, `label`) VALUES ('valuecastrod', 'Value Cast Rod');
/*---- BAIT -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('nightworms', 'Bait: NightWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('redworms', 'Bait: RedWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('leech', 'Bait: Leech');
INSERT INTO `items` (`name`, `label`) VALUES ('minnow', 'Bait: Minnow');
INSERT INTO `items` (`name`, `label`) VALUES ('waxworms', 'Bait: WaxWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('mealworms', 'Bait: MealWorms');
INSERT INTO `items` (`name`, `label`) VALUES ('turtlemeat', 'Bait: Turtle Meat');
INSERT INTO `items` (`name`, `label`) VALUES ('bread', 'Bait: Bread');
INSERT INTO `items` (`name`, `label`) VALUES ('crab', 'Bait: Crab');
INSERT INTO `items` (`name`, `label`) VALUES ('hugecutbait', 'Bait: Huge Cut Bait');
INSERT INTO `items` (`name`, `label`) VALUES ('bacon', 'Bait: Bacon');
INSERT INTO `items` (`name`, `label`) VALUES ('maggots', 'Bait: Maggots');
INSERT INTO `items` (`name`, `label`) VALUES ('technoplankton', 'Bait: Technoplankton');
/*---- FISH -----*/
INSERT INTO `items` (`name`, `label`) VALUES ('minnow', 'Fresh Caught: Minnow');
INSERT INTO `items` (`name`, `label`) VALUES ('crab', 'Fresh Caught: Crab');
INSERT INTO `items` (`name`, `label`) VALUES ('crappie', 'Fresh Caught: Crappie');
INSERT INTO `items` (`name`, `label`) VALUES ('garfish', 'Fresh Caught: Garfish');
INSERT INTO `items` (`name`, `label`) VALUES ('rainbowtrout', 'Fresh Caught: RainbowTrout');
INSERT INTO `items` (`name`, `label`) VALUES ('northernpike', 'Fresh Caught: NorthernPike');
INSERT INTO `items` (`name`, `label`) VALUES ('salmon', 'Fresh Caught: Salmon');
INSERT INTO `items` (`name`, `label`) VALUES ('stripedbass', 'Fresh Caught: Striped Bass');
INSERT INTO `items` (`name`, `label`) VALUES ('trout', 'Fresh Caught: Trout');
INSERT INTO `items` (`name`, `label`) VALUES ('pollock', 'Fresh Caught: Pollock');
INSERT INTO `items` (`name`, `label`) VALUES ('haddock', 'Fresh Caught: Haddock');
INSERT INTO `items` (`name`, `label`) VALUES ('tuna', 'Fresh Caught: Tuna');
INSERT INTO `items` (`name`, `label`) VALUES ('shark', 'Fresh Caught: Shark');
INSERT INTO `items` (`name`, `label`) VALUES ('dolphin', 'Fresh Caught: Dolphin');
INSERT INTO `items` (`name`, `label`) VALUES ('turtle', 'Fresh Caught: Turtle');
INSERT INTO `items` (`name`, `label`) VALUES ('whale', 'Fresh Caught: Whale');
['linesnifferreel'] = {
["name"] = "linesnifferreel", --## name goes here
["label"] = "LineSniffer Reel", --##label goes here
["weight"] = 500, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "linesnifferreel.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Line Sniffer Reel used for fishing fishes & sniffing lines."
},
['rockbottomreel'] = { --## name goes here
["name"] = "rockbottomreel", --## name goes here
["label"] = "Rock Bottom Reel", --##label goes here
["weight"] = 500, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "rockbottomreel.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fishing for rock bottom used for fishing fishes."
},
['fishrusreel'] = { --## name goes here
["name"] = "fishrusreel", --## name goes here
["label"] = "Fish R Us Reel", --##label goes here
["weight"] = 500, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "fishrusreel.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The legendary fishing pole from 'Fish R Us' used for fishing fishes." --## Dscription goes here
},
['thunderreel'] = { --## name goes here
["name"] = "thunderreel", --## name goes here
["label"] = "Thunder Reel", --##label goes here
["weight"] = 500, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "thunderreel.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The thunder of reels used for fishing mega fishes." --## DEscription goes here
},
['zillareel'] = { --## name goes here
["name"] = "zillareel", --## name goes here
["label"] = "Zilla Reel", --##label goes here
["weight"] = 500, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "zillareel.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The 'zilla' of all reels!" --## DEscription goes here
},
--LINES -------------------------------------------------------------------------------
['kingbraid'] = { --## name goes here
["name"] = "kingbraid", --## name goes here
["label"] = "KingBraid Line", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "kingbraid.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The kings braid for catching the most powerful fish in the sea!" --## DEscription goes here
},
['cheapmono'] = { --## name goes here
["name"] = "cheapmono", --## name goes here
["label"] = "Cheap Mono Line", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "cheapmono.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Mine as well use your shoe string..." --## DEscription goes here
},
['bitesizemono'] = { --## name goes here
["name"] = "bitesizemono", --## name goes here
["label"] = "Bite-size Mono Line", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "bitesizedmono.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "You can fit the line between your teeth!" --## DEscription goes here
},
['mobeymono'] = { --## name goes here
["name"] = "mobeymono", --## name goes here
["label"] = "Mobey Mono Line", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "mobeymono.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Finally some real fishing line, time to reel em' in!" --## DEscription goes here
},
['noodlebraid'] = { --## name goes here
["name"] = "noodlebraid", --## name goes here
["label"] = "NoodleBraid Line", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "noodlebraid.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A professional grade fishing line." --## DEscription goes here
},
['lightningbraid'] = { --## name goes here
["name"] = "lightningbraid", --## name goes here
["label"] = "Lightning Braid", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "lightningbraid.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The line of lightning ready to catch fish in any waters!." --## DEscription goes here
},
--------------------------------------------------------------------HOOKS-------
['no1'] = { --## name goes here
["name"] = "no1", --## name goes here
["label"] = "#1/0 Fish Hook", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "no1.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Better off using your hands. Good luck!" --## DEscription goes here
},
['no2'] = { --## name goes here
["name"] = "no2", --## name goes here
["label"] = "#2/0 Fish Hook", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "no2.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "At least you can catch seaweed with this thing" --## DEscription goes here
},
['no3'] = { --## name goes here
["name"] = "no3", --## name goes here
["label"] = "#3/0 Fish Hook", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "no3.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Finally a real fishing hook!" --## DEscription goes here
},
['no6'] = { --## name goes here
["name"] = "no6", --## name goes here
["label"] = "#6/0 Fish Hook", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "no6.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A deep sea fishing hook." --## DEscription goes here
},
['no10'] = { --## name goes here
["name"] = "no10", --## name goes here
["label"] = "#10/0 Fish Hook", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "no10.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A professional grade fishing hook!" --## DEscription goes here
},
['towhook'] = { --## name goes here
["name"] = "towhook", --## name goes here
["label"] = "Tow Hook", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "towhook.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "You trying to catch a great white shark with that thing?!" --## DEscription goes here
},
['valuecastrod'] = { --## name goes here
["name"] = "valuecastrod", --## name goes here
["label"] = "Value Cast Rod", --##label goes here
["weight"] = 400, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "valuecastrod.png", --## name.png goes here
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Dollar store fishing rod." --## DEscription goes here
},
['elementalrod'] = { --## name goes here
["name"] = "elementalrod", --## name goes here
["label"] = "Elemental Rod", --##label goes here
["weight"] = 350, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "elementalrod.png", --## name.png goes here
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A rod that can adapt to all elements." --## DEscription goes here
},
['nerorod'] = { --## name goes here
["name"] = "nerorod", --## name goes here
["label"] = "Nero Rod", --##label goes here
["weight"] = 325, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "nerorod.png", --## name.png goes here
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Extremely durable fishing rod." --## DEscription goes here
},
['brutasrod'] = { --## name goes here
["name"] = "brutasrod", --## name goes here
["label"] = "Brutas Rod", --##label goes here
["weight"] = 300, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "brutasrod.png", --## name.png goes here
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "A brute fishing pole." --## DEscription goes here
},
['zeusrod'] = { --## name goes here
["name"] = "zeusrod", --## name goes here
["label"] = "Zeus Rod", --##label goes here
["weight"] =250, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "zeusrod.png", --## name.png goes here
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The Zeus of fishing poles!" --## DEscription goes here
},
['magnumxlrod'] = { --## name goes here
["name"] = "magnumxlrod", --## name goes here
["label"] = "Magnum XL Rod", --##label goes here
["weight"] = 250, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "magnumxlrod.png", --## name.png goes here
["unique"] = false,
["useable"] = true,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "The best fishing pole on the market the 'magnum'!" --## DEscription goes here
},
-----BAITS----------------------------------------------------------------------------------
['nightworms'] = { --## name goes here
["name"] = "nightworms", --## name goes here
["label"] = "Night Worms", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "nightworms.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: NightWorms" --## DEscription goes here
},
['redworms'] = { --## name goes here
["name"] = "redworms", --## name goes here
["label"] = "Red Worms", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "redworms.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: RedWorms" --## DEscription goes here
},
['leech'] = { --## name goes here
["name"] = "leech", --## name goes here
["label"] = "Leech", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "leech.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Leech" --## DEscription goes here
},
['minnow'] = { --## name goes here
["name"] = "minnow", --## name goes here
["label"] = "Minnow", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "minnow.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Minnow" --## DEscription goes here
},
['waxworms'] = { --## name goes here
["name"] = "waxworms", --## name goes here
["label"] = "Waxworms", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "waxworms.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Waxworms" --## DEscription goes here
},
['mealworms'] = { --## name goes here
["name"] = "mealworms", --## name goes here
["label"] = "Mealworms", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "mealworms.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Mealworms" --## DEscription goes here
},
['turtlemeat'] = { --## name goes here
["name"] = "turtlemeat", --## name goes here
["label"] = "Turtle Meat", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "turtlemeat.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Turtle Meat" --## DEscription goes here
},
['bread'] = { --## name goes here
["name"] = "bread", --## name goes here
["label"] = "Bread", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "bread.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Bread" --## DEscription goes here
},
['crab'] = { --## name goes here
["name"] = "crab", --## name goes here
["label"] = "Crab", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "crab.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Crab" --## DEscription goes here
},
['hugecutbait'] = { --## name goes here
["name"] = "hugecutbait", --## name goes here
["label"] = "Huge Cut Bait", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "hugecutbait.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Huge Cut Bait" --## DEscription goes here
},
['bacon'] = { --## name goes here
["name"] = "bacon", --## name goes here
["label"] = "Bacon", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "bacon.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Bacon" --## DEscription goes here
},
['maggots'] = { --## name goes here
["name"] = "maggots", --## name goes here
["label"] = "Maggots", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "maggots.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Maggots" --## DEscription goes here
},
['technoplankton'] = { --## name goes here
["name"] = "technoplankton", --## name goes here
["label"] = "Technoplankton", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "technoplankton.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Bait: Technoplankton" --## DEscription goes here
},
--FISH-------------------------------------------------------------
['minnow'] = { --## name goes here
["name"] = "minnow", --## name goes here
["label"] = "Minnow", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "minnow.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Minnow" --## DEscription goes here
},
['crappie'] = { --## name goes here
["name"] = "crappie", --## name goes here
["label"] = "Crappie", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "crappie.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Crappie" --## DEscription goes here
},
['garfish'] = { --## name goes here
["name"] = "garfish", --## name goes here
["label"] = "Garfish", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "garfish.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Garfish" --## DEscription goes here
},
['rainbowtrout'] = { --## name goes here
["name"] = "rainbowtrout", --## name goes here
["label"] = "Rainbow Trout", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "rainbowtrout.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Rainbow Trout" --## DEscription goes here
},
['northernpike'] = { --## name goes here
["name"] = "northernpike", --## name goes here
["label"] = "Northern Pike", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "northernpike.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Northern Pike" --## DEscription goes here
},
['salmon'] = { --## name goes here
["name"] = "salmon", --## name goes here
["label"] = "Salmon", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "salmon.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Salmon" --## DEscription goes here
},
['stripedbass'] = { --## name goes here
["name"] = "stripedbass", --## name goes here
["label"] = "Striped Bass", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "stripedbass.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Striped Bass" --## DEscription goes here
},
['trout'] = { --## name goes here
["name"] = "trout", --## name goes here
["label"] = "Trout", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "trout.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Trout" --## DEscription goes here
},
['pollock'] = { --## name goes here
["name"] = "pollock", --## name goes here
["label"] = "Pollock", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "pollock.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Pollock" --## DEscription goes here
},
['haddock'] = { --## name goes here
["name"] = "haddock", --## name goes here
["label"] = "Haddock", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "haddock.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Haddock" --## DEscription goes here
},
['haddock'] = { --## name goes here
["name"] = "haddock", --## name goes here
["label"] = "Haddock", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "haddock.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Haddock" --## DEscription goes here
},
['tuna'] = { --## name goes here
["name"] = "tuna", --## name goes here
["label"] = "Tuna", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "tuna.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Tuna" --## DEscription goes here
},
['shark'] = { --## name goes here
["name"] = "shark", --## name goes here
["label"] = "Shark", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "shark.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Shark" --## DEscription goes here
},
['dolphin'] = { --## name goes here
["name"] = "dolphin", --## name goes here
["label"] = "Dolphin", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "dolphin.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Dolphin" --## DEscription goes here
},
['turtle'] = { --## name goes here
["name"] = "turtle", --## name goes here
["label"] = "Turtle", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "turtle.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Turtle" --## DEscription goes here
},
['whale'] = { --## name goes here
["name"] = "whale", --## name goes here
["label"] = "Whale", --##label goes here
["weight"] = 10, --## Think of a good weight for this item you'll know the weights better
["type"] = "item",
["image"] = "whale.png", --## name.png goes here
["unique"] = false,
["useable"] = false,
["shouldClose"] = true,
["combinable"] = nil,
["description"] = "Fresh Caught: Whale" --## DEscription goes here
},
/* Fishing */
["zillareel"] = {
label = "Zilla Reel",
weight = 20,
stack = true,
close = true
},
["kingbraid"] = {
label = "KingBraid Line",
weight = 20,
stack = true,
close = true
},
["no10"] = {
label = "#10/0 Fish Hook",
weight = 20,
stack = true,
close = true
},
["magnumxlrod"] = {
label = "Magnum XL Rod",
weight = 1000,
stack = true,
close = true
},
["nightworms"] = {
label = "Bait: NightWorms",
weight = 2,
stack = true,
close = true
},
["bitesizemono"] = {
label = "BiteSize Mono Line",
weight = 10,
stack = true,
close = true,
},
["brokeassreel"] = {
label = "BrokeAss Reel",
weight = 10,
stack = true,
close = true,
},
["brutasrod"] = {
label = "Brutas Rod",
weight = 1000,
stack = true,
close = true,
},
["cheapmono"] = {
label = "Cheap Mono Line",
weight = 10,
stack = true,
close = true,
},
["crab"] = {
label = "Bait: Crab",
weight = 100,
stack = true,
close = true,
},
["crappie"] = {
label = "Fresh Caught: Crappie",
weight = 100,
stack = true,
close = true,
},
["dolphin"] = {
label = "Fresh Caught: Dolphin",
weight = 20000,
stack = true,
close = true,
description = 'This item is Illegal :O',
},
["elementalrod"] = {
label = "Elemental Rod",
weight = 1000,
stack = true,
close = true,
},
["fish-finder"] = {
label = "Fish Finder",
weight = 100,
stack = true,
close = true,
},
["fishrusreel"] = {
label = "Fish R Us Reel",
weight = 20,
stack = true,
close = true,
},
["garfish"] = {
label = "Fresh Caught: Garfish",
weight = 100,
stack = true,
close = true,
},
["haddock"] = {
label = "Fresh Caught: Haddock",
weight = 150,
stack = true,
close = true,
},
["hugecutbait"] = {
label = "Bait: Huge Cut Bait",
weight = 10,
stack = true,
close = true,
},
["shark"] = {
label = "Fresh Caught: Shark",
weight = 25000,
stack = true,
close = true,
description = 'This item is Illegal :O',
},
["leech"] = {
label = "Bait: Leech",
weight = 10,
stack = true,
close = true,
},
["lightningbraid"] = {
label = "Lightning Braid",
weight = 100,
stack = true,
close = true,
},
["linesnifferreel"] = {
label = "LineSniffer Reel",
weight = 10,
stack = true,
close = true,
},
["maggots"] = {
label = "Bait: Maggots",
weight = 10,
stack = true,
close = true,
},
["mealworms"] = {
label = "Bait: MealWorms",
weight = 10,
stack = true,
close = true,
},
["minnow"] = {
label = "Bait: Minnow",
weight = 10,
stack = true,
close = true,
},
["mobeymono"] = {
label = "Mobey Mono Line",
weight = 10,
stack = true,
close = true,
},
["nerorod"] = {
label = "Nero Rod",
weight = 1000,
stack = true,
close = true,
},
["no1"] = {
label = "#1/0 Fish Hook",
weight = 10,
stack = true,
close = true,
},
["no2"] = {
label = "#2/0 Fish Hook",
weight = 10,
stack = true,
close = true,
},
["no3"] = {
label = "#3/0 Fish Hook",
weight = 10,
stack = true,
close = true,
},
["no6"] = {
label = "#6/0 Fish Hook",
weight = 10,
stack = true,
close = true,
},
["noodlebraid"] = {
label = "NoodleBraid Line",
weight = 10,
stack = true,
close = true,
},
["northernpike"] = {
label = "Fresh Caught: NorthernPike",
weight = 100,
stack = true,
close = true,
},
["pollock"] = {
label = "Fresh Caught: Pollock",
weight = 100,
stack = true,
close = true,
},
["rainbowtrout"] = {
label = "Fresh Caught: RainbowTrout",
weight = 100,
stack = true,
close = true,
},
["redworms"] = {
label = "Bait: RedWorms",
weight = 10,
stack = true,
close = true,
},
["rockbottomreel"] = {
label = "Rock Bottom Reel",
weight = 10,
stack = true,
close = true,
},
["salmon"] = {
label = "Fresh Caught: Salmon",
weight = 250,
stack = true,
close = true,
},
["stripedbass"] = {
label = "Fresh Caught: Striped Bass",
weight = 100,
stack = true,
close = true,
},
["technoplankton"] = {
label = "Bait: Technoplankton",
weight = 100,
stack = true,
close = true,
},
["thunderreel"] = {
label = "Thunder Reel",
weight = 10,
stack = true,
close = true,
},
["towhook"] = {
label = "Tow Hook",
weight = 10,
stack = true,
close = true,
},
["trout"] = {
label = "Fresh Caught: Trout",
weight = 100,
stack = true,
close = true,
},
["tuna"] = {
label = "Fresh Caught: Tuna",
weight = 100,
stack = true,
close = true,
},
["turtle"] = {
label = "Fresh Caught: Turtle",
weight = 5000,
stack = true,
close = true,
description = 'This item is Illegal :O',
},
["turtlemeat"] = {
label = "Bait: Turtle Meat",
weight = 100,
stack = true,
close = true,
},
["valuecastrod"] = {
label = "Value Cast Rod",
weight = 1000,
stack = true,
close = true,
},
["waxworms"] = {
label = "Bait: WaxWorms",
weight = 10,
stack = true,
close = true,
},
["whale"] = {
label = "Fresh Caught: Whale",
weight = 40000,
stack = true,
close = true,
description = 'This item is Illegal :O',
},
["zeusrod"] = {
label = "Zeus Rod",
weight = 1000,
stack = true,
close = true,
},
["tunameat"] = {
label = "Bait: Tuna Meat",
weight = 10,
stack = true,
close = true,
},