Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Fishing Items
['anchor'] = { label = 'Anchor', weight = 5000, stack = true, close = true, client = { image = 'anchor.png' }, description = 'Anchors away!' },
['exoticsalescard'] = { label = 'Exotic Sales Card', weight = 100, stack = false, close = true, client = { image = 'exoticsalescard.png' }, description = 'An exotic sales card!' },
['fishingrod'] = { label = 'Fishing Rod', weight = 2000, stack = false, close = true, client = { image = 'fishingrod.png' }, description = 'Cast away your troubles!' },
['shovel'] = { label = 'Shovel', weight = 5000, stack = false, close = true, client = { image = 'shovel.png' }, description = 'A groundbreaking invention' },
-- Fishing Bait
['fishingbait'] = { label = 'Fish Bait', weight = 100, stack = false, close = true, client = { image = 'fishingbait.png' }, description = 'A typical fishing fly' },
['fishingworms'] = { label = 'Worm Bait', weight = 100, stack = false, close = true, client = { image = 'fishingworms.png' }, description = 'A juicy bait for attracting fish' },
['crabbait'] = { label = 'Crab Bait', weight = 100, stack = false, close = true, client = { image = 'crabbait.png' }, description = 'A fresh bait for attracting apex fish' },
-- Fishing Junk
['oldboot'] = { label = 'Old Boot', weight = 200, stack = false, close = true, client = { image = 'oldboot.png' }, description = 'Stinky!' },
['rustycan'] = { label = 'Rusty Can', weight = 200, stack = false, close = true, client = { image = 'rustycan.png' }, description = 'Tin can has been better days' },
['seaweed'] = { label = 'Seaweed', weight = 200, stack = false, close = true, client = { image = 'seaweed.png' }, description = 'Perfect for sushi!' },
['algae'] = { label = 'Green Algae', weight = 200, stack = false, close = true, client = { image = 'algae.png' }, description = 'The basis of life!' },
-- Fishing Catches
['bream'] = { label = 'Bream', weight = 1000, stack = true, close = true, client = { image = 'bream.png' }, description = 'A freshwater river bream!' },
['bullhead'] = { label = 'Bullhead Catfish', weight = 1000, stack = true, close = true, client = { image = 'bullhead.png' }, description = 'A freshwater lake bullhead catfish!' },
['carp'] = { label = 'Carp', weight = 1000, stack = true, close = true, client = { image = 'carp.png' }, description = 'A freshwater lake carp!' },
['chub'] = { label = 'Chub', weight = 500, stack = true, close = true, client = { image = 'chub.png' }, description = 'A freshwater lake chub!' },
['clam'] = { label = 'Clam', weight = 200, stack = true, close = true, client = { image = 'clam.png' }, description = 'Important part of the oceans food chain' },
['clownfish'] = { label = 'Clownfish', weight = 500, stack = true, close = true, client = { image = 'clownfish.png' }, description = 'You found him!' },
['cod'] = { label = 'Cod', weight = 1000, stack = true, close = true, client = { image = 'cod.png' }, description = 'A saltwater cod!' },
['crab'] = { label = 'Crab', weight = 1000, stack = true, close = true, client = { image = 'crab.png' }, description = 'Under the Sea!' },
['dolphin'] = { label = 'Dolphin', weight = 10000, stack = true, close = true, client = { image = 'dolphin.png' }, description = 'A saltwater dolphin! Echo!' },
['flounder'] = { label = 'Flounder', weight = 1000, stack = true, close = true, client = { image = 'flounder.png' }, description = 'A saltwater flounder!' },
['hammerheadshark'] = { label = 'Hammerhead Shark', weight = 12000, stack = true, close = true, client = { image = 'hammerheadshark.png' }, description = 'A saltwater hammerhead shark!' },
['killerwhale'] = { label = 'Orca', weight = 15000, stack = true, close = true, client = { image = 'killerwhale.png' }, description = 'Also known as a killer whale! Free him!' },
['largemouthbass'] = { label = 'Largemouth Bass', weight = 1000, stack = true, close = true, client = { image = 'largemouthbass.png' }, description = 'A freshwater lake largemouth bass!' },
['mackerel'] = { label = 'Mackerel', weight = 500, stack = true, close = true, client = { image = 'mackerel.png' }, description = 'A saltwater mackerel!' },
['mussel'] = { label = 'Mussels', weight = 200, stack = true, close = true, client = { image = 'mussel.png' }, description = 'Small sea creature with an elongated shell' },
['pike'] = { label = 'Pike', weight = 3000, stack = true, close = true, client = { image = 'pike.png' }, description = 'A freshwater river pike!' },
['rainbowtrout'] = { label = 'Rainbow Trout', weight = 1000, stack = true, close = true, client = { image = 'rainbowtrout.png' }, description = 'A freshwater river rainbow trout!' },
['salmon'] = { label = 'Salmon', weight = 1000, stack = true, close = true, client = { image = 'salmon.png' }, description = 'A freshwater river salmon!' },
['smallmouthbass'] = { label = 'Smallmouth Bass', weight = 500, stack = true, close = true, client = { image = 'smallmouthbass.png' }, description = 'A freshwater river smallmouth bass!' },
['stingray'] = { label = 'Stingray', weight = 5000, stack = true, close = true, client = { image = 'stingray.png' }, description = 'A saltwater stingray! Poor Steve..' },
['sturgeon'] = { label = 'Sturgeon', weight = 3000, stack = true, close = true, client = { image = 'sturgeon.png' }, description = 'A freshwater lake sturgeon!' },
['tigershark'] = { label = 'Tiger Shark', weight = 12000, stack = true, close = true, client = { image = 'tigershark.png' }, description = 'A saltwater tiger shark!' },
Last updated