Inventory Setup
Add to items.lua
['digital_camera'] = {
label = 'Digital Camera',
weight = 500,
stack = false,
close = true,
description = 'Perfect for Taking High-Quality Professional Photos',
},
['print'] = {
label = 'Professional Photo',
weight = 1,
stack = false,
close = true,
description = nil, -- should be nil
},
['spoileroid_camera'] = {
label = 'Spoileroid Camera',
weight = 500,
stack = false,
close = true,
description = 'Authentic Retro-Style Camera',
},
['photo'] = {
label = 'Spoileroid" Photo',
weight = 1,
stack = false,
close = true,
description = nil, -- should be nil
},
['photo_paper'] = {
label = 'Photo Paper',
weight = 1,
stack = true,
close = true,
description = 'Required to print Professional Digital Photos',
},
['spoileroid_paper'] = {
label = 'Print Paper - Spoileroid',
weight = 1,
stack = true,
close = true,
description = 'Required to print "Spoileroid" Photos',
},
['photo_printer'] = {
label = 'Photo Printer',
weight = 5000,
stack = false,
close = true,
description = 'Equipment used to print Professional Digital Photos',
},
['sd_card'] = {
label = 'SD Card',
weight = 10,
stack = false,
close = true,
description = 'Used to Store Digital Photos',
},
['camera_user_manual'] = {
label = 'Camera User Manual',
weight = 10,
stack = false,
close = true,
description = 'Tips & Tricks for Your New Camera',
},
['default_lens'] = {
label = 'Standard Lens',
weight = 300,
stack = false,
close = true,
description = '50mm lens, suitable for general photography',
},
['wide_angle_lens'] = {
label = 'Wide-Angle Lens',
weight = 300,
stack = false,
close = true,
description = '24mm lens, great for landscapes and architecture',
},
['standard_zoom_lens'] = {
label = 'Standard Zoom Lens',
weight = 300,
stack = false,
close = true,
description = '24-70mm lens, versatile for various photography styles',
},
['standard_prime_lens'] = {
label = 'Standard Prime Lens',
weight = 300,
stack = false,
close = true,
description = '35mm lens, excellent for portraits and street photography',
},
['ultra_wide_angle_lens'] = {
label = 'Ultra Wide-Angle Lens',
weight = 300,
stack = false,
close = true,
description = '14mm lens, perfect for capturing expansive scenes',
},
['medium_telephoto_lens'] = {
label = 'Medium Telephoto Lens',
weight = 300,
stack = false,
close = true,
description = '135mm lens, ideal for sports and wildlife photography',
},
['telephoto_zoom_lens'] = {
label = 'Telephoto Zoom Lens',
weight = 300,
stack = false,
close = true,
description = '70-200mm lens, great for distant subjects and events',
},
['macro_lens'] = {
label = 'Macro Lens',
weight = 300,
stack = false,
close = true,
description = '100mm lens, specialized for close-up photography',
},
['portrait_prime_lens'] = {
label = 'Portrait Prime Lens',
weight = 300,
stack = false,
close = true,
description = '85mm lens, perfect for portrait photography',
},
['super_telephoto_lens'] = {
label = 'Super Telephoto Lens',
weight = 300,
stack = false,
close = true,
description = '400mm lens, great for for long-range photography',
},
['super_telephoto_mega_zoom_lens'] = {
label = 'Super Telephoto Mega-Zoom Lens',
weight = 300,
stack = false,
close = true,
description = '1200mm lens, specialized for extreme distance photography',
},
['camera_light'] = {
label = 'Camera Light',
weight = 1000,
stack = false,
close = true,
description = 'Used to make the camera flash come from another direction',
},
['complete_lens_kit'] = {
label = 'Complete Lens Kit',
weight = 20000,
stack = false,
close = true,
description = 'A complete kit of lenses for your camera',
},
["digital_camera"] = {
name = "digital_camera",
label = "Digital Camera",
weight = 500,
type = "item",
image = "digital_camera.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Perfect for Taking High-Quality Professional Photos"
},
["print"] = {
name = "print",
label = "Professional Photo",
weight = 1,
type = "item",
image = "print.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = nil
},
["spoileroid_camera"] = {
name = "spoileroid_camera",
label = "Spoileroid Camera",
weight = 500,
type = "item",
image = "spoileroid_camera.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Authentic Retro-Style Camera"
},
["photo"] = {
name = "photo",
label = "Spoileroid\" Photo",
weight = 1,
type = "item",
image = "photo.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = nil
},
["photo_paper"] = {
name = "photo_paper",
label = "Photo Paper",
weight = 1,
type = "item",
image = "photo_paper.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = "Required to print Professional Digital Photos"
},
["spoileroid_paper"] = {
name = "spoileroid_paper",
label = "Print Paper - Spoileroid",
weight = 1,
type = "item",
image = "spoileroid_paper.png",
unique = false,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Required to print "Spoileroid" Photos'
},
["photo_printer"] = {
name = "photo_printer",
label = "Photo Printer",
weight = 5000,
type = "item",
image = "photo_printer.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Equipment used to print Professional Digital Photos"
},
["sd_card"] = {
name = "sd_card",
label = "SD Card",
weight = 10,
type = "item",
image = "sd_card.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Used to Store Digital Photos"
},
["camera_user_manual"] = {
name = "camera_user_manual",
label = "Camera User Manual",
weight = 10,
type = "item",
image = "camera_user_manual.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Tips & Tricks for Your New Camera"
},
["default_lens"] = {
name = "default_lens",
label = "Standard Lens",
weight = 300,
type = "item",
image = "default_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "50mm lens, suitable for general photography"
},
["wide_angle_lens"] = {
name = "wide_angle_lens",
label = "Wide-Angle Lens",
weight = 300,
type = "item",
image = "wide_angle_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "24mm lens, great for landscapes and architecture"
},
["standard_zoom_lens"] = {
name = "standard_zoom_lens",
label = "Standard Zoom Lens",
weight = 300,
type = "item",
image = "standard_zoom_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "24-70mm lens, versatile for various photography styles"
},
["standard_prime_lens"] = {
name = "standard_prime_lens",
label = "Standard Prime Lens",
weight = 300,
type = "item",
image = "standard_prime_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "35mm lens, excellent for portraits and street photography"
},
["ultra_wide_angle_lens"] = {
name = "ultra_wide_angle_lens",
label = "Ultra Wide-Angle Lens",
weight = 300,
type = "item",
image = "ultra_wide_angle_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "14mm lens, perfect for capturing expansive scenes"
},
["medium_telephoto_lens"] = {
name = "medium_telephoto_lens",
label = "Medium Telephoto Lens",
weight = 300,
type = "item",
image = "medium_telephoto_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "135mm lens, ideal for sports and wildlife photography"
},
["telephoto_zoom_lens"] = {
name = "telephoto_zoom_lens",
label = "Telephoto Zoom Lens",
weight = 300,
type = "item",
image = "telephoto_zoom_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "70-200mm lens, great for distant subjects and events"
},
["macro_lens"] = {
name = "macro_lens",
label = "Macro Lens",
weight = 300,
type = "item",
image = "macro_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "100mm lens, specialized for close-up photography"
},
["portrait_prime_lens"] = {
name = "portrait_prime_lens",
label = "Portrait Prime Lens",
weight = 300,
type = "item",
image = "portrait_prime_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "85mm lens, perfect for portrait photography"
},
["super_telephoto_lens"] = {
name = "super_telephoto_lens",
label = "Super Telephoto Lens",
weight = 300,
type = "item",
image = "super_telephoto_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "400mm lens, great for for long-range photography"
},
["super_telephoto_mega_zoom_lens"] = {
name = "super_telephoto_mega_zoom_lens",
label = "Super Telephoto Mega-Zoom Lens",
weight = 300,
type = "item",
image = "super_telephoto_mega_zoom_lens.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "1200mm lens, specialized for extreme distance photography"
},
["camera_light"] = {
name = "camera_light",
label = "Camera Light",
weight = 1000,
type = "item",
image = "camera_light.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "Used to make the camera flash come from another direction"
},
["complete_lens_kit"] = {
name = "complete_lens_kit",
label = "Complete Lens Kit",
weight = 20000,
type = "item",
image = "complete_lens_kit.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "A complete kit of lenses for your camera"
}
Last updated