Inventory Setup
Add to items.lua
["trap_phone"] = {
label = 'Trap Phone',
description = 'Trap-Line Bling...',
weight = 100,
stack = false,
close = true,
},
["scales"] = {
label = 'Scales',
description = 'Great for weighing things',
weight = 50,
stack = false,
close = true,
},
["batteries"] = {
label = 'AAA Batteries',
description = 'Extra long life',
weight = 20,
stack = true,
close = true,
},
["baggies"] = {
label = 'Baggies',
description = 'Great for holding small things',
weight = 20,
stack = true,
close = true,
},
["large_baggies"] = {
label = 'Large Baggies',
description = 'Great for holding bigger amounts of small things',
weight = 20,
stack = true,
close = true,
},
['trap_phone'] = {
name = 'trap_phone',
label = 'Trap Phone',
weight = 100,
type = 'item',
image = 'trap_phone.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Trap-Line Bling...',
},
['scales'] = {
name = 'scales',
label = 'Scales',
weight = 50,
type = 'item',
image = 'scales.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Great for weighing things',
},
['batteries'] = {
name = 'batteries',
label = 'AAA Batteries',
weight = 20,
type = 'item',
image = 'batteries.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Extra long life',
},
['baggies'] = {
name = 'baggies',
label = 'Baggies',
weight = 20,
type = 'item',
image = 'baggies.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Great for holding small things',
},
['large_baggies'] = {
name = 'large_baggies',
label = 'Large Baggies',
weight = 20,
type = 'item',
image = 'large_baggies.png',
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Great for holding bigger amounts of small things',
},
Last updated