Items
K9 Items
QB-Core (qb-core/shared/items.lua
)
qb-core/shared/items.lua
)dogrevive = {
name = "dogrevive",
label = "Dog Revive Kit",
weight = 100,
type = "item",
image = "dogrevive.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Revives your dog with 100 health."
},
dogreviveplus = {
name = "dogreviveplus",
label = "Dog Revive Plus Kit",
weight = 120,
type = "item",
image = "dogreviveplus.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Revives your dog with 150 health."
},
dogfood = {
name = "dogfood",
label = "Dog Food",
weight = 200,
type = "item",
image = "dogfood.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Basic food that restores 20 hunger."
},
dogpremiumfood = {
name = "dogpremiumfood",
label = "Premium Dog Food",
weight = 250,
type = "item",
image = "dogpremiumfood.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Premium quality food that restores 40 hunger."
},
dogwater = {
name = "dogwater",
label = "Dog Water",
weight = 100,
type = "item",
image = "dogwater.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Water that restores 20 thirst."
},
dogfreshwater = {
name = "dogfreshwater",
label = "Fresh Dog Water",
weight = 120,
type = "item",
image = "dogfreshwater.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Fresh water that restores 40 thirst."
},
dogenergy = {
name = "dogenergy",
label = "Dog Energy Snack",
weight = 80,
type = "item",
image = "dogenergy.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Snack that restores 20 energy."
},
dogenergyplus = {
name = "dogenergyplus",
label = "Dog Energy Bar",
weight = 90,
type = "item",
image = "dogenergyplus.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Energy bar that restores 40 energy."
},
dogleash = {
name = "dogleash",
label = "Dog Leash",
weight = 50,
type = "item",
image = "dogleash.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Basic leash to walk your dog."
},
dogleashpro = {
name = "dogleashpro",
label = "Professional Dog Leash",
weight = 60,
type = "item",
image = "dogleashpro.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Professional leash with higher durability."
},
dogconnect = {
name = "dogconnect",
label = "Dog Connector",
weight = 80,
type = "item",
image = "dogconnect.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Connector device for dogs."
},
dogtennis = {
name = "dogtennis",
label = "Dog Tennis Ball",
weight = 20,
type = "item",
image = "dogtennis.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "A tennis ball for fetch games."
},
OX Inventory (ox_inventory/data/items.lua
)
ox_inventory/data/items.lua
)['dogrevive'] = {
label = 'Dog Revive Kit',
weight = 100,
stack = true,
close = true,
description = 'Revives your dog with 100 health.'
},
['dogreviveplus'] = {
label = 'Dog Revive Plus Kit',
weight = 120,
stack = true,
close = true,
description = 'Revives your dog with 150 health.'
},
['dogfood'] = {
label = 'Dog Food',
weight = 200,
stack = true,
close = true,
description = 'Basic food that restores 20 hunger.'
},
['dogpremiumfood'] = {
label = 'Premium Dog Food',
weight = 250,
stack = true,
close = true,
description = 'Premium food that restores 40 hunger.'
},
['dogwater'] = {
label = 'Dog Water',
weight = 100,
stack = true,
close = true,
description = 'Restores 20 thirst.'
},
['dogfreshwater'] = {
label = 'Fresh Dog Water',
weight = 120,
stack = true,
close = true,
description = 'Restores 40 thirst.'
},
['dogenergy'] = {
label = 'Dog Energy Snack',
weight = 80,
stack = true,
close = true,
description = 'Restores 20 energy.'
},
['dogenergyplus'] = {
label = 'Dog Energy Bar',
weight = 90,
stack = true,
close = true,
description = 'Restores 40 energy.'
},
['dogleash'] = {
label = 'Dog Leash',
weight = 50,
stack = true,
close = true,
description = 'Basic leash to walk your dog.'
},
['dogleashpro'] = {
label = 'Professional Dog Leash',
weight = 60,
stack = true,
close = true,
description = 'Professional leash with higher durability.'
},
['dogconnect'] = {
label = 'Dog Connector',
weight = 80,
stack = true,
close = true,
description = 'Connector device for dogs.'
},
['dogtennis'] = {
label = 'Dog Tennis Ball',
weight = 20,
stack = true,
close = true,
description = 'A tennis ball for fetch games.'
},
Last updated