heres the list i made so far for Ox_inventory
local Items = {
{
name = ‘pot’,
label = ‘Plant Pot’,
weight = 500,
stack = true,
close = true,
description = ‘Used for planting seeds.’
},
{
name = ‘shovel’,
label = ‘Shovel’,
weight = 800,
stack = false,
close = true,
description = ‘Useful for digging soil.’
},
{
name = ‘fertilizer’,
label = ‘Fertilizer’,
weight = 300,
stack = true,
close = true,
description = ‘Improves plant growth.’
},
{
name = ‘distilledwater’,
label = ‘Distilled Water’,
weight = 300,
stack = true,
close = true,
description = ‘Keeps the plant hydrated.’
},
{
name = ‘herbicide’,
label = ‘Herbicide’,
weight = 300,
stack = true,
close = true,
description = ‘Used to maintain plant health.’
},
{
name = ‘canister’,
label = ‘Canister’,
weight = 1000,
stack = true,
close = true,
description = ‘Canister of nutrients or chemicals.’
},
{
name = ‘weed_seed’,
label = ‘Weed Seed’,
weight = 50,
stack = true,
close = true,
description = ‘Seed for growing weed.’
},
{
name = ‘weed_leaf’,
label = ‘Weed Leaf’,
weight = 100,
stack = true,
close = true,
description = ‘Harvested product of the weed plant.’
},
}