> For the complete documentation index, see [llms.txt](https://docs.djscollections.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.djscollections.com/lore-food-pack/uwu-cafe/installation.md).

# Installation

{% stepper %}
{% step %}
**Download the resources**

Download both `cfx-djs-anims` and `cfx-djs-uwucafe`,  [CFX portal](https://portal.cfx.re/login) and place them in your resources folder.
{% endstep %}

{% step %}
**Add to server.cfg**

Add `cfx-djs-anims` and `cfx-djs-uwucafe` to your `server.cfg` after all dependencies

```
ensure cfx-djs-anims
ensure cfx-djs-uwucafe
```

{% endstep %}

{% step %}
**Add Items to Inventory**

Add the required items to your inventory resource — see[ Items](#items) below.
{% endstep %}

{% step %}
**Optional: add items to addon Consumable Resources**

Add the required (Non-Consumable) items to supported addon consumable resource — see [Addon Consumables Items](#addon-consumables-items) below.
{% endstep %}

{% step %}
**Optional: inventory icons**

Custom inventory icons are included—check Inventory Icons below. If you’d like to use them, simply copy the files into your inventory resource’s image directory.
{% endstep %}
{% endstepper %}

{% hint style="warning" %}
WARNING

Some anti-cheats may block props from spawning or limit certain models from loading in-game, so if your props are not appearing, invisible, or being instantly removed, it’s likely an anti-cheat issue rather than the resource itself. Please check your server console and in-game F8 console for more details, such as blocked entity warnings, model load failures, or related error codes—these are common signs of interference. If this happens, we recommend reaching out to your anticheat’s developer or support team with those errors and reviewing your anticheat documentation for any settings related to prop, model, or entity restrictions that may need to be adjusted. If you do report this issue to us, we’ll document it in our **common issues** section to help others who may run into the same problem.
{% endhint %}

***

## Items <a href="#items" id="items"></a>

Make sure to add all required items to your inventory resource using the format that matches your setup.

{% tabs %}
{% tab title="Ox Inventory (Consumable)" %}
Add the items below to your `ox_inventory` into `data/items.lua`.

{% code overflow="wrap" expandable="true" %}

```
['djs_bentobox_heart'] = {
	label = 'Bentobox Heart',
	weight = 0,
	client = {
		status = { hunger = 200000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_bentobox_heart`, bone = 18905, pos = vec3(0.1, 0.0, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bentobox_heart2'] = {
	label = 'Bentobox Heart2',
	weight = 0,
	client = {
		status = { hunger = 200000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_bentobox_heart2`, bone = 18905, pos = vec3(0.1, 0.0, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bentobox_kidsmeal'] = {
	label = 'Bentobox Kidsmeal',
	weight = 0,
	client = {
		status = { hunger = 200000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_bentobox_kidsmeal`, bone = 18905, pos = vec3(0.1, 0.04, 0.01), rot = vec3(9.0, -4.0, 195.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_chai'] = {
	label = 'Bobatea Chai',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_chai`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_chocolate'] = {
	label = 'Bobatea Chocolate',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_chocolate`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_cookiesandcream'] = {
	label = 'Bobatea Cookiesandcream',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_cookiesandcream`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_cottoncandy'] = {
	label = 'Bobatea Cottoncandy',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_cottoncandy`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_grapefruit'] = {
	label = 'Bobatea Grapefruit',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_grapefruit`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_honeydew'] = {
	label = 'Bobatea Honeydew',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_honeydew`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_mango'] = {
	label = 'Bobatea Mango',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_mango`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_peach'] = {
	label = 'Bobatea Peach',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_peach`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_pinacolada'] = {
	label = 'Bobatea Pinacolada',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_pinacolada`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_strawberry'] = {
	label = 'Bobatea Strawberry',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_strawberry`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bobatea_taro'] = {
	label = 'Bobatea Taro',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_bobatea_taro`, bone = 58868, pos = vec3(0.058, 0.044, 0.0), rot = vec3(0.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bowl_beefbibimbap'] = {
	label = 'Bowl Beefbibimbap',
	weight = 0,
	client = {
		status = { hunger = 250000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_bowl_beefbibimbap`, bone = 18905, pos = vec3(0.1, 0.04, 0.01), rot = vec3(0.01, 9.0, -4.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_bowl_veggiebibimbap'] = {
	label = 'Bowl Veggiebibimbap',
	weight = 0,
	client = {
		status = { hunger = 250000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_bowl_veggiebibimbap`, bone = 18905, pos = vec3(0.1, 0.04, 0.01), rot = vec3(0.01, 9.0, -4.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_glass_greentea'] = {
	label = 'Glass Greentea',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_glass_greentea`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_glass_icetea'] = {
	label = 'Glass Icetea',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_glass_icetea`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_japanese_omelette'] = {
	label = 'Japanese Omelette',
	weight = 0,
	client = {
		status = { hunger = 150000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_japanese_omelette`, bone = 18905, pos = vec3(0.1, 0.0, 0.01), rot = vec3(-20.0, 0.0, 0.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_kiwicrepe_chocolate'] = {
	label = 'Kiwicrepe Chocolate',
	weight = 0,
	client = {
		status = { hunger = 100000 },
		anim = { dict = 'anim@djs@food@cone', clip = 'djs_food_cone_bite_single' },
		prop = { model = `djs_kiwicrepe_chocolate`, bone = 58867, pos = vec3(0.045, 0.038, -0.111), rot = vec3(0.045, 0.038, -0.111) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_kiwicrepe_strawberry'] = {
	label = 'Kiwicrepe Strawberry',
	weight = 0,
	client = {
		status = { hunger = 100000 },
		anim = { dict = 'anim@djs@food@cone', clip = 'djs_food_cone_bite_single' },
		prop = { model = `djs_kiwicrepe_strawberry`, bone = 58867, pos = vec3(0.045, 0.038, -0.111), rot = vec3(0.045, 0.038, -0.111) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_kiwicrepe_vanilla'] = {
	label = 'Kiwicrepe Vanilla',
	weight = 0,
	client = {
		status = { hunger = 100000 },
		anim = { dict = 'anim@djs@food@cone', clip = 'djs_food_cone_bite_single' },
		prop = { model = `djs_kiwicrepe_vanilla`, bone = 58867, pos = vec3(0.045, 0.038, -0.111), rot = vec3(0.045, 0.038, -0.111) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_macaron_brown'] = {
	label = 'Macaron Brown',
	weight = 0,
	client = {
		status = { hunger = 50000 },
		anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger_fp' },
		prop = { model = `djs_macaron_brown`, bone = 18905, pos = vec3(0.14, 0.06, 0.02), rot = vec3(-168.0, 320.0, 28.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_macaron_green'] = {
	label = 'Macaron Green',
	weight = 0,
	client = {
		status = { hunger = 50000 },
		anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger_fp' },
		prop = { model = `djs_macaron_green`, bone = 18905, pos = vec3(0.14, 0.06, 0.02), rot = vec3(-168.0, 320.0, 28.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_macaron_lightbrown'] = {
	label = 'Macaron Lightbrown',
	weight = 0,
	client = {
		status = { hunger = 50000 },
		anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger_fp' },
		prop = { model = `djs_macaron_lightbrown`, bone = 18905, pos = vec3(0.14, 0.06, 0.02), rot = vec3(-168.0, 320.0, 28.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_macaron_lightpink'] = {
	label = 'Macaron Lightpink',
	weight = 0,
	client = {
		status = { hunger = 50000 },
		anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger_fp' },
		prop = { model = `djs_macaron_lightpink`, bone = 18905, pos = vec3(0.14, 0.06, 0.02), rot = vec3(-168.0, 320.0, 28.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_macaron_pink'] = {
	label = 'Macaron Pink',
	weight = 0,
	client = {
		status = { hunger = 50000 },
		anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger_fp' },
		prop = { model = `djs_macaron_pink`, bone = 18905, pos = vec3(0.14, 0.06, 0.02), rot = vec3(-168.0, 320.0, 28.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_macaron_yellow'] = {
	label = 'Macaron Yellow',
	weight = 0,
	client = {
		status = { hunger = 50000 },
		anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger_fp' },
		prop = { model = `djs_macaron_yellow`, bone = 18905, pos = vec3(0.14, 0.06, 0.02), rot = vec3(-168.0, 320.0, 28.0) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_milkshake_chocolatepretzel'] = {
	label = 'Milkshake Chocolatepretzel',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_milkshake_chocolatepretzel`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_milkshake_cookiemonster'] = {
	label = 'Milkshake Cookiemonster',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_milkshake_cookiemonster`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_milkshake_gummybear'] = {
	label = 'Milkshake Gummybear',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_milkshake_gummybear`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_milkshake_strawberryshortcake'] = {
	label = 'Milkshake Strawberryshortcake',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_milkshake_strawberryshortcake`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_plate_bearwaffles'] = {
	label = 'Plate Bearwaffles',
	weight = 0,
	client = {
		status = { hunger = 200000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_plate_bearwaffles`, bone = 26612, pos = vec3(0.031, -0.067, 0.0), rot = vec3(65.4, 0.0, 22.8) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_plate_pandawaffle'] = {
	label = 'Plate Pandawaffle',
	weight = 0,
	client = {
		status = { hunger = 200000 },
		anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
		prop = { model = `djs_fork`, bone = 57005, pos = vec3(0.14, 0.02, 0.01), rot = vec3(-118.0, 192.0, 24.0) },
		propTwo = { model = `djs_plate_pandawaffle`, bone = 26612, pos = vec3(0.013, -0.047, 0.0), rot = vec3(82.5, 0.0, 22.8) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_soda_green'] = {
	label = 'Soda Green',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_soda_green`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_soda_pink'] = {
	label = 'Soda Pink',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_soda_pink`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_soda_yellow'] = {
	label = 'Soda Yellow',
	weight = 0,
	client = {
		status = { thirst = 100000 },
		anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
		prop = { model = `djs_soda_yellow`, bone = 58868, pos = vec3(0.04, 0.052, 0.0), rot = vec3(0.0, 0.0, -72.45) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_strawberrycrepe_chocolate'] = {
	label = 'Strawberrycrepe Chocolate',
	weight = 0,
	client = {
		status = { hunger = 100000 },
		anim = { dict = 'anim@djs@food@cone', clip = 'djs_food_cone_bite_single' },
		prop = { model = `djs_strawberrycrepe_chocolate`, bone = 58867, pos = vec3(0.045, 0.038, -0.111), rot = vec3(0.045, 0.038, -0.111) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_strawberrycrepe_strawberry'] = {
	label = 'Strawberrycrepe Strawberry',
	weight = 0,
	client = {
		status = { hunger = 100000 },
		anim = { dict = 'anim@djs@food@cone', clip = 'djs_food_cone_bite_single' },
		prop = { model = `djs_strawberrycrepe_strawberry`, bone = 58867, pos = vec3(0.045, 0.038, -0.111), rot = vec3(0.045, 0.038, -0.111) },
		usetime = 2500,
		cancel = true,
	},
},

['djs_strawberrycrepe_vanilla'] = {
	label = 'Strawberrycrepe Vanilla',
	weight = 0,
	client = {
		status = { hunger = 100000 },
		anim = { dict = 'anim@djs@food@cone', clip = 'djs_food_cone_bite_single' },
		prop = { model = `djs_strawberrycrepe_vanilla`, bone = 58867, pos = vec3(0.045, 0.038, -0.111), rot = vec3(0.045, 0.038, -0.111) },
		usetime = 2500,
		cancel = true,
	},
},

```

{% endcode %}
{% endtab %}

{% tab title="Ox Inventory (Non-Consumable)" %}
Add the items below to your `ox_inventory` into `data/items.lua`.

{% code overflow="wrap" expandable="true" %}

```
['djs_bentobox_heart'] = {
    label = 'Heart Bento Box',
    weight = 300,
    stack = true,
    close = true,
},

['djs_bentobox_heart2'] = {
    label = 'Heart Bento Box 2',
    weight = 300,
    stack = true,
    close = true,
},

['djs_bentobox_kidsmeal'] = {
    label = 'Kids Meal Bento Box',
    weight = 300,
    stack = true,
    close = true,
},

['djs_bobatea_chai'] = {
    label = 'Chai Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_chocolate'] = {
    label = 'Chocolate Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_cookiesandcream'] = {
    label = 'Cookies and Cream Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_cottoncandy'] = {
    label = 'Cotton Candy Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_grapefruit'] = {
    label = 'Grapefruit Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_honeydew'] = {
    label = 'Honeydew Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_mango'] = {
    label = 'Mango Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_peach'] = {
    label = 'Peach Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_pinacolada'] = {
    label = 'Pina Colada Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_strawberry'] = {
    label = 'Strawberry Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bobatea_taro'] = {
    label = 'Taro Boba Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_bowl_beefbibimbap'] = {
    label = 'Beef Bibimbap Bowl',
    weight = 350,
    stack = true,
    close = true,
},

['djs_bowl_veggiebibimbap'] = {
    label = 'Veggie Bibimbap Bowl',
    weight = 350,
    stack = true,
    close = true,
},

['djs_glass_greentea'] = {
    label = 'Green Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_glass_icetea'] = {
    label = 'Ice Tea',
    weight = 200,
    stack = true,
    close = true,
},

['djs_japanese_omelette'] = {
    label = 'Japanese Omelette',
    weight = 200,
    stack = true,
    close = true,
},

['djs_kiwicrepe_chocolate'] = {
    label = 'Chocolate Kiwi Crepe',
    weight = 200,
    stack = true,
    close = true,
},

['djs_kiwicrepe_strawberry'] = {
    label = 'Strawberry Kiwi Crepe',
    weight = 200,
    stack = true,
    close = true,
},

['djs_kiwicrepe_vanilla'] = {
    label = 'Vanilla Kiwi Crepe',
    weight = 200,
    stack = true,
    close = true,
},

['djs_macaron_brown'] = {
    label = 'Brown Macaron',
    weight = 50,
    stack = true,
    close = true,
},

['djs_macaron_green'] = {
    label = 'Green Macaron',
    weight = 50,
    stack = true,
    close = true,
},

['djs_macaron_lightbrown'] = {
    label = 'Light Brown Macaron',
    weight = 50,
    stack = true,
    close = true,
},

['djs_macaron_lightpink'] = {
    label = 'Light Pink Macaron',
    weight = 50,
    stack = true,
    close = true,
},

['djs_macaron_pink'] = {
    label = 'Pink Macaron',
    weight = 50,
    stack = true,
    close = true,
},

['djs_macaron_yellow'] = {
    label = 'Yellow Macaron',
    weight = 50,
    stack = true,
    close = true,
},

['djs_milkshake_chocolatepretzel'] = {
    label = 'Chocolate Pretzel Milkshake',
    weight = 200,
    stack = true,
    close = true,
},

['djs_milkshake_cookiemonster'] = {
    label = 'Cookie Monster Milkshake',
    weight = 200,
    stack = true,
    close = true,
},

['djs_milkshake_gummybear'] = {
    label = 'Gummy Bear Milkshake',
    weight = 200,
    stack = true,
    close = true,
},

['djs_milkshake_strawberryshortcake'] = {
    label = 'Strawberry Shortcake Milkshake',
    weight = 200,
    stack = true,
    close = true,
},

['djs_plate_bearwaffles'] = {
    label = 'Plate of Bear Waffles',
    weight = 250,
    stack = true,
    close = true,
},

['djs_plate_pandawaffle'] = {
    label = 'Plate of Panda Waffles',
    weight = 250,
    stack = true,
    close = true,
},

['djs_soda_green'] = {
    label = 'Uwu Apple Soda',
    weight = 200,
    stack = true,
    close = true,
},

['djs_soda_pink'] = {
    label = 'Uwu Melon Soda',
    weight = 200,
    stack = true,
    close = true,
},

['djs_soda_yellow'] = {
    label = 'Uwu Melon Soda',
    weight = 200,
    stack = true,
    close = true,
},

['djs_strawberrycrepe_chocolate'] = {
    label = 'Chocolate Strawberry Crepe',
    weight = 200,
    stack = true,
    close = true,
},

['djs_strawberrycrepe_strawberry'] = {
    label = 'Strawberry Strawberry Crepe',
    weight = 200,
    stack = true,
    close = true,
},

['djs_strawberrycrepe_vanilla'] = {
    label = 'Vanilla Strawberry Crepe',
    weight = 200,
    stack = true,
    close = true,
},

```

{% endcode %}
{% endtab %}

{% tab title="QS Inventory (Consumables)" %}
Add the items below to your `qs-inventory` into `shared/items.lua`.

{% code expandable="true" %}

```
Soon!
```

{% endcode %}
{% endtab %}

{% tab title="QS Inventory (Non-(Consumables)" %}
Add the items below to your `qs-inventory` into `shared/items.lua`.

{% code expandable="true" %}

```
Soon!
```

{% endcode %}
{% endtab %}
{% endtabs %}

***

## Addon Consumables Items

Make sure to add all required items to your inventory resource using the format that matches your setup.

{% tabs %}
{% tab title="Devcore Needs" %}
Add the items below to your `devcore_needs` into `data/items.lua`.

{% code fullWidth="false" expandable="true" %}

```
["djs_bentobox_heart"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_bentobox_heart',
            BoneID = 18905,
            Offset = vector3(0.1, 0.0, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 200000,
    },
},

["djs_bentobox_heart2"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_bentobox_heart2',
            BoneID = 18905,
            Offset = vector3(0.1, 0.0, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 200000,
    },
},

["djs_bentobox_kidsmeal"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_bentobox_kidsmeal',
            BoneID = 18905,
            Offset = vector3(0.1, 0.04, 0.01),
            Rot = vector3(9.0, -4.0, 195.0),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 200000,
    },
},

["djs_bobatea_chai"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_chai',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_chocolate"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_chocolate',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_cookiesandcream"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_cookiesandcream',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_cottoncandy"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_cottoncandy',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_grapefruit"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_grapefruit',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_honeydew"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_honeydew',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_mango"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_mango',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_peach"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_peach',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_pinacolada"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_pinacolada',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_strawberry"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_strawberry',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bobatea_taro"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_bobatea_taro',
            BoneID = 58868,
            Offset = vector3(0.058, 0.044, 0.0),
            Rot = vector3(0.0, 0.0, 0.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_bowl_beefbibimbap"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_bowl_beefbibimbap',
            BoneID = 18905,
            Offset = vector3(0.1, 0.04, 0.01),
            Rot = vector3(0.01, 9.0, -4.0),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 250000,
    },
},

["djs_bowl_veggiebibimbap"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_bowl_veggiebibimbap',
            BoneID = 18905,
            Offset = vector3(0.1, 0.04, 0.01),
            Rot = vector3(0.01, 9.0, -4.0),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 250000,
    },
},

["djs_glass_greentea"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_glass_greentea',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_glass_icetea"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_glass_icetea',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_japanese_omelette"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_japanese_omelette',
            BoneID = 18905,
            Offset = vector3(0.1, 0.0, 0.01),
            Rot = vector3(-20.0, 0.0, 0.0),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 150000,
    },
},

["djs_kiwicrepe_chocolate"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_kiwicrepe_chocolate',
            BoneID = 58867,
            Offset = vector3(0.045, 0.038, -0.111),
            Rot = vector3(0.045, 0.038, -0.111),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@cone",
            anim = "djs_food_cone_bite_single",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_kiwicrepe_strawberry"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_kiwicrepe_strawberry',
            BoneID = 58867,
            Offset = vector3(0.045, 0.038, -0.111),
            Rot = vector3(0.045, 0.038, -0.111),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@cone",
            anim = "djs_food_cone_bite_single",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_kiwicrepe_vanilla"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_kiwicrepe_vanilla',
            BoneID = 58867,
            Offset = vector3(0.045, 0.038, -0.111),
            Rot = vector3(0.045, 0.038, -0.111),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@cone",
            anim = "djs_food_cone_bite_single",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_macaron_brown"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_macaron_brown',
            BoneID = 18905,
            Offset = vector3(0.14, 0.06, 0.02),
            Rot = vector3(-168.0, 320.0, 28.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "mp_player_inteat@burger",
            anim = "mp_player_int_eat_burger_fp",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 50000,
    },
},

["djs_macaron_green"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_macaron_green',
            BoneID = 18905,
            Offset = vector3(0.14, 0.06, 0.02),
            Rot = vector3(-168.0, 320.0, 28.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "mp_player_inteat@burger",
            anim = "mp_player_int_eat_burger_fp",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 50000,
    },
},

["djs_macaron_lightbrown"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_macaron_lightbrown',
            BoneID = 18905,
            Offset = vector3(0.14, 0.06, 0.02),
            Rot = vector3(-168.0, 320.0, 28.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "mp_player_inteat@burger",
            anim = "mp_player_int_eat_burger_fp",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 50000,
    },
},

["djs_macaron_lightpink"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_macaron_lightpink',
            BoneID = 18905,
            Offset = vector3(0.14, 0.06, 0.02),
            Rot = vector3(-168.0, 320.0, 28.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "mp_player_inteat@burger",
            anim = "mp_player_int_eat_burger_fp",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 50000,
    },
},

["djs_macaron_pink"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_macaron_pink',
            BoneID = 18905,
            Offset = vector3(0.14, 0.06, 0.02),
            Rot = vector3(-168.0, 320.0, 28.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "mp_player_inteat@burger",
            anim = "mp_player_int_eat_burger_fp",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 50000,
    },
},

["djs_macaron_yellow"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_macaron_yellow',
            BoneID = 18905,
            Offset = vector3(0.14, 0.06, 0.02),
            Rot = vector3(-168.0, 320.0, 28.0),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "mp_player_inteat@burger",
            anim = "mp_player_int_eat_burger_fp",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 50000,
    },
},

["djs_milkshake_chocolatepretzel"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_milkshake_chocolatepretzel',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_milkshake_cookiemonster"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_milkshake_cookiemonster',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_milkshake_gummybear"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_milkshake_gummybear',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_milkshake_strawberryshortcake"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_milkshake_strawberryshortcake',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_plate_bearwaffles"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_plate_bearwaffles',
            BoneID = 26612,
            Offset = vector3(0.031, -0.067, 0.0),
            Rot = vector3(65.4, 0.0, 22.8),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 200000,
    },
},

["djs_plate_pandawaffle"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_fork',
            BoneID = 57005,
            Offset = vector3(0.14, 0.02, 0.01),
            Rot = vector3(-118.0, 192.0, 24.0),
        },
        Second = {
            Model = 'djs_plate_pandawaffle',
            BoneID = 26612,
            Offset = vector3(0.013, -0.047, 0.0),
            Rot = vector3(82.5, 0.0, 22.8),
        }
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@plated",
            anim = "djs_food_plate_bite_loop",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 10, max = 15 },
        Status = 200000,
    },
},

["djs_soda_green"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_soda_green',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_soda_pink"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_soda_pink',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_soda_yellow"] = {
    Size = 220,
    Type = 'DRINK',
    Prop = {
        Main = {
            Model = 'djs_soda_yellow',
            BoneID = 58868,
            Offset = vector3(0.04, 0.052, 0.0),
            Rot = vector3(0.0, 0.0, -72.45),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@drink@soda",
            anim = "djs_drink_soda_sip_long",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_strawberrycrepe_chocolate"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_strawberrycrepe_chocolate',
            BoneID = 58867,
            Offset = vector3(0.045, 0.038, -0.111),
            Rot = vector3(0.045, 0.038, -0.111),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@cone",
            anim = "djs_food_cone_bite_single",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_strawberrycrepe_strawberry"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_strawberrycrepe_strawberry',
            BoneID = 58867,
            Offset = vector3(0.045, 0.038, -0.111),
            Rot = vector3(0.045, 0.038, -0.111),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@cone",
            anim = "djs_food_cone_bite_single",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},

["djs_strawberrycrepe_vanilla"] = {
    Size = 220,
    Type = 'FOOD',
    Prop = {
        Main = {
            Model = 'djs_strawberrycrepe_vanilla',
            BoneID = 58867,
            Offset = vector3(0.045, 0.038, -0.111),
            Rot = vector3(0.045, 0.038, -0.111),
        },
    },
    Anim = {
        Hold = nil,
        Use = {
            dict = "anim@djs@food@cone",
            anim = "djs_food_cone_bite_single",
            params = {nil, nil, 2500, 49}
        }
    },
    Consume = {
        Bite = { min = 1, max = 1 },
        Status = 100000,
    },
},
```

{% endcode %}
{% endtab %}

{% tab title="Jims Consumables" %}
Add the items below to your `jims-consumables` into `shared/emotes.lua`.

{% code expandable="true" %}

```
djs_bentobox_heart = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Bentobox Heart", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_bentobox_heart", SecondPropBone = 18905, SecondPropPlacement = { 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bentobox_heart2 = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Bentobox Heart2", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_bentobox_heart2", SecondPropBone = 18905, SecondPropPlacement = { 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bentobox_kidsmeal = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Bentobox Kidsmeal", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_bentobox_kidsmeal", SecondPropBone = 18905, SecondPropPlacement = { 0.1, 0.04, 0.01, 9.0, -4.0, 195.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_chai = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Chai", AnimationOptions = { Prop = "djs_bobatea_chai", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_chocolate = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Chocolate", AnimationOptions = { Prop = "djs_bobatea_chocolate", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_cookiesandcream = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Cookies and Cream", AnimationOptions = { Prop = "djs_bobatea_cookiesandcream", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_cottoncandy = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Cotton Candy", AnimationOptions = { Prop = "djs_bobatea_cottoncandy", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_grapefruit = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Grapefruit", AnimationOptions = { Prop = "djs_bobatea_grapefruit", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_honeydew = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Honeydew", AnimationOptions = { Prop = "djs_bobatea_honeydew", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_mango = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Mango", AnimationOptions = { Prop = "djs_bobatea_mango", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_peach = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Peach", AnimationOptions = { Prop = "djs_bobatea_peach", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_pinacolada = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Pina Colada", AnimationOptions = { Prop = "djs_bobatea_pinacolada", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_strawberry = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Strawberry", AnimationOptions = { Prop = "djs_bobatea_strawberry", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bobatea_taro = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Bobatea Taro", AnimationOptions = { Prop = "djs_bobatea_taro", PropBone = 58868, PropPlacement = { 0.058, 0.044, 0.0, 0.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bowl_beefbibimbap = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Bowl Beef Bibimbap", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_bowl_beefbibimbap", SecondPropBone = 18905, SecondPropPlacement = { 0.1, 0.04, 0.01, 0.01, 9.0, -4.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_bowl_veggiebibimbap = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Bowl Veggie Bibimbap", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_bowl_veggiebibimbap", SecondPropBone = 18905, SecondPropPlacement = { 0.1, 0.04, 0.01, 0.01, 9.0, -4.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_glass_greentea = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Glass Green Tea", AnimationOptions = { Prop = "djs_glass_greentea", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_glass_icetea = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Glass Ice Tea", AnimationOptions = { Prop = "djs_glass_icetea", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_japanese_omelette = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Japanese Omelette", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_japanese_omelette", SecondPropBone = 18905, SecondPropPlacement = { 0.1, 0.0, 0.01, -20.0, 0.0, 0.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_kiwicrepe_chocolate = { "anim@djs@food@cone", "djs_food_cone_bite_single", "Kiwicrepe Chocolate", AnimationOptions = { Prop = "djs_kiwicrepe_chocolate", PropBone = 58867, PropPlacement = { 0.045, 0.038, -0.111, 0.045, 0.038, -0.111 }, EmoteLoop = true, EmoteMoving = true }},
djs_kiwicrepe_strawberry = { "anim@djs@food@cone", "djs_food_cone_bite_single", "Kiwicrepe Strawberry", AnimationOptions = { Prop = "djs_kiwicrepe_strawberry", PropBone = 58867, PropPlacement = { 0.045, 0.038, -0.111, 0.045, 0.038, -0.111 }, EmoteLoop = true, EmoteMoving = true }},
djs_kiwicrepe_vanilla = { "anim@djs@food@cone", "djs_food_cone_bite_single", "Kiwicrepe Vanilla", AnimationOptions = { Prop = "djs_kiwicrepe_vanilla", PropBone = 58867, PropPlacement = { 0.045, 0.038, -0.111, 0.045, 0.038, -0.111 }, EmoteLoop = true, EmoteMoving = true }},
djs_macaron_brown = { "mp_player_inteat@burger", "mp_player_int_eat_burger_fp", "Macaron Brown", AnimationOptions = { Prop = "djs_macaron_brown", PropBone = 18905, PropPlacement = { 0.14, 0.06, 0.02, -168.0, 320.0, 28.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_macaron_green = { "mp_player_inteat@burger", "mp_player_int_eat_burger_fp", "Macaron Green", AnimationOptions = { Prop = "djs_macaron_green", PropBone = 18905, PropPlacement = { 0.14, 0.06, 0.02, -168.0, 320.0, 28.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_macaron_lightbrown = { "mp_player_inteat@burger", "mp_player_int_eat_burger_fp", "Macaron Lightbrown", AnimationOptions = { Prop = "djs_macaron_lightbrown", PropBone = 18905, PropPlacement = { 0.14, 0.06, 0.02, -168.0, 320.0, 28.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_macaron_lightpink = { "mp_player_inteat@burger", "mp_player_int_eat_burger_fp", "Macaron Lightpink", AnimationOptions = { Prop = "djs_macaron_lightpink", PropBone = 18905, PropPlacement = { 0.14, 0.06, 0.02, -168.0, 320.0, 28.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_macaron_pink = { "mp_player_inteat@burger", "mp_player_int_eat_burger_fp", "Macaron Pink", AnimationOptions = { Prop = "djs_macaron_pink", PropBone = 18905, PropPlacement = { 0.14, 0.06, 0.02, -168.0, 320.0, 28.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_macaron_yellow = { "mp_player_inteat@burger", "mp_player_int_eat_burger_fp", "Macaron Yellow", AnimationOptions = { Prop = "djs_macaron_yellow", PropBone = 18905, PropPlacement = { 0.14, 0.06, 0.02, -168.0, 320.0, 28.0 }, EmoteLoop = true, EmoteMoving = true }},
djs_milkshake_chocolatepretzel = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Milkshake Chocolate Pretzel", AnimationOptions = { Prop = "djs_milkshake_chocolatepretzel", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_milkshake_cookiemonster = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Milkshake Cookie Monster", AnimationOptions = { Prop = "djs_milkshake_cookiemonster", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_milkshake_gummybear = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Milkshake Gummy Bear", AnimationOptions = { Prop = "djs_milkshake_gummybear", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_milkshake_strawberryshortcake = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Milkshake Strawberry Shortcake", AnimationOptions = { Prop = "djs_milkshake_strawberryshortcake", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_plate_bearwaffles = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Plate Bear Waffles", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_plate_bearwaffles", SecondPropBone = 26612, SecondPropPlacement = { 0.031, -0.067, 0.0, 65.4, 0.0, 22.8 }, EmoteLoop = true, EmoteMoving = true }},
djs_plate_pandawaffle = { "anim@djs@food@plated", "djs_food_plate_bite_loop", "Plate Panda Waffle", AnimationOptions = { Prop = "djs_fork", PropBone = 57005, PropPlacement = { 0.14, 0.02, 0.01, -118.0, 192.0, 24.0 }, SecondProp = "djs_plate_pandawaffle", SecondPropBone = 26612, SecondPropPlacement = { 0.013, -0.047, 0.0, 82.5, 0.0, 22.8 }, EmoteLoop = true, EmoteMoving = true }},
djs_soda_green = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Soda Green", AnimationOptions = { Prop = "djs_soda_green", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_soda_pink = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Soda Pink", AnimationOptions = { Prop = "djs_soda_pink", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_soda_yellow = { "anim@djs@drink@soda", "djs_drink_soda_sip_long", "Soda Yellow", AnimationOptions = { Prop = "djs_soda_yellow", PropBone = 58868, PropPlacement = { 0.04, 0.052, 0.0, 0.0, 0.0, -72.45 }, EmoteLoop = true, EmoteMoving = true }},
djs_strawberrycrepe_chocolate = { "anim@djs@food@cone", "djs_food_cone_bite_single", "Strawberrycrepe Chocolate", AnimationOptions = { Prop = "djs_strawberrycrepe_chocolate", PropBone = 58867, PropPlacement = { 0.045, 0.038, -0.111, 0.045, 0.038, -0.111 }, EmoteLoop = true, EmoteMoving = true }},
djs_strawberrycrepe_strawberry = { "anim@djs@food@cone", "djs_food_cone_bite_single", "Strawberrycrepe Strawberry", AnimationOptions = { Prop = "djs_strawberrycrepe_strawberry", PropBone = 58867, PropPlacement = { 0.045, 0.038, -0.111, 0.045, 0.038, -0.111 }, EmoteLoop = true, EmoteMoving = true }},
djs_strawberrycrepe_vanilla = { "anim@djs@food@cone", "djs_food_cone_bite_single", "Strawberrycrepe Vanilla", AnimationOptions = { Prop = "djs_strawberrycrepe_vanilla", PropBone = 58867, PropPlacement = { 0.045, 0.038, -0.111, 0.045, 0.038, -0.111 }, EmoteLoop = true, EmoteMoving = true }},
```

{% endcode %}

Add the items below to your `jims-consumables` into `shared/consumables.lua`.

{% code expandable="true" %}

```
djs_bentobox_heart = { emote = "djs_bentobox_heart", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_bentobox_heart2 = { emote = "djs_bentobox_heart2", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_bentobox_kidsmeal = { emote = "djs_bentobox_kidsmeal", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_bobatea_chai = { emote = "djs_bobatea_chai", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_chocolate = { emote = "djs_bobatea_chocolate", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_cookiesandcream = { emote = "djs_bobatea_cookiesandcream", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_cottoncandy = { emote = "djs_bobatea_cottoncandy", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_grapefruit = { emote = "djs_bobatea_grapefruit", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_honeydew = { emote = "djs_bobatea_honeydew", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_mango = { emote = "djs_bobatea_mango", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_peach = { emote = "djs_bobatea_peach", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_pinacolada = { emote = "djs_bobatea_pinacolada", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_strawberry = { emote = "djs_bobatea_strawberry", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bobatea_taro = { emote = "djs_bobatea_taro", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_bowl_beefbibimbap = { emote = "djs_bowl_beefbibimbap", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_bowl_veggiebibimbap = { emote = "djs_bowl_veggiebibimbap", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_glass_greentea = { emote = "djs_glass_greentea", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_glass_icetea = { emote = "djs_glass_icetea", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_japanese_omelette = { emote = "djs_japanese_omelette", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_kiwicrepe_chocolate = { emote = "djs_kiwicrepe_chocolate", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_kiwicrepe_strawberry = { emote = "djs_kiwicrepe_strawberry", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_kiwicrepe_vanilla = { emote = "djs_kiwicrepe_vanilla", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_macaron_brown = { emote = "djs_macaron_brown", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_macaron_green = { emote = "djs_macaron_green", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_macaron_lightbrown = { emote = "djs_macaron_lightbrown", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_macaron_lightpink = { emote = "djs_macaron_lightpink", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_macaron_pink = { emote = "djs_macaron_pink", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_macaron_yellow = { emote = "djs_macaron_yellow", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_milkshake_chocolatepretzel = { emote = "djs_milkshake_chocolatepretzel", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_milkshake_cookiemonster = { emote = "djs_milkshake_cookiemonster", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_milkshake_gummybear = { emote = "djs_milkshake_gummybear", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_milkshake_strawberryshortcake = { emote = "djs_milkshake_strawberryshortcake", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_plate_bearwaffles = { emote = "djs_plate_bearwaffles", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_plate_pandawaffle = { emote = "djs_plate_pandawaffle", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_soda_green = { emote = "djs_soda_green", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_soda_pink = { emote = "djs_soda_pink", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_soda_yellow = { emote = "djs_soda_yellow", canRun = true, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "drink", stats = { thirst = 20, }},
djs_strawberrycrepe_chocolate = { emote = "djs_strawberrycrepe_chocolate", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_strawberrycrepe_strawberry = { emote = "djs_strawberrycrepe_strawberry", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
djs_strawberrycrepe_vanilla = { emote = "djs_strawberrycrepe_vanilla", canRun = false, time = math.random(2500, 3500), stress = 0, heal = 0, armor = 0, type = "food", stats = { hunger = 20, }},
```

{% endcode %}
{% endtab %}

{% tab title="Zykes Consumables" %}

* Copy the item config **(non-consumable)** and put it into your inventory item list like normal.
* Copy the item config **(consuamble)**, go in-game, run `/consum:import` and paste the item list into that text area, and import. **Make sure** to restart your server with your items in your inventory before importing via our system.
* If the format is valid, you can now run `/consum:activate_batch` to activate your latest batch, if you don't want to manually check all items & activate them in our `/consum:ic` menu.
* All items that are valid have now been successfully inserted and activated.

{% hint style="info" %}
zyke\_lib v2.5.1 and zyke\_consumables v1.1.12 are required
{% endhint %}
{% endtab %}
{% endtabs %}

***

## **Inventory Icons**

Make sure to add these icons to your preferred inventory’s image folder for them to display correctly.

{% stepper %}
{% step %}

### Ox Inventory

`ox_inventory/web/images`
{% endstep %}

{% step %}

### QS Inventory

`qs-inventory/html/images`
{% endstep %}
{% endstepper %}

***

{% file src="/files/km7wBPZPlwgJGbJvK5mz" %}
