-- OX INVENTORY
["fishing_rod"] = {
label = "Fishing Rod",
weight = 1,
stack = true,
close = false,
description = "Fishing Rod for fishing"
},
["fishing_license"] = {
label = "Fishing License",
weight = 1,
stack = true,
close = false,
description = "Fishing License"
},
["anchovy"] = {
label = "Anchovy",
weight = 1,
stack = true,
close = false,
description = "Anchovy (Common)"
},
["grouper"] = {
label = "Grouper",
weight = 1,
stack = true,
close = false,
description = "Grouper (Common)"
},
["haddock"] = {
label = "Haddock",
weight = 1,
stack = true,
close = false,
description = "Haddock (Common)"
},
["piranha"] = {
label = "Piranha",
weight = 1,
stack = true,
close = false,
description = "Piranha (Uncommon)"
},
["salmon"] = {
label = "Salmon",
weight = 1,
stack = true,
close = false,
description = "Salmon (Uncommon)"
},
["trout"] = {
label = "Trout",
weight = 1,
stack = true,
close = false,
description = "Trout (Uncommon)"
},
["tuna"] = {
label = "Tuna",
weight = 1,
stack = true,
close = false,
description = "Tuna (Rare)"
},
["shark"] = {
label = "Shark",
weight = 1,
stack = true,
close = false,
description = "Shark (Very Rare)"
},
-- QB-CORE/SHARED/ITEMS.LUA
-- QB-INVENTORY
fishing_rod = {
name = 'fishing_rod',
label = 'Fishing Rod',
weight = 1,
type = 'item',
image = 'fishing_rod.png',
unique = false,
useable = false,
shouldClose = false,
description = "Fishing Rod for fishing"
},
fishing_license = {
name = 'fishing_license',
label = 'Fishing License',
weight = 1,
type = 'item',
image = 'fishing_license.png',
unique = false,
useable = false,
shouldClose = false,
description = "Fishing License"
},
anchovy = {
name = 'anchovy',
label = 'Anchovy',
weight = 1,
type = 'item',
image = 'anchovy.png',
unique = false,
useable = false,
shouldClose = false,
description = "Anchovy (Common)"
},
grouper = {
name = 'grouper',
label = 'Grouper',
weight = 1,
type = 'item',
image = 'grouper.png',
unique = false,
useable = false,
shouldClose = false,
description = "Grouper (Common)"
},
haddock = {
name = 'haddock',
label = 'Haddock',
weight = 1,
type = 'item',
image = 'haddock.png',
unique = false,
useable = false,
shouldClose = false,
description = "Haddock (Common)"
},
piranha = {
name = 'piranha',
label = 'Piranha',
weight = 1,
type = 'item',
image = 'piranha.png',
unique = false,
useable = false,
shouldClose = false,
description = "Piranha (Uncommon)"
},
salmon = {
name = 'salmon',
label = 'Salmon',
weight = 1,
type = 'item',
image = 'salmon.png',
unique = false,
useable = false,
shouldClose = false,
description = "Salmon (Uncommon)"
},
trout = {
name = 'trout',
label = 'Trout',
weight = 1,
type = 'item',
image = 'trout.png',
unique = false,
useable = false,
shouldClose = false,
description = "Trout (Uncommon)"
},
tuna = {
name = 'tuna',
label = 'Tuna',
weight = 1,
type = 'item',
image = 'tuna.png',
unique = false,
useable = false,
shouldClose = false,
description = "Tuna (Rare)"
},
shark = {
name = 'shark',
label = 'Shark',
weight = 1,
type = 'item',
image = 'shark.png',
unique = false,
useable = false,
shouldClose = false,
description = "Shark (Very Rare)"
},