# Inventory Setup

## Item Images

{% file src="<https://2541658584-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FE4RiGZGiWIlAyNceC3lT%2Fuploads%2FlFqrVTT9h0Rp2vtHyuTe%2Fdrone_images.zip?alt=media&token=4492b858-21c5-4992-b577-23a493eec97c>" %}

## Item Configs

### tgiann-inventory items

```lua
fiveous_drone = {
    name = 'fiveous_drone',
    label = 'DV-Phantom X4 Pro',
    weight = 500,
    type = 'item',
    image = 'drone.png',
    useable = true,
    shouldClose = true,
    description = 'Photography Drone, warranty not included. USE to place drone on the ground. Pairable with the Aero App'
},
fiveous_police_drone = {
    name = 'fiveous_drone',
    label = 'Police Phantom X4 Pro',
    rareName = "itemPolice",
    weight = 500,
    type = 'item',
    image = 'drone.png',
    useable = true,
    shouldClose = true,
    description = 'Recon police drone. Good for collecting evidence and tracking suspects.'
},
fiveous_controller = {
    name = 'fiveous_controller',
    label = 'Drone Controller',
    weight = 500,
    type = 'item',
    image = 'drone_controller.png',
    useable = true,
    shouldClose = true,
    description = 'USE to connect to a drone'
},
fiveous_battery = {
    name = 'fiveous_battery',
    label = 'Drone Battery',
    weight = 250,
    type = 'item',
    image = 'drone_battery.png',
    useable = false,
    shouldClose = false,
    description = 'Rechargeable replacement drone battery'
},
fiveous_drone_parts = {
    name = 'fiveous_drone_parts',
    label = 'Crashed Drone Parts',
    weight = 500,
    type = 'item',
    image = 'drone_parts.png',
    useable = false,
    shouldClose = false,
    description = 'A crashed drone, broken into multiple peices. Might be salvageable?'
},
```

### ox\_inventory items

```lua
['fiveous_drone'] = {
    name = 'fiveous_drone',
    label = 'DV-Phantom X4 Pro',
    weight = 500,
    stack = false,
    type = 'item',
    close = true,
    description = 'Photography Drone, warranty not included. USE to place drone on the ground. Pairable with the Aero App',
		client = {
			image = 'drone.png',
    },
},
['fiveous_police_drone'] = {
    name = 'fiveous_drone',
    label = 'Police Phantom X4 Pro',
    rareName = "itemPolice",
    weight = 500,
    stack = false,
    type = 'item',
    close = true,
    description = 'Recon police drone. Good for collecting evidence and tracking suspects.',
		client = {
			image = 'drone.png',
    },
},
['fiveous_controller'] = {
    name = 'fiveous_controller',
    label = 'Drone Controller',
    weight = 500,
    stack = false,
    type = 'item',
    close = true,
    description = 'USE to connect to a drone',
		client = {
			image = 'drone_controller.png',
    },
},
['fiveous_battery'] = {
    name = 'fiveous_battery',
    label = 'Drone Battery',
    weight = 250,
    stack = false,
    type = 'item',
    close = false,
    description = 'Rechargeable replacement drone battery',
		client = {
			image = 'drone_battery.png',
    },
},
['fiveous_drone_parts'] = {
    name = 'fiveous_drone_parts',
    label = 'Crashed Drone Parts',
    weight = 500,
    stack = false,
    type = 'item',
    close = false,
    description = 'A crashed drone, broken into multiple peices. Might be salvageable?',
		client = {
			image = 'drone_parts.png',
    },
},
```
