Inventory Setup
Add to items.lua
['acetone'] = {
label = 'Acetone',
weight = 1000,
stack = true,
close = true,
description = 'A highly volatile chemical...',
},
['lithium'] = {
label = 'Lithium',
weight = 500,
stack = true,
close = true,
description = 'Lithium, commonly found in batteries.',
},
['meth_testkit'] = {
label = 'Meth Test Kit',
weight = 500,
stack = true,
close = true,
description = 'Meth Test Kit',
},
['eggtimer'] = {
label = 'Egg Timer',
weight = 500,
stack = true,
close = true,
description = 'Egg Timer',
},
['meth'] = {
label = '1g of Meth',
weight = 100,
stack = true,
close = true,
description = 'A gram of the finest teeth rotting goodness!',
},
['meth_1oz'] = {
label = 'Ounce of Meth',
weight = 280,
stack = true,
close = true,
description = 'A ounce of the finest teeth rotting goodness!',
},
['gasmask'] = {
label = 'Gas Mask',
weight = 3000,
stack = false,
close = true,
description = 'One size fits all!',
},
['hydrochloricacid'] = {
label = 'Hydrochloric Acid',
weight = 500,
stack = true,
close = true,
description = 'Highly acidic.',
},
['red_phos'] = {
label = 'Red Phosphorus',
weight = 500,
stack = true,
close = true,
description = 'A component used in match-sticks.',
},
['pseudoephedrine'] = {
label = 'Pseudoephedrine',
weight = 500,
stack = true,
close = true,
description = 'Over-The-Counter medication.',
},
['crushed_pseudo'] = {
label = 'Crushed Pseudo',
weight = 500,
stack = true,
close = true,
description = 'Over-The-Counter medication crushed into a fine powder.',
},
['pestle_and_mortar'] = {
label = 'Pestle and Mortar',
weight = 2000,
stack = true,
close = true,
description = 'Used for crushing ingredients.',
},
['methlab'] = {
label = 'Portable Meth-Lab',
weight = 10000,
stack = true,
close = true,
description = 'Meth equipment for on-the-go!',
},
['beaker'] = {
label = 'Chemical Beaker',
weight = 1500,
stack = true,
close = true,
description = 'Pyrex beaker for mixing chemicals!',
},
['food_coloring'] = {
label = 'Food Coloring (Blue)',
weight = 500,
stack = true,
close = true,
description = 'Give your food that "Jesse Special"',
},
Last updated