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',
},
Last updated