Files
Elite-Gaming-FiveM/resources/scully_radio2/qb-inventory_items.lua
T
2025-01-23 10:14:23 -08:00

170 lines
5.2 KiB
Lua

return {
['radio'] = {
['name'] = 'radio',
['label'] = 'Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_blue'] = {
['name'] = 'radio_blue',
['label'] = 'Blue Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_blue.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_brown'] = {
['name'] = 'radio_brown',
['label'] = 'Brown Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_brown.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_cherry'] = {
['name'] = 'radio_cherry',
['label'] = 'Cherry Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_cherry.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_coral'] = {
['name'] = 'radio_coral',
['label'] = 'Coral Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_coral.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_cyan'] = {
['name'] = 'radio_cyan',
['label'] = 'Cyan Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_cyan.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_green'] = {
['name'] = 'radio_green',
['label'] = 'Green Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_green.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_mint'] = {
['name'] = 'radio_mint',
['label'] = 'Mint Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_mint.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_orange'] = {
['name'] = 'radio_orange',
['label'] = 'Orange Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_orange.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_pink'] = {
['name'] = 'radio_pink',
['label'] = 'Pink Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_pink.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_purple'] = {
['name'] = 'radio_purple',
['label'] = 'Purple Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_purple.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_red'] = {
['name'] = 'radio_red',
['label'] = 'Red Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_red.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_yellow'] = {
['name'] = 'radio_yellow',
['label'] = 'Yellow Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_yellow.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
['radio_white'] = {
['name'] = 'radio_white',
['label'] = 'White Radio',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'radio_white.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'You can communicate with this through a signal'
},
}