From de148fc98f43fa5b33d219326d97f9c3430ec802 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 12 Nov 2019 08:20:03 +1100 Subject: [PATCH] Add hunger and thirst (#363) * Add hunger and thirst Based on the SS13 systems. Food (Nutriment) / Drink -> Stomach -> Hunger / Thirst * Cleanup rebase * Cleanup stuff that was prototyped * Address feedback Still need to add a statuseffects system in a separate branch * More cleanup on nutrition Fix Remie's feedback and also damage tick. * Re-implement nutrition with master * Updated to use the StatusEffectsUI update * Removed all clientside components as they only receive the UI updates now * Implemented PR feedback * Had to make a slight adjustment to the chemistry SolutionComponent given it doesn't have an Owner, same with Solution Still TODO: * Metabolisation effects * Change drink contents to alcohol / wine etc. * Add items to the dispensers * For transparent containers use RecalculateColor Could probably genericise DrinkFoodContainer as well to be a temporary item dispenser * Fix broken bottle parent --- Content.Client/EntryPoint.cs | 6 + .../DrinkFoodContainerVisualizer2D.cs | 67 + .../Nutrition/DrinkFoodVisualizer2D.cs | 42 + .../Components/Chemistry/SolutionComponent.cs | 24 +- .../Components/Nutrition/DrinkComponent.cs | 184 ++ .../Nutrition/DrinkFoodContainerComponent.cs | 191 ++ .../Components/Nutrition/FoodComponent.cs | 181 ++ .../Components/Nutrition/HungerComponent.cs | 178 + .../Components/Nutrition/StomachComponent.cs | 129 + .../Components/Nutrition/ThirstComponent.cs | 180 ++ .../GameObjects/EntitySystems/HungerSystem.cs | 31 + .../EntitySystems/StomachSystem.cs | 32 + .../GameObjects/EntitySystems/ThirstSystem.cs | 31 + .../Components/Chemistry/SolutionComponent.cs | 6 +- .../Mobs/SharedStatusEffectsComponent.cs | 2 + .../SharedDrinkFoodContainerComponent.cs | 28 + .../Nutrition/SharedFoodComponent.cs | 16 + .../Nutrition/SharedStomachComponent.cs | 12 + Content.Shared/GameObjects/ContentNetIDs.cs | 1 + Resources/Audio/items/canopen.ogg | Bin 0 -> 8814 bytes Resources/Audio/items/drink.ogg | Bin 0 -> 19843 bytes Resources/Audio/items/eatfood.ogg | Bin 0 -> 24595 bytes .../Entities/buildings/chem_dispenser.yml | 1 + .../Entities/items/Consumables/drinks.yml | 2670 +++++++++++++++ .../items/Consumables/drinks_bottles.yml | 287 ++ .../items/Consumables/drinks_cans.yml | 258 ++ .../items/Consumables/drinks_cups.yml | 236 ++ .../Entities/items/Consumables/food.yml | 2850 +++++++++++++++++ .../items/Consumables/food_containers.yml | 447 +++ .../Entities/items/Consumables/trash.yml | 202 ++ .../items/Consumables/trash_drinks.yml | 212 ++ Resources/Prototypes/Entities/mobs/human.yml | 5 + Resources/Prototypes/Reagents/chemicals.yml | 5 + Resources/Textures/Mob/UI/Hunger/Dead.png | Bin 0 -> 97 bytes Resources/Textures/Mob/UI/Hunger/Okay.png | Bin 0 -> 97 bytes Resources/Textures/Mob/UI/Hunger/Overfed.png | Bin 0 -> 271 bytes Resources/Textures/Mob/UI/Hunger/Peckish.png | Bin 0 -> 271 bytes Resources/Textures/Mob/UI/Hunger/Starving.png | Bin 0 -> 271 bytes Resources/Textures/Mob/UI/Thirst/Dead.png | Bin 0 -> 97 bytes Resources/Textures/Mob/UI/Thirst/Okay.png | Bin 0 -> 97 bytes .../Textures/Mob/UI/Thirst/OverHydrated.png | Bin 0 -> 1959 bytes Resources/Textures/Mob/UI/Thirst/Parched.png | Bin 0 -> 2415 bytes Resources/Textures/Mob/UI/Thirst/Thirsty.png | Bin 0 -> 2447 bytes .../apple_cake.rsi/icon.png | Bin 0 -> 945 bytes .../apple_cake.rsi/meta.json | 15 + .../bananabread.rsi/icon.png | Bin 0 -> 767 bytes .../bananabread.rsi/meta.json | 1 + .../birthdaycake.rsi/icon.png | Bin 0 -> 668 bytes .../birthdaycake.rsi/meta.json | 1 + .../braincake.rsi/icon.png | Bin 0 -> 1374 bytes .../braincake.rsi/meta.json | 1 + .../DrinkFoodContainers/bread.rsi/icon.png | Bin 0 -> 736 bytes .../DrinkFoodContainers/bread.rsi/meta.json | 1 + .../carrotcake.rsi/icon.png | Bin 0 -> 919 bytes .../carrotcake.rsi/meta.json | 1 + .../cheesecake.rsi/icon.png | Bin 0 -> 904 bytes .../cheesecake.rsi/meta.json | 1 + .../cheesewheel.rsi/icon.png | Bin 0 -> 646 bytes .../cheesewheel.rsi/meta.json | 1 + .../chocolatecake.rsi/icon.png | Bin 0 -> 755 bytes .../chocolatecake.rsi/meta.json | 1 + .../creamcheesebread.rsi/icon.png | Bin 0 -> 917 bytes .../creamcheesebread.rsi/meta.json | 1 + .../donutbox.rsi/donutbox-0.png | Bin 0 -> 356 bytes .../donutbox.rsi/donutbox-1.png | Bin 0 -> 2363 bytes .../donutbox.rsi/donutbox-2.png | Bin 0 -> 2522 bytes .../donutbox.rsi/donutbox-3.png | Bin 0 -> 2650 bytes .../donutbox.rsi/donutbox-4.png | Bin 0 -> 2753 bytes .../donutbox.rsi/donutbox-5.png | Bin 0 -> 2893 bytes .../donutbox.rsi/donutbox-6.png | Bin 0 -> 2920 bytes .../DrinkFoodContainers/donutbox.rsi/icon.png | Bin 0 -> 356 bytes .../donutbox.rsi/meta.json | 43 + .../eggbox.rsi/eggbox-0.png | Bin 0 -> 352 bytes .../eggbox.rsi/eggbox-1.png | Bin 0 -> 408 bytes .../eggbox.rsi/eggbox-10.png | Bin 0 -> 452 bytes .../eggbox.rsi/eggbox-11.png | Bin 0 -> 444 bytes .../eggbox.rsi/eggbox-12.png | Bin 0 -> 435 bytes .../eggbox.rsi/eggbox-2.png | Bin 0 -> 410 bytes .../eggbox.rsi/eggbox-3.png | Bin 0 -> 413 bytes .../eggbox.rsi/eggbox-4.png | Bin 0 -> 442 bytes .../eggbox.rsi/eggbox-5.png | Bin 0 -> 437 bytes .../eggbox.rsi/eggbox-6.png | Bin 0 -> 429 bytes .../eggbox.rsi/eggbox-7.png | Bin 0 -> 461 bytes .../eggbox.rsi/eggbox-8.png | Bin 0 -> 462 bytes .../eggbox.rsi/eggbox-9.png | Bin 0 -> 461 bytes .../DrinkFoodContainers/eggbox.rsi/meta.json | 63 + .../eggbox_shut.rsi/icon.png | Bin 0 -> 368 bytes .../eggbox_shut.rsi/meta.json | 15 + .../lemoncake.rsi/icon.png | Bin 0 -> 923 bytes .../lemoncake.rsi/meta.json | 1 + .../DrinkFoodContainers/limecake.rsi/icon.png | Bin 0 -> 947 bytes .../limecake.rsi/meta.json | 1 + .../meatbread.rsi/icon.png | Bin 0 -> 1009 bytes .../meatbread.rsi/meta.json | 1 + .../meatpizza.rsi/icon.png | Bin 0 -> 906 bytes .../meatpizza.rsi/meta.json | 1 + .../monkeycubebox.rsi/icon.png | Bin 0 -> 433 bytes .../monkeycubebox.rsi/meta.json | 1 + .../monkeycubewrap.rsi/icon.png | Bin 0 -> 225 bytes .../monkeycubewrap.rsi/meta.json | 1 + .../mushroompizza.rsi/icon.png | Bin 0 -> 767 bytes .../mushroompizza.rsi/meta.json | 1 + .../orangecake.rsi/icon.png | Bin 0 -> 887 bytes .../orangecake.rsi/meta.json | 1 + .../pizzabox_open.rsi/icon.png | Bin 0 -> 278 bytes .../pizzabox_open.rsi/meta.json | 1 + .../pizzabox_tag.rsi/icon.png | Bin 0 -> 176 bytes .../pizzabox_tag.rsi/meta.json | 1 + .../pizzaboxstack.rsi/icon.png | Bin 0 -> 319 bytes .../pizzaboxstack.rsi/meta.json | 35 + .../pizzaboxstack.rsi/pizzaboxstack-0.png | Bin 0 -> 290 bytes .../pizzaboxstack.rsi/pizzaboxstack-1.png | Bin 0 -> 302 bytes .../pizzaboxstack.rsi/pizzaboxstack-2.png | Bin 0 -> 304 bytes .../pizzaboxstack.rsi/pizzaboxstack-3.png | Bin 0 -> 302 bytes .../pizzaboxstack.rsi/pizzaboxstack-4.png | Bin 0 -> 319 bytes .../pizzamargherita.rsi/icon.png | Bin 0 -> 721 bytes .../pizzamargherita.rsi/meta.json | 1 + .../plaincake.rsi/icon.png | Bin 0 -> 974 bytes .../plaincake.rsi/meta.json | 1 + .../pumpkinpie.rsi/icon.png | Bin 0 -> 785 bytes .../pumpkinpie.rsi/meta.json | 1 + .../tofubread.rsi/icon.png | Bin 0 -> 949 bytes .../tofubread.rsi/meta.json | 1 + .../vegetablepizza.rsi/icon.png | Bin 0 -> 892 bytes .../vegetablepizza.rsi/meta.json | 1 + .../xenomeatbread.rsi/icon.png | Bin 0 -> 1012 bytes .../xenomeatbread.rsi/meta.json | 1 + .../Drinks/(mdr)grapejuice.rsi/icon.png | Bin 0 -> 842 bytes .../Drinks/(mdr)grapejuice.rsi/meta.json | 1 + .../Drinks/absinthebottle.rsi/icon.png | Bin 0 -> 464 bytes .../Drinks/absinthebottle.rsi/meta.json | 15 + .../Objects/Drinks/absintheglass.rsi/icon.png | Bin 0 -> 566 bytes .../Drinks/absintheglass.rsi/meta.json | 1 + .../Objects/Drinks/acidspitglass.rsi/icon.png | Bin 0 -> 803 bytes .../Drinks/acidspitglass.rsi/meta.json | 1 + .../Objects/Drinks/alco-blue.rsi/icon.png | Bin 0 -> 276 bytes .../Objects/Drinks/alco-blue.rsi/meta.json | 1 + .../Objects/Drinks/alco-green.rsi/icon.png | Bin 0 -> 309 bytes .../Objects/Drinks/alco-green.rsi/meta.json | 1 + .../Objects/Drinks/alco-red.rsi/icon.png | Bin 0 -> 316 bytes .../Objects/Drinks/alco-red.rsi/meta.json | 1 + .../Objects/Drinks/alco-white.rsi/icon.png | Bin 0 -> 233 bytes .../Objects/Drinks/alco-white.rsi/meta.json | 1 + .../Objects/Drinks/alebottle.rsi/icon.png | Bin 0 -> 464 bytes .../Objects/Drinks/alebottle.rsi/meta.json | 1 + .../Objects/Drinks/aleglass.rsi/icon.png | Bin 0 -> 379 bytes .../Objects/Drinks/aleglass.rsi/meta.json | 1 + .../Drinks/alliescocktail.rsi/icon.png | Bin 0 -> 287 bytes .../Drinks/alliescocktail.rsi/meta.json | 1 + .../Textures/Objects/Drinks/aloe.rsi/icon.png | Bin 0 -> 296 bytes .../Objects/Drinks/aloe.rsi/meta.json | 1 + .../Objects/Drinks/amasecglass.rsi/icon.png | Bin 0 -> 452 bytes .../Objects/Drinks/amasecglass.rsi/meta.json | 1 + .../Objects/Drinks/andalusia.rsi/icon.png | Bin 0 -> 319 bytes .../Objects/Drinks/andalusia.rsi/meta.json | 1 + .../Objects/Drinks/antifreeze.rsi/icon.png | Bin 0 -> 384 bytes .../Objects/Drinks/antifreeze.rsi/meta.json | 1 + .../Drinks/atomicbombglass.rsi/icon.png | Bin 0 -> 867 bytes .../Drinks/atomicbombglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/b&p.rsi/icon.png | Bin 0 -> 272 bytes .../Textures/Objects/Drinks/b&p.rsi/meta.json | 1 + .../Objects/Drinks/b52glass.rsi/icon.png | Bin 0 -> 355 bytes .../Objects/Drinks/b52glass.rsi/meta.json | 1 + .../Objects/Drinks/bahama_mama.rsi/icon.png | Bin 0 -> 676 bytes .../Objects/Drinks/bahama_mama.rsi/meta.json | 1 + .../Objects/Drinks/banana.rsi/icon.png | Bin 0 -> 288 bytes .../Objects/Drinks/banana.rsi/meta.json | 1 + .../Drinks/bananahonkglass.rsi/icon.png | Bin 0 -> 558 bytes .../Drinks/bananahonkglass.rsi/meta.json | 1 + .../Objects/Drinks/barflask.rsi/icon.png | Bin 0 -> 486 bytes .../Objects/Drinks/barflask.rsi/meta.json | 1 + .../Drinks/beepskysmashglass.rsi/icon.png | Bin 0 -> 914 bytes .../Drinks/beepskysmashglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/beer.rsi/icon.png | Bin 0 -> 520 bytes .../Objects/Drinks/beer.rsi/meta.json | 1 + .../Objects/Drinks/beerglass.rsi/icon.png | Bin 0 -> 477 bytes .../Objects/Drinks/beerglass.rsi/meta.json | 1 + .../Objects/Drinks/berryjuice.rsi/icon.png | Bin 0 -> 349 bytes .../Objects/Drinks/berryjuice.rsi/meta.json | 1 + .../Objects/Drinks/bigteacup.rsi/icon.png | Bin 0 -> 310 bytes .../Objects/Drinks/bigteacup.rsi/meta.json | 1 + .../Drinks/blackrussianglass.rsi/icon.png | Bin 0 -> 555 bytes .../Drinks/blackrussianglass.rsi/meta.json | 1 + .../Drinks/bloodymaryglass.rsi/icon.png | Bin 0 -> 623 bytes .../Drinks/bloodymaryglass.rsi/meta.json | 1 + .../Objects/Drinks/booger.rsi/icon.png | Bin 0 -> 371 bytes .../Objects/Drinks/booger.rsi/meta.json | 1 + .../Drinks/bottleofnothing.rsi/icon.png | Bin 0 -> 684 bytes .../Drinks/bottleofnothing.rsi/meta.json | 1 + .../Drinks/bravebullglass.rsi/icon.png | Bin 0 -> 416 bytes .../Drinks/bravebullglass.rsi/meta.json | 1 + .../Objects/Drinks/britmug.rsi/icon.png | Bin 0 -> 420 bytes .../Objects/Drinks/britmug.rsi/meta.json | 1 + .../Objects/Drinks/broken.rsi/icon.png | Bin 0 -> 177 bytes .../Objects/Drinks/broken.rsi/meta.json | 1 + .../Objects/Drinks/brownstar.rsi/icon.png | Bin 0 -> 242 bytes .../Objects/Drinks/brownstar.rsi/meta.json | 1 + .../Objects/Drinks/cafe_latte.rsi/icon.png | Bin 0 -> 299 bytes .../Objects/Drinks/cafe_latte.rsi/meta.json | 1 + .../Objects/Drinks/carafe.rsi/icon-0.png | Bin 0 -> 2535 bytes .../Objects/Drinks/carafe.rsi/icon-1.png | Bin 0 -> 2591 bytes .../Objects/Drinks/carafe.rsi/icon-10.png | Bin 0 -> 2412 bytes .../Objects/Drinks/carafe.rsi/icon-2.png | Bin 0 -> 2554 bytes .../Objects/Drinks/carafe.rsi/icon-3.png | Bin 0 -> 2590 bytes .../Objects/Drinks/carafe.rsi/icon-4.png | Bin 0 -> 2553 bytes .../Objects/Drinks/carafe.rsi/icon-5.png | Bin 0 -> 2580 bytes .../Objects/Drinks/carafe.rsi/icon-6.png | Bin 0 -> 2503 bytes .../Objects/Drinks/carafe.rsi/icon-7.png | Bin 0 -> 2493 bytes .../Objects/Drinks/carafe.rsi/icon-8.png | Bin 0 -> 2451 bytes .../Objects/Drinks/carafe.rsi/icon-9.png | Bin 0 -> 2402 bytes .../Objects/Drinks/carafe.rsi/meta.json | 55 + .../Objects/Drinks/carrotjuice.rsi/icon.png | Bin 0 -> 286 bytes .../Objects/Drinks/carrotjuice.rsi/meta.json | 1 + .../Drinks/changelingsting.rsi/icon.png | Bin 0 -> 1229 bytes .../Drinks/changelingsting.rsi/meta.json | 1 + .../Drinks/chocolateglass.rsi/icon.png | Bin 0 -> 281 bytes .../Drinks/chocolateglass.rsi/meta.json | 1 + .../Objects/Drinks/coffee.rsi/icon.png | Bin 0 -> 271 bytes .../Objects/Drinks/coffee.rsi/meta.json | 1 + .../Objects/Drinks/cognacbottle.rsi/icon.png | Bin 0 -> 507 bytes .../Objects/Drinks/cognacbottle.rsi/meta.json | 1 + .../Objects/Drinks/cognacglass.rsi/icon.png | Bin 0 -> 434 bytes .../Objects/Drinks/cognacglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/cola.rsi/icon.png | Bin 0 -> 462 bytes .../Objects/Drinks/cola.rsi/meta.json | 1 + .../Objects/Drinks/colabottle.rsi/icon.png | Bin 0 -> 563 bytes .../Objects/Drinks/colabottle.rsi/meta.json | 1 + .../Objects/Drinks/cream.rsi/icon.png | Bin 0 -> 477 bytes .../Objects/Drinks/cream.rsi/meta.json | 1 + .../Drinks/cubalibreglass.rsi/icon.png | Bin 0 -> 618 bytes .../Drinks/cubalibreglass.rsi/meta.json | 1 + .../Objects/Drinks/cup.rsi/icon-0.png | Bin 0 -> 250 bytes .../Objects/Drinks/cup.rsi/icon-1.png | Bin 0 -> 1669 bytes .../Textures/Objects/Drinks/cup.rsi/meta.json | 19 + .../Objects/Drinks/curacaoglass.rsi/icon.png | Bin 0 -> 390 bytes .../Objects/Drinks/curacaoglass.rsi/meta.json | 1 + .../Objects/Drinks/demonsblood.rsi/icon.png | Bin 0 -> 1234 bytes .../Objects/Drinks/demonsblood.rsi/meta.json | 1 + .../Objects/Drinks/detflask.rsi/icon.png | Bin 0 -> 501 bytes .../Objects/Drinks/detflask.rsi/meta.json | 1 + .../Objects/Drinks/devilskiss.rsi/icon.png | Bin 0 -> 292 bytes .../Objects/Drinks/devilskiss.rsi/meta.json | 1 + .../Drinks/doctorsdelightglass.rsi/icon.png | Bin 0 -> 2119 bytes .../Drinks/doctorsdelightglass.rsi/meta.json | 1 + .../Objects/Drinks/dr_gibb.rsi/icon.png | Bin 0 -> 480 bytes .../Objects/Drinks/dr_gibb.rsi/meta.json | 1 + .../Objects/Drinks/dr_gibb_glass.rsi/icon.png | Bin 0 -> 305 bytes .../Drinks/dr_gibb_glass.rsi/meta.json | 1 + .../Drinks/driestmartiniglass.rsi/icon.png | Bin 0 -> 299 bytes .../Drinks/driestmartiniglass.rsi/meta.json | 1 + .../Objects/Drinks/emeraldglass.rsi/icon.png | Bin 0 -> 393 bytes .../Objects/Drinks/emeraldglass.rsi/meta.json | 1 + .../Objects/Drinks/energy_drink.rsi/icon.png | Bin 0 -> 516 bytes .../Objects/Drinks/energy_drink.rsi/meta.json | 1 + .../Objects/Drinks/erikasurprise.rsi/icon.png | Bin 0 -> 405 bytes .../Drinks/erikasurprise.rsi/meta.json | 1 + .../Objects/Drinks/flask.rsi/icon.png | Bin 0 -> 838 bytes .../Objects/Drinks/flask.rsi/meta.json | 1 + .../Objects/Drinks/flask_old.rsi/icon.png | Bin 0 -> 847 bytes .../Objects/Drinks/flask_old.rsi/meta.json | 1 + .../Drinks/gargleblasterglass.rsi/icon.png | Bin 0 -> 1172 bytes .../Drinks/gargleblasterglass.rsi/meta.json | 1 + .../Objects/Drinks/ginbottle.rsi/icon.png | Bin 0 -> 629 bytes .../Objects/Drinks/ginbottle.rsi/meta.json | 1 + .../Objects/Drinks/ginfizzglass.rsi/icon.png | Bin 0 -> 403 bytes .../Objects/Drinks/ginfizzglass.rsi/meta.json | 1 + .../Objects/Drinks/gintonicglass.rsi/icon.png | Bin 0 -> 589 bytes .../Drinks/gintonicglass.rsi/meta.json | 1 + .../Objects/Drinks/ginvodkaglass.rsi/icon.png | Bin 0 -> 419 bytes .../Drinks/ginvodkaglass.rsi/meta.json | 1 + .../Objects/Drinks/glass_brown.rsi/icon.png | Bin 0 -> 277 bytes .../Objects/Drinks/glass_brown.rsi/meta.json | 1 + .../Objects/Drinks/glass_brown2.rsi/icon.png | Bin 0 -> 276 bytes .../Objects/Drinks/glass_brown2.rsi/meta.json | 1 + .../Objects/Drinks/glass_clear.rsi/icon.png | Bin 0 -> 240 bytes .../Objects/Drinks/glass_clear.rsi/meta.json | 1 + .../Objects/Drinks/glass_green.rsi/icon.png | Bin 0 -> 391 bytes .../Objects/Drinks/glass_green.rsi/meta.json | 1 + .../Objects/Drinks/glass_orange.rsi/icon.png | Bin 0 -> 261 bytes .../Objects/Drinks/glass_orange.rsi/meta.json | 1 + .../Objects/Drinks/glass_red.rsi/icon.png | Bin 0 -> 273 bytes .../Objects/Drinks/glass_red.rsi/meta.json | 1 + .../Objects/Drinks/glass_white.rsi/icon.png | Bin 0 -> 236 bytes .../Objects/Drinks/glass_white.rsi/meta.json | 1 + .../Objects/Drinks/glass_yellow.rsi/icon.png | Bin 0 -> 252 bytes .../Objects/Drinks/glass_yellow.rsi/meta.json | 1 + .../Objects/Drinks/golden_cup.rsi/icon.png | Bin 0 -> 1066 bytes .../Objects/Drinks/golden_cup.rsi/meta.json | 1 + .../Drinks/goldschlagerbottle.rsi/icon.png | Bin 0 -> 500 bytes .../Drinks/goldschlagerbottle.rsi/meta.json | 1 + .../Drinks/goldschlagerglass.rsi/icon.png | Bin 0 -> 286 bytes .../Drinks/goldschlagerglass.rsi/meta.json | 1 + .../Objects/Drinks/grapejuice.rsi/icon.png | Bin 0 -> 264 bytes .../Objects/Drinks/grapejuice.rsi/meta.json | 1 + .../Objects/Drinks/grapesoda.rsi/icon.png | Bin 0 -> 365 bytes .../Objects/Drinks/grapesoda.rsi/meta.json | 1 + .../Drinks/grenadinebottle.rsi/icon.png | Bin 0 -> 425 bytes .../Drinks/grenadinebottle.rsi/meta.json | 1 + .../Drinks/grenadineglass.rsi/icon.png | Bin 0 -> 477 bytes .../Drinks/grenadineglass.rsi/meta.json | 1 + .../Objects/Drinks/grogglass.rsi/icon.png | Bin 0 -> 394 bytes .../Objects/Drinks/grogglass.rsi/meta.json | 1 + .../Objects/Drinks/gsodaglass.rsi/icon.png | Bin 0 -> 280 bytes .../Objects/Drinks/gsodaglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/hell.rsi/icon.png | Bin 0 -> 1180 bytes .../Objects/Drinks/hell.rsi/meta.json | 1 + .../Drinks/hippiesdelightglass.rsi/icon.png | Bin 0 -> 753 bytes .../Drinks/hippiesdelightglass.rsi/meta.json | 1 + .../Objects/Drinks/hot_coco.rsi/icon.png | Bin 0 -> 305 bytes .../Objects/Drinks/hot_coco.rsi/meta.json | 1 + .../Objects/Drinks/hot_coffee.rsi/icon.png | Bin 0 -> 307 bytes .../Objects/Drinks/hot_coffee.rsi/meta.json | 1 + .../Objects/Drinks/ice_tea_can.rsi/icon.png | Bin 0 -> 507 bytes .../Objects/Drinks/ice_tea_can.rsi/meta.json | 1 + .../Drinks/iced_beerglass.rsi/icon.png | Bin 0 -> 455 bytes .../Drinks/iced_beerglass.rsi/meta.json | 1 + .../Drinks/icedcoffeeglass.rsi/icon.png | Bin 0 -> 320 bytes .../Drinks/icedcoffeeglass.rsi/meta.json | 1 + .../Objects/Drinks/icedteaglass.rsi/icon.png | Bin 0 -> 504 bytes .../Objects/Drinks/icedteaglass.rsi/meta.json | 1 + .../Objects/Drinks/iceglass.rsi/icon.png | Bin 0 -> 363 bytes .../Objects/Drinks/iceglass.rsi/meta.json | 1 + .../Objects/Drinks/irishcarbomb.rsi/icon.png | Bin 0 -> 451 bytes .../Objects/Drinks/irishcarbomb.rsi/meta.json | 1 + .../Drinks/irishcoffeeglass.rsi/icon.png | Bin 0 -> 318 bytes .../Drinks/irishcoffeeglass.rsi/meta.json | 1 + .../Drinks/irishcreamglass.rsi/icon.png | Bin 0 -> 435 bytes .../Drinks/irishcreamglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/jar.rsi/icon.png | Bin 0 -> 328 bytes .../Textures/Objects/Drinks/jar.rsi/meta.json | 1 + .../Objects/Drinks/jar_metroid.rsi/icon.png | Bin 0 -> 516 bytes .../Objects/Drinks/jar_metroid.rsi/meta.json | 1 + .../Objects/Drinks/jar_what.rsi/icon.png | Bin 0 -> 446 bytes .../Objects/Drinks/jar_what.rsi/meta.json | 1 + .../Objects/Drinks/kahluabottle.rsi/icon.png | Bin 0 -> 517 bytes .../Objects/Drinks/kahluabottle.rsi/meta.json | 1 + .../Objects/Drinks/kahluaglass.rsi/icon.png | Bin 0 -> 462 bytes .../Objects/Drinks/kahluaglass.rsi/meta.json | 1 + .../Objects/Drinks/kiraspecial.rsi/icon.png | Bin 0 -> 841 bytes .../Objects/Drinks/kiraspecial.rsi/meta.json | 1 + .../Objects/Drinks/lemon-lime.rsi/icon.png | Bin 0 -> 444 bytes .../Objects/Drinks/lemon-lime.rsi/meta.json | 1 + .../Objects/Drinks/lemonade.rsi/icon.png | Bin 0 -> 345 bytes .../Objects/Drinks/lemonade.rsi/meta.json | 1 + .../Objects/Drinks/lemonadeglass.rsi/icon.png | Bin 0 -> 435 bytes .../Drinks/lemonadeglass.rsi/meta.json | 1 + .../Objects/Drinks/lemonglass.rsi/icon.png | Bin 0 -> 286 bytes .../Objects/Drinks/lemonglass.rsi/meta.json | 1 + .../Objects/Drinks/lemonjuice.rsi/icon.png | Bin 0 -> 282 bytes .../Objects/Drinks/lemonjuice.rsi/meta.json | 1 + .../Objects/Drinks/lemonlime.rsi/icon.png | Bin 0 -> 285 bytes .../Objects/Drinks/lemonlime.rsi/meta.json | 1 + .../Objects/Drinks/limejuice.rsi/icon.png | Bin 0 -> 389 bytes .../Objects/Drinks/limejuice.rsi/meta.json | 1 + .../Objects/Drinks/lithiumflask.rsi/icon.png | Bin 0 -> 597 bytes .../Objects/Drinks/lithiumflask.rsi/meta.json | 1 + .../longislandicedteaglass.rsi/icon.png | Bin 0 -> 420 bytes .../longislandicedteaglass.rsi/meta.json | 1 + .../Drinks/manhattanglass.rsi/icon.png | Bin 0 -> 283 bytes .../Drinks/manhattanglass.rsi/meta.json | 1 + .../Drinks/manlydorfglass.rsi/icon.png | Bin 0 -> 294 bytes .../Drinks/manlydorfglass.rsi/meta.json | 1 + .../Drinks/margaritaglass.rsi/icon.png | Bin 0 -> 314 bytes .../Drinks/margaritaglass.rsi/meta.json | 1 + .../Objects/Drinks/martiniglass.rsi/icon.png | Bin 0 -> 328 bytes .../Objects/Drinks/martiniglass.rsi/meta.json | 1 + .../Objects/Drinks/meadglass.rsi/icon.png | Bin 0 -> 399 bytes .../Objects/Drinks/meadglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/milk.rsi/icon.png | Bin 0 -> 410 bytes .../Objects/Drinks/milk.rsi/meta.json | 1 + .../Objects/Drinks/milkshake.rsi/icon.png | Bin 0 -> 464 bytes .../Objects/Drinks/milkshake.rsi/meta.json | 1 + .../Objects/Drinks/mojito.rsi/icon.png | Bin 0 -> 605 bytes .../Objects/Drinks/mojito.rsi/meta.json | 1 + .../Objects/Drinks/mug.rsi/icon-0.png | Bin 0 -> 299 bytes .../Objects/Drinks/mug.rsi/icon-1.png | Bin 0 -> 1984 bytes .../Objects/Drinks/mug.rsi/icon-2.png | Bin 0 -> 1983 bytes .../Objects/Drinks/mug.rsi/icon-3.png | Bin 0 -> 1942 bytes .../Textures/Objects/Drinks/mug.rsi/meta.json | 27 + .../Objects/Drinks/mug_black.rsi/icon-0.png | Bin 0 -> 268 bytes .../Objects/Drinks/mug_black.rsi/icon-1.png | Bin 0 -> 1709 bytes .../Objects/Drinks/mug_black.rsi/icon-2.png | Bin 0 -> 1736 bytes .../Objects/Drinks/mug_black.rsi/icon-3.png | Bin 0 -> 1734 bytes .../Objects/Drinks/mug_black.rsi/meta.json | 27 + .../Objects/Drinks/mug_blue.rsi/icon-0.png | Bin 0 -> 303 bytes .../Objects/Drinks/mug_blue.rsi/icon-1.png | Bin 0 -> 2085 bytes .../Objects/Drinks/mug_blue.rsi/icon-2.png | Bin 0 -> 2106 bytes .../Objects/Drinks/mug_blue.rsi/icon-3.png | Bin 0 -> 2086 bytes .../Objects/Drinks/mug_blue.rsi/meta.json | 27 + .../Objects/Drinks/mug_green.rsi/icon-0.png | Bin 0 -> 301 bytes .../Objects/Drinks/mug_green.rsi/icon-1.png | Bin 0 -> 1904 bytes .../Objects/Drinks/mug_green.rsi/icon-2.png | Bin 0 -> 1924 bytes .../Objects/Drinks/mug_green.rsi/icon-3.png | Bin 0 -> 1900 bytes .../Objects/Drinks/mug_green.rsi/meta.json | 27 + .../Objects/Drinks/mug_heart.rsi/icon-0.png | Bin 0 -> 335 bytes .../Objects/Drinks/mug_heart.rsi/icon-1.png | Bin 0 -> 2080 bytes .../Objects/Drinks/mug_heart.rsi/icon-2.png | Bin 0 -> 2110 bytes .../Objects/Drinks/mug_heart.rsi/icon-3.png | Bin 0 -> 2086 bytes .../Objects/Drinks/mug_heart.rsi/meta.json | 27 + .../Objects/Drinks/mug_metal.rsi/icon-0.png | Bin 0 -> 316 bytes .../Objects/Drinks/mug_metal.rsi/icon-1.png | Bin 0 -> 1770 bytes .../Objects/Drinks/mug_metal.rsi/icon-2.png | Bin 0 -> 1842 bytes .../Objects/Drinks/mug_metal.rsi/icon-3.png | Bin 0 -> 1787 bytes .../Objects/Drinks/mug_metal.rsi/meta.json | 27 + .../Objects/Drinks/mug_moebius.rsi/icon-0.png | Bin 0 -> 332 bytes .../Objects/Drinks/mug_moebius.rsi/icon-1.png | Bin 0 -> 1987 bytes .../Objects/Drinks/mug_moebius.rsi/icon-2.png | Bin 0 -> 2002 bytes .../Objects/Drinks/mug_moebius.rsi/icon-3.png | Bin 0 -> 1991 bytes .../Objects/Drinks/mug_moebius.rsi/meta.json | 27 + .../Objects/Drinks/mug_one.rsi/icon-0.png | Bin 0 -> 350 bytes .../Objects/Drinks/mug_one.rsi/icon-1.png | Bin 0 -> 2240 bytes .../Objects/Drinks/mug_one.rsi/icon-2.png | Bin 0 -> 2255 bytes .../Objects/Drinks/mug_one.rsi/icon-3.png | Bin 0 -> 2240 bytes .../Objects/Drinks/mug_one.rsi/meta.json | 27 + .../Objects/Drinks/mug_rainbow.rsi/icon-0.png | Bin 0 -> 354 bytes .../Objects/Drinks/mug_rainbow.rsi/icon-1.png | Bin 0 -> 2234 bytes .../Objects/Drinks/mug_rainbow.rsi/icon-2.png | Bin 0 -> 2259 bytes .../Objects/Drinks/mug_rainbow.rsi/icon-3.png | Bin 0 -> 2238 bytes .../Objects/Drinks/mug_rainbow.rsi/meta.json | 27 + .../Objects/Drinks/mug_red.rsi/icon-0.png | Bin 0 -> 283 bytes .../Objects/Drinks/mug_red.rsi/icon-1.png | Bin 0 -> 2044 bytes .../Objects/Drinks/mug_red.rsi/icon-2.png | Bin 0 -> 2066 bytes .../Objects/Drinks/mug_red.rsi/icon-3.png | Bin 0 -> 2049 bytes .../Objects/Drinks/mug_red.rsi/meta.json | 27 + .../Drinks/neurotoxinglass.rsi/icon.png | Bin 0 -> 875 bytes .../Drinks/neurotoxinglass.rsi/meta.json | 1 + .../Objects/Drinks/nothing.rsi/icon.png | Bin 0 -> 236 bytes .../Objects/Drinks/nothing.rsi/meta.json | 1 + .../Objects/Drinks/ntcahors.rsi/icon.png | Bin 0 -> 503 bytes .../Objects/Drinks/ntcahors.rsi/meta.json | 1 + .../Drinks/nuka_colaglass.rsi/icon.png | Bin 0 -> 799 bytes .../Drinks/nuka_colaglass.rsi/meta.json | 1 + .../Objects/Drinks/orangejuice.rsi/icon.png | Bin 0 -> 597 bytes .../Objects/Drinks/orangejuice.rsi/meta.json | 1 + .../Objects/Drinks/patronbottle.rsi/icon.png | Bin 0 -> 571 bytes .../Objects/Drinks/patronbottle.rsi/meta.json | 1 + .../Objects/Drinks/patronglass.rsi/icon.png | Bin 0 -> 301 bytes .../Objects/Drinks/patronglass.rsi/meta.json | 1 + .../Objects/Drinks/pitcher.rsi/icon-0.png | Bin 0 -> 502 bytes .../Objects/Drinks/pitcher.rsi/icon-1.png | Bin 0 -> 2164 bytes .../Objects/Drinks/pitcher.rsi/icon-2.png | Bin 0 -> 2187 bytes .../Objects/Drinks/pitcher.rsi/icon-3.png | Bin 0 -> 2183 bytes .../Objects/Drinks/pitcher.rsi/icon-4.png | Bin 0 -> 2190 bytes .../Objects/Drinks/pitcher.rsi/icon-5.png | Bin 0 -> 2180 bytes .../Objects/Drinks/pitcher.rsi/icon-6.png | Bin 0 -> 2192 bytes .../Objects/Drinks/pitcher.rsi/meta.json | 39 + .../Drinks/poisonberryjuice.rsi/icon.png | Bin 0 -> 275 bytes .../Drinks/poisonberryjuice.rsi/meta.json | 1 + .../Drinks/proj_manhattanglass.rsi/icon.png | Bin 0 -> 581 bytes .../Drinks/proj_manhattanglass.rsi/meta.json | 1 + .../Objects/Drinks/purple_can.rsi/icon.png | Bin 0 -> 434 bytes .../Objects/Drinks/purple_can.rsi/meta.json | 1 + .../Objects/Drinks/pwinebottle.rsi/icon.png | Bin 0 -> 460 bytes .../Objects/Drinks/pwinebottle.rsi/meta.json | 1 + .../Objects/Drinks/pwineglass.rsi/icon.png | Bin 0 -> 1436 bytes .../Objects/Drinks/pwineglass.rsi/meta.json | 1 + .../Textures/Objects/Drinks/rag.rsi/icon.png | Bin 0 -> 472 bytes .../Textures/Objects/Drinks/rag.rsi/meta.json | 1 + .../Objects/Drinks/rag_lit.rsi/icon.png | Bin 0 -> 823 bytes .../Objects/Drinks/rag_lit.rsi/meta.json | 1 + .../Objects/Drinks/rag_small.rsi/icon.png | Bin 0 -> 347 bytes .../Objects/Drinks/rag_small.rsi/meta.json | 1 + .../Objects/Drinks/rag_small_lit.rsi/icon.png | Bin 0 -> 670 bytes .../Drinks/rag_small_lit.rsi/meta.json | 1 + .../Objects/Drinks/ramen.rsi/icon.png | Bin 0 -> 400 bytes .../Objects/Drinks/ramen.rsi/meta.json | 1 + .../Objects/Drinks/red_meadglass.rsi/icon.png | Bin 0 -> 404 bytes .../Drinks/red_meadglass.rsi/meta.json | 1 + .../Objects/Drinks/rewriter.rsi/icon.png | Bin 0 -> 284 bytes .../Objects/Drinks/rewriter.rsi/meta.json | 1 + .../Objects/Drinks/rumbottle.rsi/icon.png | Bin 0 -> 503 bytes .../Objects/Drinks/rumbottle.rsi/meta.json | 1 + .../Objects/Drinks/rumglass.rsi/icon.png | Bin 0 -> 377 bytes .../Objects/Drinks/rumglass.rsi/meta.json | 1 + .../Objects/Drinks/sbitenglass.rsi/icon.png | Bin 0 -> 400 bytes .../Objects/Drinks/sbitenglass.rsi/meta.json | 1 + .../Drinks/screwdriverglass.rsi/icon.png | Bin 0 -> 478 bytes .../Drinks/screwdriverglass.rsi/meta.json | 1 + .../Objects/Drinks/sdreamglass.rsi/icon.png | Bin 0 -> 440 bytes .../Objects/Drinks/sdreamglass.rsi/meta.json | 1 + .../Objects/Drinks/shake-blue.rsi/icon.png | Bin 0 -> 407 bytes .../Objects/Drinks/shake-blue.rsi/meta.json | 1 + .../Objects/Drinks/shake-empty.rsi/icon.png | Bin 0 -> 375 bytes .../Objects/Drinks/shake-empty.rsi/meta.json | 1 + .../Objects/Drinks/shake-meat.rsi/icon.png | Bin 0 -> 407 bytes .../Objects/Drinks/shake-meat.rsi/meta.json | 1 + .../Objects/Drinks/shake-robo.rsi/icon.png | Bin 0 -> 424 bytes .../Objects/Drinks/shake-robo.rsi/meta.json | 1 + .../Objects/Drinks/shake-white.rsi/icon.png | Bin 0 -> 406 bytes .../Objects/Drinks/shake-white.rsi/meta.json | 1 + .../Objects/Drinks/shaker.rsi/icon.png | Bin 0 -> 408 bytes .../Objects/Drinks/shaker.rsi/meta.json | 1 + .../Objects/Drinks/shinyflask.rsi/icon.png | Bin 0 -> 727 bytes .../Objects/Drinks/shinyflask.rsi/meta.json | 1 + .../Objects/Drinks/shotglass.rsi/icon.png | Bin 0 -> 287 bytes .../Objects/Drinks/shotglass.rsi/meta.json | 1 + .../Objects/Drinks/silencerglass.rsi/icon.png | Bin 0 -> 519 bytes .../Drinks/silencerglass.rsi/meta.json | 1 + .../Objects/Drinks/singulo.rsi/icon.png | Bin 0 -> 2982 bytes .../Objects/Drinks/singulo.rsi/meta.json | 1 + .../Objects/Drinks/snowwhite.rsi/icon.png | Bin 0 -> 424 bytes .../Objects/Drinks/snowwhite.rsi/meta.json | 1 + .../Objects/Drinks/sodawater.rsi/icon.png | Bin 0 -> 453 bytes .../Objects/Drinks/sodawater.rsi/meta.json | 1 + .../Objects/Drinks/soy_latte.rsi/icon.png | Bin 0 -> 291 bytes .../Objects/Drinks/soy_latte.rsi/meta.json | 1 + .../Objects/Drinks/soymilk.rsi/icon.png | Bin 0 -> 361 bytes .../Objects/Drinks/soymilk.rsi/meta.json | 1 + .../Objects/Drinks/space-up.rsi/icon.png | Bin 0 -> 438 bytes .../Objects/Drinks/space-up.rsi/meta.json | 1 + .../Drinks/space-up_bottle.rsi/icon.png | Bin 0 -> 636 bytes .../Drinks/space-up_bottle.rsi/meta.json | 1 + .../Drinks/space-up_glass.rsi/icon.png | Bin 0 -> 320 bytes .../Drinks/space-up_glass.rsi/meta.json | 1 + .../Drinks/space_mountain_wind.rsi/icon.png | Bin 0 -> 481 bytes .../Drinks/space_mountain_wind.rsi/meta.json | 1 + .../space_mountain_wind_bottle.rsi/icon.png | Bin 0 -> 654 bytes .../space_mountain_wind_bottle.rsi/meta.json | 1 + .../space_mountain_wind_glass.rsi/icon.png | Bin 0 -> 404 bytes .../space_mountain_wind_glass.rsi/meta.json | 1 + .../Objects/Drinks/starkist.rsi/icon.png | Bin 0 -> 462 bytes .../Objects/Drinks/starkist.rsi/meta.json | 1 + .../Objects/Drinks/syndicatebomb.rsi/icon.png | Bin 0 -> 637 bytes .../Drinks/syndicatebomb.rsi/meta.json | 1 + .../Objects/Drinks/teacup.rsi/icon-0.png | Bin 0 -> 243 bytes .../Objects/Drinks/teacup.rsi/icon-1.png | Bin 0 -> 1569 bytes .../Objects/Drinks/teacup.rsi/meta.json | 19 + .../Objects/Drinks/teaglass.rsi/icon.png | Bin 0 -> 231 bytes .../Objects/Drinks/teaglass.rsi/meta.json | 1 + .../Objects/Drinks/teapot.rsi/icon.png | Bin 0 -> 645 bytes .../Objects/Drinks/teapot.rsi/meta.json | 1 + .../Drinks/tequillabottle.rsi/icon.png | Bin 0 -> 584 bytes .../Drinks/tequillabottle.rsi/meta.json | 1 + .../Objects/Drinks/tequillaglass.rsi/icon.png | Bin 0 -> 447 bytes .../Drinks/tequillaglass.rsi/meta.json | 1 + .../Drinks/tequillasunriseglass.rsi/icon.png | Bin 0 -> 593 bytes .../Drinks/tequillasunriseglass.rsi/meta.json | 1 + .../Objects/Drinks/thirteen_loko.rsi/icon.png | Bin 0 -> 454 bytes .../Drinks/thirteen_loko.rsi/meta.json | 1 + .../Drinks/thirteen_loko_glass.rsi/icon.png | Bin 0 -> 323 bytes .../Drinks/thirteen_loko_glass.rsi/meta.json | 1 + .../Drinks/threemileislandglass.rsi/icon.png | Bin 0 -> 805 bytes .../Drinks/threemileislandglass.rsi/meta.json | 1 + .../Objects/Drinks/tomatojuice.rsi/icon.png | Bin 0 -> 415 bytes .../Objects/Drinks/tomatojuice.rsi/meta.json | 1 + .../Objects/Drinks/tonic.rsi/icon.png | Bin 0 -> 432 bytes .../Objects/Drinks/tonic.rsi/meta.json | 1 + .../Drinks/toxinsspecialglass.rsi/icon.png | Bin 0 -> 925 bytes .../Drinks/toxinsspecialglass.rsi/meta.json | 1 + .../Objects/Drinks/vacuumflask.rsi/icon.png | Bin 0 -> 307 bytes .../Objects/Drinks/vacuumflask.rsi/meta.json | 1 + .../Drinks/vermouthbottle.rsi/icon.png | Bin 0 -> 594 bytes .../Drinks/vermouthbottle.rsi/meta.json | 1 + .../Objects/Drinks/vermouthglass.rsi/icon.png | Bin 0 -> 467 bytes .../Drinks/vermouthglass.rsi/meta.json | 1 + .../Objects/Drinks/vodkabottle.rsi/icon.png | Bin 0 -> 525 bytes .../Objects/Drinks/vodkabottle.rsi/meta.json | 1 + .../Drinks/vodkatonicglass.rsi/icon.png | Bin 0 -> 588 bytes .../Drinks/vodkatonicglass.rsi/meta.json | 1 + .../Objects/Drinks/water.rsi/icon.png | Bin 0 -> 316 bytes .../Objects/Drinks/water.rsi/meta.json | 1 + .../Objects/Drinks/water_cup.rsi/icon-0.png | Bin 0 -> 296 bytes .../Objects/Drinks/water_cup.rsi/icon-1.png | Bin 0 -> 284 bytes .../Objects/Drinks/water_cup.rsi/meta.json | 19 + .../Objects/Drinks/waterbottle.rsi/icon.png | Bin 0 -> 406 bytes .../Objects/Drinks/waterbottle.rsi/meta.json | 1 + .../Objects/Drinks/watermelon.rsi/icon.png | Bin 0 -> 282 bytes .../Objects/Drinks/watermelon.rsi/meta.json | 1 + .../Objects/Drinks/whiskeybottle.rsi/icon.png | Bin 0 -> 605 bytes .../Drinks/whiskeybottle.rsi/meta.json | 1 + .../Drinks/whiskeycolaglass.rsi/icon.png | Bin 0 -> 603 bytes .../Drinks/whiskeycolaglass.rsi/meta.json | 1 + .../Objects/Drinks/whiskeyglass.rsi/icon.png | Bin 0 -> 364 bytes .../Objects/Drinks/whiskeyglass.rsi/meta.json | 1 + .../Drinks/whiskeysodaglass.rsi/icon.png | Bin 0 -> 668 bytes .../Drinks/whiskeysodaglass.rsi/meta.json | 1 + .../Drinks/whiskeysodaglass2.rsi/icon.png | Bin 0 -> 613 bytes .../Drinks/whiskeysodaglass2.rsi/meta.json | 1 + .../Drinks/whiterussianglass.rsi/icon.png | Bin 0 -> 635 bytes .../Drinks/whiterussianglass.rsi/meta.json | 1 + .../Objects/Drinks/winebottle.rsi/icon.png | Bin 0 -> 540 bytes .../Objects/Drinks/winebottle.rsi/meta.json | 1 + .../Objects/Drinks/wineglass.rsi/icon.png | Bin 0 -> 374 bytes .../Objects/Drinks/wineglass.rsi/meta.json | 1 + .../Objects/Food/4no_raisins.rsi/icon.png | Bin 0 -> 321 bytes .../Objects/Food/4no_raisins.rsi/meta.json | 1 + .../Objects/Food/aesirsalad.rsi/icon.png | Bin 0 -> 607 bytes .../Objects/Food/aesirsalad.rsi/meta.json | 1 + .../Objects/Food/amanita_pie.rsi/icon.png | Bin 0 -> 557 bytes .../Objects/Food/amanita_pie.rsi/meta.json | 1 + .../Objects/Food/amanitajelly.rsi/icon.png | Bin 0 -> 1681 bytes .../Objects/Food/amanitajelly.rsi/meta.json | 1 + .../Food/ambrosiavulgariscrushed.rsi/icon.png | Bin 0 -> 598 bytes .../ambrosiavulgariscrushed.rsi/meta.json | 1 + .../Food/apple_cake_slice.rsi/icon.png | Bin 0 -> 632 bytes .../Food/apple_cake_slice.rsi/meta.json | 1 + .../Objects/Food/apple_pie.rsi/icon.png | Bin 0 -> 593 bytes .../Objects/Food/apple_pie.rsi/meta.json | 1 + .../Textures/Objects/Food/bacon.rsi/icon.png | Bin 0 -> 873 bytes .../Textures/Objects/Food/bacon.rsi/meta.json | 1 + .../Objects/Food/badrecipe.rsi/icon.png | Bin 0 -> 647 bytes .../Objects/Food/badrecipe.rsi/meta.json | 1 + .../Objects/Food/baguette.rsi/icon.png | Bin 0 -> 1036 bytes .../Objects/Food/baguette.rsi/meta.json | 1 + .../Food/bananabreadslice.rsi/icon.png | Bin 0 -> 564 bytes .../Food/bananabreadslice.rsi/meta.json | 1 + .../Objects/Food/bearmeat.rsi/icon.png | Bin 0 -> 542 bytes .../Objects/Food/bearmeat.rsi/meta.json | 1 + .../Objects/Food/beetsoup.rsi/icon.png | Bin 0 -> 576 bytes .../Objects/Food/beetsoup.rsi/meta.json | 1 + .../Objects/Food/berryclafoutis.rsi/icon.png | Bin 0 -> 587 bytes .../Objects/Food/berryclafoutis.rsi/meta.json | 1 + .../Objects/Food/bigbiteburger.rsi/icon.png | Bin 0 -> 572 bytes .../Objects/Food/bigbiteburger.rsi/meta.json | 1 + .../Food/birthday_cake_slice.rsi/icon.png | Bin 0 -> 442 bytes .../Food/birthday_cake_slice.rsi/meta.json | 1 + .../Objects/Food/boiledrice.rsi/icon.png | Bin 0 -> 570 bytes .../Objects/Food/boiledrice.rsi/meta.json | 1 + .../Objects/Food/boiledrorocore.rsi/icon.png | Bin 0 -> 306 bytes .../Objects/Food/boiledrorocore.rsi/meta.json | 1 + .../Food/brain_cake_slice.rsi/icon.png | Bin 0 -> 720 bytes .../Food/brain_cake_slice.rsi/meta.json | 1 + .../Objects/Food/brainburger.rsi/icon.png | Bin 0 -> 564 bytes .../Objects/Food/brainburger.rsi/meta.json | 1 + .../braincakeslice.rsi/icon.png | Bin 0 -> 720 bytes .../braincakeslice.rsi/meta.json | 1 + .../Objects/Food/breadslice.rsi/icon.png | Bin 0 -> 601 bytes .../Objects/Food/breadslice.rsi/meta.json | 1 + .../Objects/Food/candiedapple.rsi/icon.png | Bin 0 -> 409 bytes .../Objects/Food/candiedapple.rsi/meta.json | 1 + .../Textures/Objects/Food/candy.rsi/icon.png | Bin 0 -> 442 bytes .../Textures/Objects/Food/candy.rsi/meta.json | 15 + .../Objects/Food/candy_corn.rsi/icon.png | Bin 0 -> 236 bytes .../Objects/Food/candy_corn.rsi/meta.json | 1 + .../Food/carrotcake_slice.rsi/icon.png | Bin 0 -> 639 bytes .../Food/carrotcake_slice.rsi/meta.json | 1 + .../Objects/Food/carrotfries.rsi/icon.png | Bin 0 -> 587 bytes .../Objects/Food/carrotfries.rsi/meta.json | 1 + .../Objects/Food/chawanmushi.rsi/icon.png | Bin 0 -> 570 bytes .../Objects/Food/chawanmushi.rsi/meta.json | 1 + .../Objects/Food/cheeseburger.rsi/icon.png | Bin 0 -> 456 bytes .../Objects/Food/cheeseburger.rsi/meta.json | 1 + .../Food/cheesecake_slice.rsi/icon.png | Bin 0 -> 552 bytes .../Food/cheesecake_slice.rsi/meta.json | 1 + .../Objects/Food/cheesewedge.rsi/icon.png | Bin 0 -> 441 bytes .../Objects/Food/cheesewedge.rsi/meta.json | 1 + .../Objects/Food/cheesie_honkers.rsi/icon.png | Bin 0 -> 286 bytes .../Food/cheesie_honkers.rsi/meta.json | 1 + .../Objects/Food/cheesyfries.rsi/icon.png | Bin 0 -> 629 bytes .../Objects/Food/cheesyfries.rsi/meta.json | 1 + .../Objects/Food/cherrypie.rsi/icon.png | Bin 0 -> 635 bytes .../Objects/Food/cherrypie.rsi/meta.json | 1 + .../Textures/Objects/Food/chips.rsi/icon.png | Bin 0 -> 348 bytes .../Textures/Objects/Food/chips.rsi/meta.json | 1 + .../Objects/Food/chocolatebar.rsi/icon.png | Bin 0 -> 274 bytes .../Objects/Food/chocolatebar.rsi/meta.json | 1 + .../Food/chocolatecake_slice.rsi/icon.png | Bin 0 -> 605 bytes .../Food/chocolatecake_slice.rsi/meta.json | 1 + .../Objects/Food/chocolateegg.rsi/icon.png | Bin 0 -> 279 bytes .../Objects/Food/chocolateegg.rsi/meta.json | 1 + .../Objects/Food/clownburger.rsi/icon.png | Bin 0 -> 650 bytes .../Objects/Food/clownburger.rsi/meta.json | 1 + .../Objects/Food/clownstears.rsi/icon.png | Bin 0 -> 471 bytes .../Objects/Food/clownstears.rsi/meta.json | 1 + .../Textures/Objects/Food/cocoa.rsi/icon.png | Bin 0 -> 336 bytes .../Textures/Objects/Food/cocoa.rsi/meta.json | 1 + .../Objects/Food/coldchili.rsi/icon.png | Bin 0 -> 538 bytes .../Objects/Food/coldchili.rsi/meta.json | 1 + .../Objects/Food/coldsauce.rsi/icon.png | Bin 0 -> 319 bytes .../Objects/Food/coldsauce.rsi/meta.json | 1 + .../Objects/Food/cookie!!!.rsi/icon.png | Bin 0 -> 428 bytes .../Objects/Food/cookie!!!.rsi/meta.json | 1 + .../Objects/Food/cracker.rsi/icon.png | Bin 0 -> 291 bytes .../Objects/Food/cracker.rsi/meta.json | 1 + .../Food/creamcheesebreadslice.rsi/icon.png | Bin 0 -> 745 bytes .../Food/creamcheesebreadslice.rsi/meta.json | 1 + .../Objects/Food/cubancarp.rsi/icon.png | Bin 0 -> 661 bytes .../Objects/Food/cubancarp.rsi/meta.json | 1 + .../Objects/Food/dionaroast.rsi/icon.png | Bin 0 -> 951 bytes .../Objects/Food/dionaroast.rsi/meta.json | 1 + .../Objects/Food/donkpocket.rsi/icon.png | Bin 0 -> 348 bytes .../Objects/Food/donkpocket.rsi/meta.json | 1 + .../Textures/Objects/Food/donut1.rsi/icon.png | Bin 0 -> 278 bytes .../Objects/Food/donut1.rsi/meta.json | 1 + .../Textures/Objects/Food/donut2.rsi/icon.png | Bin 0 -> 302 bytes .../Objects/Food/donut2.rsi/meta.json | 1 + .../Objects/Food/egg-blue.rsi/icon.png | Bin 0 -> 305 bytes .../Objects/Food/egg-blue.rsi/meta.json | 1 + .../Objects/Food/egg-green.rsi/icon.png | Bin 0 -> 317 bytes .../Objects/Food/egg-green.rsi/meta.json | 1 + .../Objects/Food/egg-mime.rsi/icon.png | Bin 0 -> 310 bytes .../Objects/Food/egg-mime.rsi/meta.json | 1 + .../Objects/Food/egg-orange.rsi/icon.png | Bin 0 -> 302 bytes .../Objects/Food/egg-orange.rsi/meta.json | 1 + .../Objects/Food/egg-purple.rsi/icon.png | Bin 0 -> 309 bytes .../Objects/Food/egg-purple.rsi/meta.json | 1 + .../Objects/Food/egg-rainbow.rsi/icon.png | Bin 0 -> 335 bytes .../Objects/Food/egg-rainbow.rsi/meta.json | 1 + .../Objects/Food/egg-red.rsi/icon.png | Bin 0 -> 305 bytes .../Objects/Food/egg-red.rsi/meta.json | 1 + .../Objects/Food/egg-yellow.rsi/icon.png | Bin 0 -> 311 bytes .../Objects/Food/egg-yellow.rsi/meta.json | 1 + .../Textures/Objects/Food/egg.rsi/icon.png | Bin 0 -> 312 bytes .../Textures/Objects/Food/egg.rsi/meta.json | 1 + .../Objects/Food/eggplantparm.rsi/icon.png | Bin 0 -> 681 bytes .../Objects/Food/eggplantparm.rsi/meta.json | 1 + .../Objects/Food/emptycondiment.rsi/icon.png | Bin 0 -> 274 bytes .../Objects/Food/emptycondiment.rsi/meta.json | 1 + .../Objects/Food/enchiladas.rsi/icon.png | Bin 0 -> 1690 bytes .../Objects/Food/enchiladas.rsi/meta.json | 1 + .../Objects/Food/enchiladasold.rsi/icon.png | Bin 0 -> 1698 bytes .../Objects/Food/enchiladasold.rsi/meta.json | 1 + .../Textures/Objects/Food/enzyme.rsi/icon.png | Bin 0 -> 285 bytes .../Objects/Food/enzyme.rsi/meta.json | 1 + .../Objects/Food/fishandchips.rsi/icon.png | Bin 0 -> 781 bytes .../Objects/Food/fishandchips.rsi/meta.json | 1 + .../Objects/Food/fishburger.rsi/icon.png | Bin 0 -> 498 bytes .../Objects/Food/fishburger.rsi/meta.json | 1 + .../Objects/Food/fishfillet.rsi/icon.png | Bin 0 -> 312 bytes .../Objects/Food/fishfillet.rsi/meta.json | 1 + .../Objects/Food/fishfingers.rsi/icon.png | Bin 0 -> 403 bytes .../Objects/Food/fishfingers.rsi/meta.json | 1 + .../Textures/Objects/Food/flour.rsi/icon.png | Bin 0 -> 345 bytes .../Textures/Objects/Food/flour.rsi/meta.json | 1 + .../Objects/Food/fortune_cookie.rsi/icon.png | Bin 0 -> 457 bytes .../Objects/Food/fortune_cookie.rsi/meta.json | 1 + .../Objects/Food/friedegg.rsi/icon.png | Bin 0 -> 479 bytes .../Objects/Food/friedegg.rsi/meta.json | 1 + .../Textures/Objects/Food/fries.rsi/icon.png | Bin 0 -> 553 bytes .../Textures/Objects/Food/fries.rsi/meta.json | 1 + .../Objects/Food/gappletart.rsi/icon.png | Bin 0 -> 701 bytes .../Objects/Food/gappletart.rsi/meta.json | 1 + .../Objects/Food/hburger.rsi/icon.png | Bin 0 -> 444 bytes .../Objects/Food/hburger.rsi/meta.json | 1 + .../Objects/Food/herbsalad.rsi/icon.png | Bin 0 -> 610 bytes .../Objects/Food/herbsalad.rsi/meta.json | 1 + .../Objects/Food/honeycomb.rsi/icon.png | Bin 0 -> 308 bytes .../Objects/Food/honeycomb.rsi/meta.json | 1 + .../Objects/Food/hotchili.rsi/icon.png | Bin 0 -> 582 bytes .../Objects/Food/hotchili.rsi/meta.json | 1 + .../Textures/Objects/Food/hotdog.rsi/icon.png | Bin 0 -> 429 bytes .../Objects/Food/hotdog.rsi/meta.json | 1 + .../Objects/Food/hotsauce.rsi/icon.png | Bin 0 -> 295 bytes .../Objects/Food/hotsauce.rsi/meta.json | 1 + .../Food/hugemushroomslice.rsi/icon.png | Bin 0 -> 442 bytes .../Food/hugemushroomslice.rsi/meta.json | 1 + .../Objects/Food/jdonut1.rsi/icon.png | Bin 0 -> 245 bytes .../Objects/Food/jdonut1.rsi/meta.json | 1 + .../Objects/Food/jdonut2.rsi/icon.png | Bin 0 -> 314 bytes .../Objects/Food/jdonut2.rsi/meta.json | 1 + .../Objects/Food/jellyburger.rsi/icon.png | Bin 0 -> 441 bytes .../Objects/Food/jellyburger.rsi/meta.json | 1 + .../Objects/Food/jellysandwich.rsi/icon.png | Bin 0 -> 654 bytes .../Objects/Food/jellysandwich.rsi/meta.json | 1 + .../Objects/Food/jellytoast.rsi/icon.png | Bin 0 -> 506 bytes .../Objects/Food/jellytoast.rsi/meta.json | 1 + .../Textures/Objects/Food/kabob.rsi/icon.png | Bin 0 -> 649 bytes .../Textures/Objects/Food/kabob.rsi/meta.json | 1 + .../Objects/Food/ketchup.rsi/icon.png | Bin 0 -> 317 bytes .../Objects/Food/ketchup.rsi/meta.json | 1 + .../Objects/Food/ketchupold.rsi/icon.png | Bin 0 -> 419 bytes .../Objects/Food/ketchupold.rsi/meta.json | 1 + .../Objects/Food/lemoncake_slice.rsi/icon.png | Bin 0 -> 637 bytes .../Food/lemoncake_slice.rsi/meta.json | 1 + .../Objects/Food/limecake_slice.rsi/icon.png | Bin 0 -> 653 bytes .../Objects/Food/limecake_slice.rsi/meta.json | 1 + .../Objects/Food/liquidfood.rsi/icon.png | Bin 0 -> 746 bytes .../Objects/Food/liquidfood.rsi/meta.json | 1 + .../Food/loadedbakedpotato.rsi/icon.png | Bin 0 -> 666 bytes .../Food/loadedbakedpotato.rsi/meta.json | 1 + .../Textures/Objects/Food/meat.rsi/icon.png | Bin 0 -> 469 bytes .../Textures/Objects/Food/meat.rsi/meta.json | 1 + .../Food/meat_pizza_slice.rsi/icon.png | Bin 0 -> 513 bytes .../Food/meat_pizza_slice.rsi/meta.json | 15 + .../Objects/Food/meatball.rsi/icon.png | Bin 0 -> 284 bytes .../Objects/Food/meatball.rsi/meta.json | 1 + .../Objects/Food/meatballsoup.rsi/icon.png | Bin 0 -> 565 bytes .../Objects/Food/meatballsoup.rsi/meta.json | 1 + .../Food/meatballspaghetti.rsi/icon.png | Bin 0 -> 680 bytes .../Food/meatballspaghetti.rsi/meta.json | 1 + .../Objects/Food/meatbreadslice.rsi/icon.png | Bin 0 -> 688 bytes .../Objects/Food/meatbreadslice.rsi/meta.json | 1 + .../Objects/Food/meatpie.rsi/icon.png | Bin 0 -> 614 bytes .../Objects/Food/meatpie.rsi/meta.json | 1 + .../Objects/Food/meatpizzaslice.rsi/icon.png | Bin 0 -> 513 bytes .../Objects/Food/meatpizzaslice.rsi/meta.json | 1 + .../Objects/Food/meatsteak.rsi/icon.png | Bin 0 -> 524 bytes .../Objects/Food/meatsteak.rsi/meta.json | 1 + .../Objects/Food/milosoup.rsi/icon.png | Bin 0 -> 612 bytes .../Objects/Food/milosoup.rsi/meta.json | 1 + .../Objects/Food/mimeburger.rsi/icon.png | Bin 0 -> 524 bytes .../Objects/Food/mimeburger.rsi/meta.json | 1 + .../Textures/Objects/Food/mint.rsi/icon.png | Bin 0 -> 287 bytes .../Textures/Objects/Food/mint.rsi/meta.json | 1 + .../Objects/Food/mixedcondiments.rsi/icon.png | Bin 0 -> 309 bytes .../Food/mixedcondiments.rsi/meta.json | 1 + .../Objects/Food/monkeycube.rsi/icon.png | Bin 0 -> 258 bytes .../Objects/Food/monkeycube.rsi/meta.json | 1 + .../Objects/Food/monkeysdelight.rsi/icon.png | Bin 0 -> 728 bytes .../Objects/Food/monkeysdelight.rsi/meta.json | 1 + .../Food/monkiesdelightold.rsi/icon.png | Bin 0 -> 443 bytes .../Food/monkiesdelightold.rsi/meta.json | 1 + .../Textures/Objects/Food/mtearp.rsi/icon.png | Bin 0 -> 275 bytes .../Objects/Food/mtearp.rsi/meta.json | 1 + .../Textures/Objects/Food/muffin.rsi/icon.png | Bin 0 -> 1113 bytes .../Objects/Food/muffin.rsi/meta.json | 1 + .../Food/mushroompizzaslice.rsi/icon.png | Bin 0 -> 476 bytes .../Food/mushroompizzaslice.rsi/meta.json | 1 + .../Objects/Food/mushroomsoup.rsi/icon.png | Bin 0 -> 703 bytes .../Objects/Food/mushroomsoup.rsi/meta.json | 1 + .../Objects/Food/mysterysoup.rsi/icon.png | Bin 0 -> 463 bytes .../Objects/Food/mysterysoup.rsi/meta.json | 1 + .../Objects/Food/nettlesoup.rsi/icon.png | Bin 0 -> 508 bytes .../Objects/Food/nettlesoup.rsi/meta.json | 1 + .../Objects/Food/oliveoil.rsi/icon.png | Bin 0 -> 364 bytes .../Objects/Food/oliveoil.rsi/meta.json | 1 + .../Objects/Food/omelette.rsi/icon.png | Bin 0 -> 502 bytes .../Objects/Food/omelette.rsi/meta.json | 1 + .../Food/orangecake_slice.rsi/icon.png | Bin 0 -> 634 bytes .../Food/orangecake_slice.rsi/meta.json | 1 + .../Objects/Food/pastatomato.rsi/icon.png | Bin 0 -> 664 bytes .../Objects/Food/pastatomato.rsi/meta.json | 1 + .../Objects/Food/peppermillsmall.rsi/icon.png | Bin 0 -> 232 bytes .../Food/peppermillsmall.rsi/meta.json | 1 + .../Objects/Food/phelmbiscuit.rsi/icon.png | Bin 0 -> 630 bytes .../Objects/Food/phelmbiscuit.rsi/meta.json | 1 + .../Textures/Objects/Food/pie.rsi/icon.png | Bin 0 -> 587 bytes .../Textures/Objects/Food/pie.rsi/meta.json | 1 + .../Food/pizzamargheritaslice.rsi/icon.png | Bin 0 -> 469 bytes .../Food/pizzamargheritaslice.rsi/meta.json | 1 + .../Objects/Food/plaincake_slice.rsi/icon.png | Bin 0 -> 653 bytes .../Food/plaincake_slice.rsi/meta.json | 1 + .../Objects/Food/plump_pie.rsi/icon.png | Bin 0 -> 545 bytes .../Objects/Food/plump_pie.rsi/meta.json | 1 + .../Objects/Food/popcorn.rsi/icon.png | Bin 0 -> 623 bytes .../Objects/Food/popcorn.rsi/meta.json | 1 + .../Objects/Food/poppypretzel.rsi/icon.png | Bin 0 -> 1060 bytes .../Objects/Food/poppypretzel.rsi/meta.json | 1 + .../Objects/Food/pumpkinpieslice.rsi/icon.png | Bin 0 -> 669 bytes .../Food/pumpkinpieslice.rsi/meta.json | 1 + .../Textures/Objects/Food/rice.rsi/icon.png | Bin 0 -> 317 bytes .../Textures/Objects/Food/rice.rsi/meta.json | 1 + .../Objects/Food/roburger.rsi/icon.png | Bin 0 -> 583 bytes .../Objects/Food/roburger.rsi/meta.json | 1 + .../Objects/Food/rofflewaffles.rsi/icon.png | Bin 0 -> 415 bytes .../Objects/Food/rofflewaffles.rsi/meta.json | 1 + .../Objects/Food/rorosoup.rsi/icon.png | Bin 0 -> 491 bytes .../Objects/Food/rorosoup.rsi/meta.json | 1 + .../Objects/Food/rottenmeat.rsi/icon.png | Bin 0 -> 505 bytes .../Objects/Food/rottenmeat.rsi/meta.json | 1 + .../Objects/Food/rpudding.rsi/icon.png | Bin 0 -> 557 bytes .../Objects/Food/rpudding.rsi/meta.json | 1 + .../Objects/Food/saltshakersmall.rsi/icon.png | Bin 0 -> 239 bytes .../Food/saltshakersmall.rsi/meta.json | 1 + .../Objects/Food/sandwich.rsi/icon.png | Bin 0 -> 849 bytes .../Objects/Food/sandwich.rsi/meta.json | 1 + .../Food/sandwich_filling.rsi/icon.png | Bin 0 -> 404 bytes .../Food/sandwich_filling.rsi/meta.json | 1 + .../Objects/Food/sandwich_top.rsi/icon.png | Bin 0 -> 497 bytes .../Objects/Food/sandwich_top.rsi/meta.json | 1 + .../Objects/Food/sausage.rsi/icon.png | Bin 0 -> 358 bytes .../Objects/Food/sausage.rsi/meta.json | 1 + .../Textures/Objects/Food/shandp.rsi/icon.png | Bin 0 -> 406 bytes .../Objects/Food/shandp.rsi/meta.json | 1 + .../Objects/Food/skrellsnacks.rsi/icon.png | Bin 0 -> 325 bytes .../Objects/Food/skrellsnacks.rsi/meta.json | 1 + .../Objects/Food/sosjerky.rsi/icon.png | Bin 0 -> 429 bytes .../Objects/Food/sosjerky.rsi/meta.json | 1 + .../Objects/Food/soydope.rsi/icon.png | Bin 0 -> 563 bytes .../Objects/Food/soydope.rsi/meta.json | 1 + .../Objects/Food/soylent_green.rsi/icon.png | Bin 0 -> 440 bytes .../Objects/Food/soylent_green.rsi/meta.json | 1 + .../Objects/Food/soylent_yellow.rsi/icon.png | Bin 0 -> 502 bytes .../Objects/Food/soylent_yellow.rsi/meta.json | 1 + .../Objects/Food/soysauce.rsi/icon.png | Bin 0 -> 294 bytes .../Objects/Food/soysauce.rsi/meta.json | 1 + .../Objects/Food/space_twinkie.rsi/icon.png | Bin 0 -> 203 bytes .../Objects/Food/space_twinkie.rsi/meta.json | 1 + .../Food/spacylibertyduff.rsi/icon.png | Bin 0 -> 3480 bytes .../Food/spacylibertyduff.rsi/meta.json | 1 + .../Objects/Food/spaghetti.rsi/icon.png | Bin 0 -> 650 bytes .../Objects/Food/spaghetti.rsi/meta.json | 15 + .../Objects/Food/spaghettiboiled.rsi/icon.png | Bin 0 -> 673 bytes .../Food/spaghettiboiled.rsi/meta.json | 1 + .../Objects/Food/spellburger.rsi/icon.png | Bin 0 -> 797 bytes .../Objects/Food/spellburger.rsi/meta.json | 1 + .../Objects/Food/spellburgerold.rsi/icon.png | Bin 0 -> 804 bytes .../Objects/Food/spellburgerold.rsi/meta.json | 1 + .../Objects/Food/spesslaw.rsi/icon.png | Bin 0 -> 655 bytes .../Objects/Food/spesslaw.rsi/meta.json | 1 + .../Textures/Objects/Food/stew.rsi/icon.png | Bin 0 -> 635 bytes .../Textures/Objects/Food/stew.rsi/meta.json | 1 + .../Objects/Food/stewedsoymeat.rsi/icon.png | Bin 0 -> 638 bytes .../Objects/Food/stewedsoymeat.rsi/meta.json | 1 + .../Objects/Food/stuffing.rsi/icon.png | Bin 0 -> 972 bytes .../Objects/Food/stuffing.rsi/meta.json | 1 + .../Textures/Objects/Food/sugar.rsi/icon.png | Bin 0 -> 323 bytes .../Textures/Objects/Food/sugar.rsi/meta.json | 1 + .../Objects/Food/sugarsmall.rsi/icon.png | Bin 0 -> 209 bytes .../Objects/Food/sugarsmall.rsi/meta.json | 1 + .../Objects/Food/superbiteburger.rsi/icon.png | Bin 0 -> 816 bytes .../Food/superbiteburger.rsi/meta.json | 1 + .../Objects/Food/syndi_cakes.rsi/icon.png | Bin 0 -> 289 bytes .../Objects/Food/syndi_cakes.rsi/meta.json | 1 + .../Textures/Objects/Food/taco.rsi/icon.png | Bin 0 -> 1233 bytes .../Textures/Objects/Food/taco.rsi/meta.json | 1 + .../Objects/Food/tastybread.rsi/icon.png | Bin 0 -> 565 bytes .../Objects/Food/tastybread.rsi/meta.json | 1 + .../Objects/Food/toastedsandwich.rsi/icon.png | Bin 0 -> 814 bytes .../Food/toastedsandwich.rsi/meta.json | 1 + .../Textures/Objects/Food/tofu.rsi/icon.png | Bin 0 -> 388 bytes .../Textures/Objects/Food/tofu.rsi/meta.json | 1 + .../Objects/Food/tofubreadslice.rsi/icon.png | Bin 0 -> 805 bytes .../Objects/Food/tofubreadslice.rsi/meta.json | 1 + .../Objects/Food/tofuburger.rsi/icon.png | Bin 0 -> 463 bytes .../Objects/Food/tofuburger.rsi/meta.json | 1 + .../Objects/Food/tofurkey.rsi/icon.png | Bin 0 -> 1024 bytes .../Objects/Food/tofurkey.rsi/meta.json | 1 + .../Objects/Food/tomatomeat.rsi/icon.png | Bin 0 -> 473 bytes .../Objects/Food/tomatomeat.rsi/meta.json | 1 + .../Objects/Food/tomatosoup.rsi/icon.png | Bin 0 -> 479 bytes .../Objects/Food/tomatosoup.rsi/meta.json | 1 + .../Objects/Food/twobread.rsi/icon.png | Bin 0 -> 577 bytes .../Objects/Food/twobread.rsi/meta.json | 1 + .../Objects/Food/validsalad.rsi/icon.png | Bin 0 -> 648 bytes .../Objects/Food/validsalad.rsi/meta.json | 1 + .../Food/vegetablepizzaslice.rsi/icon.png | Bin 0 -> 517 bytes .../Food/vegetablepizzaslice.rsi/meta.json | 1 + .../Objects/Food/vegetablesoup.rsi/icon.png | Bin 0 -> 565 bytes .../Objects/Food/vegetablesoup.rsi/meta.json | 1 + .../Objects/Food/waffles.rsi/icon.png | Bin 0 -> 521 bytes .../Objects/Food/waffles.rsi/meta.json | 1 + .../Objects/Food/watermelonslice.rsi/icon.png | Bin 0 -> 356 bytes .../Food/watermelonslice.rsi/meta.json | 1 + .../Objects/Food/wingfangchu.rsi/icon.png | Bin 0 -> 380 bytes .../Objects/Food/wingfangchu.rsi/meta.json | 1 + .../Objects/Food/wishsoup.rsi/icon.png | Bin 0 -> 487 bytes .../Objects/Food/wishsoup.rsi/meta.json | 1 + .../Objects/Food/xburger.rsi/icon.png | Bin 0 -> 461 bytes .../Objects/Food/xburger.rsi/meta.json | 1 + .../Objects/Food/xenobreadslice.rsi/icon.png | Bin 0 -> 678 bytes .../Objects/Food/xenobreadslice.rsi/meta.json | 1 + .../Objects/Food/xenomeat.rsi/icon.png | Bin 0 -> 499 bytes .../Objects/Food/xenomeat.rsi/meta.json | 1 + .../Objects/Food/xenomeatpie.rsi/icon.png | Bin 0 -> 621 bytes .../Objects/Food/xenomeatpie.rsi/meta.json | 1 + .../Objects/Trash/4no_raisins.rsi/icon.png | Bin 0 -> 500 bytes .../Objects/Trash/4no_raisins.rsi/meta.json | 1 + .../Textures/Objects/Trash/candy.rsi/icon.png | Bin 0 -> 608 bytes .../Objects/Trash/candy.rsi/meta.json | 1 + .../Trash/cheesie_honkers.rsi/icon.png | Bin 0 -> 421 bytes .../Trash/cheesie_honkers.rsi/meta.json | 1 + .../Textures/Objects/Trash/chips.rsi/icon.png | Bin 0 -> 532 bytes .../Objects/Trash/chips.rsi/meta.json | 1 + .../Objects/Trash/corncob.rsi/icon.png | Bin 0 -> 428 bytes .../Objects/Trash/corncob.rsi/meta.json | 1 + .../Objects/Trash/liquidfood.rsi/icon.png | Bin 0 -> 702 bytes .../Objects/Trash/liquidfood.rsi/meta.json | 1 + .../Trash/pistachios_pack.rsi/icon.png | Bin 0 -> 615 bytes .../Trash/pistachios_pack.rsi/meta.json | 1 + .../Objects/Trash/pizzabox_messy.rsi/icon.png | Bin 0 -> 797 bytes .../Trash/pizzabox_messy.rsi/meta.json | 1 + .../Objects/Trash/plasticbag.rsi/icon.png | Bin 0 -> 313 bytes .../Objects/Trash/plasticbag.rsi/meta.json | 1 + .../Textures/Objects/Trash/plate.rsi/icon.png | Bin 0 -> 370 bytes .../Objects/Trash/plate.rsi/meta.json | 1 + .../Objects/Trash/popcorn.rsi/icon.png | Bin 0 -> 564 bytes .../Objects/Trash/popcorn.rsi/meta.json | 1 + .../Objects/Trash/semki_pack.rsi/icon.png | Bin 0 -> 628 bytes .../Objects/Trash/semki_pack.rsi/meta.json | 1 + .../Objects/Trash/snack_bowl.rsi/icon.png | Bin 0 -> 562 bytes .../Objects/Trash/snack_bowl.rsi/meta.json | 1 + .../Objects/Trash/sosjerky.rsi/icon.png | Bin 0 -> 559 bytes .../Objects/Trash/sosjerky.rsi/meta.json | 1 + .../Objects/Trash/syndi_cakes.rsi/icon.png | Bin 0 -> 385 bytes .../Objects/Trash/syndi_cakes.rsi/meta.json | 1 + .../Objects/Trash/tastybread.rsi/icon.png | Bin 0 -> 589 bytes .../Objects/Trash/tastybread.rsi/meta.json | 1 + .../Objects/Trash/trashbag.rsi/icon-0.png | Bin 0 -> 385 bytes .../Objects/Trash/trashbag.rsi/icon-1.png | Bin 0 -> 453 bytes .../Objects/Trash/trashbag.rsi/icon-2.png | Bin 0 -> 489 bytes .../Objects/Trash/trashbag.rsi/icon-3.png | Bin 0 -> 529 bytes .../Objects/Trash/trashbag.rsi/icon.png | Bin 0 -> 529 bytes .../Objects/Trash/trashbag.rsi/meta.json | 31 + .../Textures/Objects/Trash/tray.rsi/icon.png | Bin 0 -> 759 bytes .../Textures/Objects/Trash/tray.rsi/meta.json | 1 + .../Objects/Trash/waffles.rsi/icon.png | Bin 0 -> 488 bytes .../Objects/Trash/waffles.rsi/meta.json | 1 + .../absinthebottle_empty.rsi/icon.png | Bin 0 -> 453 bytes .../absinthebottle_empty.rsi/meta.json | 1 + .../TrashDrinks/alco-clear.rsi/icon.png | Bin 0 -> 222 bytes .../TrashDrinks/alco-clear.rsi/meta.json | 1 + .../TrashDrinks/alebottle_empty.rsi/icon.png | Bin 0 -> 473 bytes .../TrashDrinks/alebottle_empty.rsi/meta.json | 1 + .../TrashDrinks/beer_empty.rsi/icon.png | Bin 0 -> 522 bytes .../TrashDrinks/beer_empty.rsi/meta.json | 1 + .../TrashDrinks/broken_bottle.rsi/icon.png | Bin 0 -> 656 bytes .../TrashDrinks/broken_bottle.rsi/meta.json | 1 + .../cognacbottle_empty.rsi/icon.png | Bin 0 -> 536 bytes .../cognacbottle_empty.rsi/meta.json | 1 + .../TrashDrinks/ginbottle_empty.rsi/icon.png | Bin 0 -> 617 bytes .../TrashDrinks/ginbottle_empty.rsi/meta.json | 1 + .../TrashDrinks/glass_empty.rsi/icon.png | Bin 0 -> 209 bytes .../TrashDrinks/glass_empty.rsi/meta.json | 1 + .../goldschlagerbottle_empty.rsi/icon.png | Bin 0 -> 483 bytes .../goldschlagerbottle_empty.rsi/meta.json | 1 + .../kahluabottle_empty.rsi/icon.png | Bin 0 -> 497 bytes .../kahluabottle_empty.rsi/meta.json | 1 + .../TrashDrinks/ntcahors_empty.rsi/icon.png | Bin 0 -> 412 bytes .../TrashDrinks/ntcahors_empty.rsi/meta.json | 1 + .../patronbottle_empty.rsi/icon.png | Bin 0 -> 475 bytes .../patronbottle_empty.rsi/meta.json | 1 + .../pwinebottle_empty.rsi/icon.png | Bin 0 -> 433 bytes .../pwinebottle_empty.rsi/meta.json | 1 + .../TrashDrinks/rumbottle_empty.rsi/icon.png | Bin 0 -> 471 bytes .../TrashDrinks/rumbottle_empty.rsi/meta.json | 1 + .../tequillabottle_empty.rsi/icon.png | Bin 0 -> 603 bytes .../tequillabottle_empty.rsi/meta.json | 1 + .../vermouthbottle_empty.rsi/icon.png | Bin 0 -> 544 bytes .../vermouthbottle_empty.rsi/meta.json | 1 + .../vodkabottle_empty.rsi/icon.png | Bin 0 -> 518 bytes .../vodkabottle_empty.rsi/meta.json | 1 + .../whiskeybottle_empty.rsi/icon.png | Bin 0 -> 521 bytes .../whiskeybottle_empty.rsi/meta.json | 1 + .../TrashDrinks/winebottle_empty.rsi/icon.png | Bin 0 -> 504 bytes .../winebottle_empty.rsi/meta.json | 1 + 1026 files changed, 9617 insertions(+), 8 deletions(-) create mode 100644 Content.Client/GameObjects/Components/Nutrition/DrinkFoodContainerVisualizer2D.cs create mode 100644 Content.Client/GameObjects/Components/Nutrition/DrinkFoodVisualizer2D.cs create mode 100644 Content.Server/GameObjects/Components/Nutrition/DrinkComponent.cs create mode 100644 Content.Server/GameObjects/Components/Nutrition/DrinkFoodContainerComponent.cs create mode 100644 Content.Server/GameObjects/Components/Nutrition/FoodComponent.cs create mode 100644 Content.Server/GameObjects/Components/Nutrition/HungerComponent.cs create mode 100644 Content.Server/GameObjects/Components/Nutrition/StomachComponent.cs create mode 100644 Content.Server/GameObjects/Components/Nutrition/ThirstComponent.cs create mode 100644 Content.Server/GameObjects/EntitySystems/HungerSystem.cs create mode 100644 Content.Server/GameObjects/EntitySystems/StomachSystem.cs create mode 100644 Content.Server/GameObjects/EntitySystems/ThirstSystem.cs create mode 100644 Content.Shared/GameObjects/Components/Nutrition/SharedDrinkFoodContainerComponent.cs create mode 100644 Content.Shared/GameObjects/Components/Nutrition/SharedFoodComponent.cs create mode 100644 Content.Shared/GameObjects/Components/Nutrition/SharedStomachComponent.cs create mode 100644 Resources/Audio/items/canopen.ogg create mode 100644 Resources/Audio/items/drink.ogg create mode 100644 Resources/Audio/items/eatfood.ogg create mode 100644 Resources/Prototypes/Entities/items/Consumables/drinks.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/drinks_bottles.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/drinks_cans.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/drinks_cups.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/food.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/food_containers.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/trash.yml create mode 100644 Resources/Prototypes/Entities/items/Consumables/trash_drinks.yml create mode 100644 Resources/Textures/Mob/UI/Hunger/Dead.png create mode 100644 Resources/Textures/Mob/UI/Hunger/Okay.png create mode 100644 Resources/Textures/Mob/UI/Hunger/Overfed.png create mode 100644 Resources/Textures/Mob/UI/Hunger/Peckish.png create mode 100644 Resources/Textures/Mob/UI/Hunger/Starving.png create mode 100644 Resources/Textures/Mob/UI/Thirst/Dead.png create mode 100644 Resources/Textures/Mob/UI/Thirst/Okay.png create mode 100644 Resources/Textures/Mob/UI/Thirst/OverHydrated.png create mode 100644 Resources/Textures/Mob/UI/Thirst/Parched.png create mode 100644 Resources/Textures/Mob/UI/Thirst/Thirsty.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/bananabread.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/bananabread.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/birthdaycake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/birthdaycake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/braincake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/braincake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/bread.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/bread.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/carrotcake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/carrotcake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/cheesecake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/cheesecake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/cheesewheel.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/cheesewheel.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/chocolatecake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/chocolatecake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-0.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-1.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-2.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-3.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-4.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-5.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-6.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-0.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-1.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-10.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-11.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-12.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-2.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-3.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-4.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-5.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-6.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-7.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-8.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-9.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox_shut.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/eggbox_shut.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/lemoncake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/lemoncake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/limecake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/limecake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/meatbread.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/meatbread.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/monkeycubebox.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/monkeycubebox.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/monkeycubewrap.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/monkeycubewrap.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-0.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-1.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-2.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-3.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-4.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzamargherita.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pizzamargherita.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/plaincake.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/plaincake.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pumpkinpie.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/pumpkinpie.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/tofubread.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/tofubread.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/vegetablepizza.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/vegetablepizza.rsi/meta.json create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/xenomeatbread.rsi/icon.png create mode 100644 Resources/Textures/Objects/DrinkFoodContainers/xenomeatbread.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/(mdr)grapejuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/(mdr)grapejuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/absinthebottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/absinthebottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/absintheglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/absintheglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/acidspitglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/acidspitglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/alco-blue.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/alco-blue.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/alco-green.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/alco-green.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/alco-red.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/alco-red.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/alco-white.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/alco-white.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/alebottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/alebottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/aleglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/aleglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/alliescocktail.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/alliescocktail.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/aloe.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/aloe.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/amasecglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/amasecglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/andalusia.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/andalusia.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/antifreeze.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/antifreeze.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/atomicbombglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/atomicbombglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/b&p.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/b&p.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/b52glass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/b52glass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/bahama_mama.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/bahama_mama.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/banana.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/banana.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/bananahonkglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/bananahonkglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/barflask.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/barflask.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/beepskysmashglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/beepskysmashglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/beer.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/beer.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/beerglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/beerglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/berryjuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/berryjuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/bigteacup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/bigteacup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/blackrussianglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/blackrussianglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/booger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/booger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/bottleofnothing.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/bottleofnothing.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/bravebullglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/bravebullglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/britmug.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/britmug.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/broken.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/broken.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/brownstar.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/brownstar.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cafe_latte.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/cafe_latte.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-10.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-4.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-5.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-6.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-7.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-8.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/icon-9.png create mode 100644 Resources/Textures/Objects/Drinks/carafe.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/carrotjuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/carrotjuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/changelingsting.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/changelingsting.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/chocolateglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/chocolateglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/coffee.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/coffee.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cognacbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/cognacbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cognacglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/cognacglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cola.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/cola.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/colabottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/colabottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cream.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/cream.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cubalibreglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/cubalibreglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/cup.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/cup.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/cup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/curacaoglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/curacaoglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/demonsblood.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/demonsblood.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/detflask.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/detflask.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/devilskiss.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/devilskiss.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/doctorsdelightglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/doctorsdelightglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/dr_gibb.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/dr_gibb.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/dr_gibb_glass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/dr_gibb_glass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/driestmartiniglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/driestmartiniglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/emeraldglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/emeraldglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/energy_drink.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/energy_drink.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/erikasurprise.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/erikasurprise.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/flask.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/flask.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/flask_old.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/flask_old.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/gargleblasterglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/gargleblasterglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/ginbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/ginbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/ginfizzglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/ginfizzglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/gintonicglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/gintonicglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_brown.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_brown.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_brown2.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_brown2.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_clear.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_clear.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_green.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_green.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_orange.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_orange.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_red.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_red.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_white.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_white.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/glass_yellow.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/glass_yellow.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/golden_cup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/golden_cup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/goldschlagerbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/goldschlagerbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/goldschlagerglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/goldschlagerglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/grapejuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/grapejuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/grapesoda.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/grapesoda.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/grenadinebottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/grenadinebottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/grenadineglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/grenadineglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/grogglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/grogglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/gsodaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/gsodaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/hell.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/hell.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/hippiesdelightglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/hippiesdelightglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/hot_coco.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/hot_coco.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/hot_coffee.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/hot_coffee.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/ice_tea_can.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/ice_tea_can.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/iced_beerglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/iced_beerglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/icedcoffeeglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/icedcoffeeglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/icedteaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/icedteaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/iceglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/iceglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/irishcarbomb.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/irishcarbomb.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/irishcoffeeglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/irishcoffeeglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/irishcreamglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/irishcreamglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/jar.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/jar.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/jar_metroid.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/jar_metroid.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/jar_what.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/jar_what.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/kahluabottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/kahluabottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/kahluaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/kahluaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/kiraspecial.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/kiraspecial.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lemon-lime.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lemon-lime.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lemonade.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lemonade.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lemonadeglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lemonadeglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lemonglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lemonglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lemonjuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lemonjuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lemonlime.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lemonlime.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/limejuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/limejuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/lithiumflask.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/lithiumflask.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/longislandicedteaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/longislandicedteaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/manhattanglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/manhattanglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/manlydorfglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/manlydorfglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/margaritaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/margaritaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/martiniglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/martiniglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/meadglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/meadglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/milk.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/milk.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/milkshake.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/milkshake.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mojito.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/mojito.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_black.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_black.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_black.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_black.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_black.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_blue.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_green.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_green.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_green.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_green.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_green.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_heart.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_heart.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_heart.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_heart.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_heart.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_metal.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_moebius.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_one.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_one.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_one.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_one.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_one.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_rainbow.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/mug_red.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/mug_red.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/mug_red.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/mug_red.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/mug_red.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/neurotoxinglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/neurotoxinglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/nothing.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/nothing.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/ntcahors.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/ntcahors.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/nuka_colaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/nuka_colaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/orangejuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/orangejuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/patronbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/patronbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/patronglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/patronglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-4.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-5.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/icon-6.png create mode 100644 Resources/Textures/Objects/Drinks/pitcher.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/poisonberryjuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/poisonberryjuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/purple_can.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/purple_can.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/pwinebottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/pwinebottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/pwineglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/pwineglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rag.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rag.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rag_lit.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rag_lit.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rag_small.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rag_small.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rag_small_lit.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rag_small_lit.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/ramen.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/ramen.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/red_meadglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/red_meadglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rewriter.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rewriter.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rumbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rumbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/rumglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/rumglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/sbitenglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/sbitenglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/screwdriverglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/screwdriverglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/sdreamglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/sdreamglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shake-blue.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shake-blue.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shake-empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shake-empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shake-meat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shake-meat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shake-robo.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shake-robo.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shake-white.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shake-white.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shaker.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shaker.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shinyflask.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shinyflask.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/shotglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/shotglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/silencerglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/silencerglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/singulo.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/singulo.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/snowwhite.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/snowwhite.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/sodawater.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/sodawater.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/soy_latte.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/soy_latte.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/soymilk.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/soymilk.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/space-up.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/space-up.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/space-up_bottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/space-up_bottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/space-up_glass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/space-up_glass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/space_mountain_wind.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/space_mountain_wind.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/space_mountain_wind_bottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/space_mountain_wind_bottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/space_mountain_wind_glass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/space_mountain_wind_glass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/starkist.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/starkist.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/syndicatebomb.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/syndicatebomb.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/teacup.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/teacup.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/teacup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/teaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/teaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/teapot.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/teapot.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/tequillabottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/tequillabottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/tequillaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/tequillaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/tequillasunriseglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/tequillasunriseglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/thirteen_loko.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/thirteen_loko.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/thirteen_loko_glass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/thirteen_loko_glass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/threemileislandglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/threemileislandglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/tomatojuice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/tomatojuice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/tonic.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/tonic.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/toxinsspecialglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/toxinsspecialglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/vacuumflask.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/vacuumflask.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/vermouthbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/vermouthbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/vermouthglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/vermouthglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/vodkabottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/vodkabottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/vodkatonicglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/vodkatonicglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/water.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/water.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/water_cup.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Drinks/water_cup.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Drinks/water_cup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/waterbottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/waterbottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/watermelon.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/watermelon.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/whiskeybottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/whiskeybottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/whiskeycolaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/whiskeycolaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/whiskeyglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/whiskeyglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/whiskeysodaglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/whiskeysodaglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/whiskeysodaglass2.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/whiskeysodaglass2.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/whiterussianglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/whiterussianglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/winebottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/winebottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/Drinks/wineglass.rsi/icon.png create mode 100644 Resources/Textures/Objects/Drinks/wineglass.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/4no_raisins.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/4no_raisins.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/aesirsalad.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/aesirsalad.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/amanita_pie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/amanita_pie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/amanitajelly.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/amanitajelly.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/apple_cake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/apple_cake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/apple_pie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/apple_pie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/bacon.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/bacon.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/badrecipe.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/badrecipe.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/baguette.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/baguette.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/bananabreadslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/bananabreadslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/bearmeat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/bearmeat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/beetsoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/beetsoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/berryclafoutis.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/berryclafoutis.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/bigbiteburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/bigbiteburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/birthday_cake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/birthday_cake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/boiledrice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/boiledrice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/boiledrorocore.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/boiledrorocore.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/brain_cake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/brain_cake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/brainburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/brainburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/breadslice.rsi/braincakeslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/breadslice.rsi/braincakeslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/breadslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/breadslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/candiedapple.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/candiedapple.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/candy.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/candy.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/candy_corn.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/candy_corn.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/carrotcake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/carrotcake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/carrotfries.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/carrotfries.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/chawanmushi.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/chawanmushi.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cheeseburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cheeseburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cheesecake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cheesecake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cheesewedge.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cheesewedge.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cheesie_honkers.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cheesie_honkers.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cheesyfries.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cheesyfries.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cherrypie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cherrypie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/chips.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/chips.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/chocolatebar.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/chocolatebar.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/chocolatecake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/chocolatecake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/chocolateegg.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/chocolateegg.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/clownburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/clownburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/clownstears.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/clownstears.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cocoa.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cocoa.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/coldchili.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/coldchili.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/coldsauce.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/coldsauce.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cookie!!!.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cookie!!!.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cracker.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cracker.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/creamcheesebreadslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/creamcheesebreadslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/cubancarp.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/cubancarp.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/dionaroast.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/dionaroast.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/donkpocket.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/donkpocket.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/donut1.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/donut1.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/donut2.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/donut2.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-blue.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-blue.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-green.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-green.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-mime.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-mime.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-orange.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-orange.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-purple.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-purple.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-rainbow.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-rainbow.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-red.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-red.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg-yellow.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg-yellow.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/egg.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/egg.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/eggplantparm.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/eggplantparm.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/emptycondiment.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/emptycondiment.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/enchiladas.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/enchiladas.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/enchiladasold.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/enchiladasold.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/enzyme.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/enzyme.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/fishandchips.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/fishandchips.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/fishburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/fishburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/fishfillet.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/fishfillet.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/fishfingers.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/fishfingers.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/flour.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/flour.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/fortune_cookie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/fortune_cookie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/friedegg.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/friedegg.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/fries.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/fries.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/gappletart.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/gappletart.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/hburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/hburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/herbsalad.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/herbsalad.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/honeycomb.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/honeycomb.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/hotchili.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/hotchili.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/hotdog.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/hotdog.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/hotsauce.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/hotsauce.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/hugemushroomslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/hugemushroomslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/jdonut1.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/jdonut1.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/jdonut2.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/jdonut2.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/jellyburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/jellyburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/jellysandwich.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/jellysandwich.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/jellytoast.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/jellytoast.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/kabob.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/kabob.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/ketchup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/ketchup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/ketchupold.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/ketchupold.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/lemoncake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/lemoncake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/limecake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/limecake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/liquidfood.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/liquidfood.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/loadedbakedpotato.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/loadedbakedpotato.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meat_pizza_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meat_pizza_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatball.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatball.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatballsoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatballsoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatballspaghetti.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatballspaghetti.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatbreadslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatbreadslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatpie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatpie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatpizzaslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatpizzaslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/meatsteak.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/meatsteak.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/milosoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/milosoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mimeburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mimeburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mint.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mint.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mixedcondiments.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mixedcondiments.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/monkeycube.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/monkeycube.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/monkeysdelight.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/monkeysdelight.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/monkiesdelightold.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/monkiesdelightold.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mtearp.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mtearp.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/muffin.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/muffin.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mushroompizzaslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mushroompizzaslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mushroomsoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mushroomsoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/mysterysoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/mysterysoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/nettlesoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/nettlesoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/oliveoil.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/oliveoil.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/omelette.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/omelette.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/orangecake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/orangecake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/pastatomato.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/pastatomato.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/peppermillsmall.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/peppermillsmall.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/phelmbiscuit.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/phelmbiscuit.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/pie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/pie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/plaincake_slice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/plaincake_slice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/plump_pie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/plump_pie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/popcorn.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/popcorn.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/poppypretzel.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/poppypretzel.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/pumpkinpieslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/pumpkinpieslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/rice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/rice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/roburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/roburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/rofflewaffles.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/rofflewaffles.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/rorosoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/rorosoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/rottenmeat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/rottenmeat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/rpudding.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/rpudding.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/saltshakersmall.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/saltshakersmall.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sandwich.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sandwich.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sandwich_filling.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sandwich_filling.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sandwich_top.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sandwich_top.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sausage.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sausage.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/shandp.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/shandp.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/skrellsnacks.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/skrellsnacks.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sosjerky.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sosjerky.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/soydope.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/soydope.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/soylent_green.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/soylent_green.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/soylent_yellow.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/soylent_yellow.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/soysauce.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/soysauce.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/space_twinkie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/space_twinkie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/spacylibertyduff.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/spacylibertyduff.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/spaghetti.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/spaghetti.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/spaghettiboiled.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/spaghettiboiled.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/spellburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/spellburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/spellburgerold.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/spellburgerold.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/spesslaw.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/spesslaw.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/stew.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/stew.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/stewedsoymeat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/stewedsoymeat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/stuffing.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/stuffing.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sugar.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sugar.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/sugarsmall.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/sugarsmall.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/superbiteburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/superbiteburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/syndi_cakes.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/syndi_cakes.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/taco.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/taco.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tastybread.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tastybread.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/toastedsandwich.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/toastedsandwich.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tofu.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tofu.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tofubreadslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tofubreadslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tofuburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tofuburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tofurkey.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tofurkey.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tomatomeat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tomatomeat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/tomatosoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/tomatosoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/twobread.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/twobread.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/validsalad.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/validsalad.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/vegetablepizzaslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/vegetablepizzaslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/vegetablesoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/vegetablesoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/waffles.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/waffles.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/watermelonslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/watermelonslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/wingfangchu.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/wingfangchu.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/wishsoup.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/wishsoup.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/xburger.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/xburger.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/xenobreadslice.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/xenobreadslice.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/xenomeat.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/xenomeat.rsi/meta.json create mode 100644 Resources/Textures/Objects/Food/xenomeatpie.rsi/icon.png create mode 100644 Resources/Textures/Objects/Food/xenomeatpie.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/4no_raisins.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/4no_raisins.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/candy.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/candy.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/cheesie_honkers.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/cheesie_honkers.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/chips.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/chips.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/corncob.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/corncob.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/liquidfood.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/liquidfood.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/pistachios_pack.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/pistachios_pack.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/pizzabox_messy.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/pizzabox_messy.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/plasticbag.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/plasticbag.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/plate.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/plate.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/popcorn.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/popcorn.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/semki_pack.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/semki_pack.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/snack_bowl.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/snack_bowl.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/sosjerky.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/sosjerky.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/syndi_cakes.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/syndi_cakes.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/tastybread.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/tastybread.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/trashbag.rsi/icon-0.png create mode 100644 Resources/Textures/Objects/Trash/trashbag.rsi/icon-1.png create mode 100644 Resources/Textures/Objects/Trash/trashbag.rsi/icon-2.png create mode 100644 Resources/Textures/Objects/Trash/trashbag.rsi/icon-3.png create mode 100644 Resources/Textures/Objects/Trash/trashbag.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/trashbag.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/tray.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/tray.rsi/meta.json create mode 100644 Resources/Textures/Objects/Trash/waffles.rsi/icon.png create mode 100644 Resources/Textures/Objects/Trash/waffles.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/absinthebottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/absinthebottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/alco-clear.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/alco-clear.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/alebottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/alebottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/beer_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/beer_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/broken_bottle.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/broken_bottle.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/cognacbottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/cognacbottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/ginbottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/ginbottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/glass_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/glass_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/goldschlagerbottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/goldschlagerbottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/ntcahors_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/ntcahors_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/patronbottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/patronbottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/vermouthbottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/vermouthbottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/vodkabottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/vodkabottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/whiskeybottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/whiskeybottle_empty.rsi/meta.json create mode 100644 Resources/Textures/Objects/TrashDrinks/winebottle_empty.rsi/icon.png create mode 100644 Resources/Textures/Objects/TrashDrinks/winebottle_empty.rsi/meta.json diff --git a/Content.Client/EntryPoint.cs b/Content.Client/EntryPoint.cs index c7175ceddc..0a430aff72 100644 --- a/Content.Client/EntryPoint.cs +++ b/Content.Client/EntryPoint.cs @@ -112,6 +112,12 @@ namespace Content.Client "MedicalScanner", "WirePlacer", "Species", + "Drink", + "Food", + "DrinkFoodContainer", + "Stomach", + "Hunger", + "Thirst", "Rotatable", }; diff --git a/Content.Client/GameObjects/Components/Nutrition/DrinkFoodContainerVisualizer2D.cs b/Content.Client/GameObjects/Components/Nutrition/DrinkFoodContainerVisualizer2D.cs new file mode 100644 index 0000000000..93bd7aa745 --- /dev/null +++ b/Content.Client/GameObjects/Components/Nutrition/DrinkFoodContainerVisualizer2D.cs @@ -0,0 +1,67 @@ +using System; +using System.Collections.Generic; +using Content.Shared.GameObjects.Components.Nutrition; +using Content.Shared.Utility; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Client.GameObjects.Components.Nutrition +{ + [UsedImplicitly] + public sealed class DrinkFoodContainerVisualizer2D : AppearanceVisualizer + { + private string _baseState; + private int _steps; + private DrinkFoodContainerVisualMode _mode; + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + _baseState = node.GetNode("base_state").AsString(); + _steps = node.GetNode("steps").AsInt(); + try + { + _mode = node.GetNode("mode").AsEnum(); + } + catch (KeyNotFoundException) + { + _mode = DrinkFoodContainerVisualMode.Rounded; + } + } + + public override void OnChangeData(AppearanceComponent component) + { + var sprite = component.Owner.GetComponent(); + + if (!component.TryGetData(DrinkFoodContainerVisuals.Current, out var current)) + { + return; + } + + if (!component.TryGetData(DrinkFoodContainerVisuals.Capacity, out var capacity)) + { + return; + } + + int step; + + switch (_mode) + { + case DrinkFoodContainerVisualMode.Discrete: + step = Math.Min(_steps - 1, current); + break; + case DrinkFoodContainerVisualMode.Rounded: + step = ContentHelpers.RoundToLevels(current, capacity, _steps); + break; + default: + throw new NullReferenceException(); + } + + sprite.LayerSetState(0, $"{_baseState}-{step}"); + } + } +} diff --git a/Content.Client/GameObjects/Components/Nutrition/DrinkFoodVisualizer2D.cs b/Content.Client/GameObjects/Components/Nutrition/DrinkFoodVisualizer2D.cs new file mode 100644 index 0000000000..b212534946 --- /dev/null +++ b/Content.Client/GameObjects/Components/Nutrition/DrinkFoodVisualizer2D.cs @@ -0,0 +1,42 @@ +using Content.Shared.GameObjects.Components.Nutrition; +using Content.Shared.Utility; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Client.GameObjects.Components.Nutrition +{ + [UsedImplicitly] + public sealed class DrinkFoodVisualizer2D : AppearanceVisualizer + { + private int _steps; + + public override void LoadData(YamlMappingNode node) + { + base.LoadData(node); + + _steps = node.GetNode("steps").AsInt(); + } + + public override void OnChangeData(AppearanceComponent component) + { + var sprite = component.Owner.GetComponent(); + if (!component.TryGetData(SharedFoodComponent.FoodVisuals.MaxUses, out var maxUses)) + { + return; + } + + if (component.TryGetData(SharedFoodComponent.FoodVisuals.Visual, out var usesLeft)) + { + var step = ContentHelpers.RoundToLevels(usesLeft, maxUses, _steps); + sprite.LayerSetState(0, $"icon-{step}"); + } + else + { + sprite.LayerSetState(0, $"icon-0"); + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Chemistry/SolutionComponent.cs b/Content.Server/GameObjects/Components/Chemistry/SolutionComponent.cs index 83a54d4779..01b417a933 100644 --- a/Content.Server/GameObjects/Components/Chemistry/SolutionComponent.cs +++ b/Content.Server/GameObjects/Components/Chemistry/SolutionComponent.cs @@ -32,11 +32,21 @@ namespace Content.Server.GameObjects.Components.Chemistry protected override void Startup() { base.Startup(); - + _reactions = _prototypeManager.EnumeratePrototypes(); _audioSystem = _entitySystemManager.GetEntitySystem(); } + /// + /// Initializes the SolutionComponent if it doesn't have an owner + /// + public void InitializeFromPrototype() + { + // Because Initialize needs an Owner, Startup isn't called, etc. + IoCManager.InjectDependencies(this); + _reactions = _prototypeManager.EnumeratePrototypes(); + } + /// /// Transfers solution from the held container to the target container. /// @@ -193,7 +203,7 @@ namespace Content.Server.GameObjects.Components.Chemistry } } - public bool TryAddReagent(string reagentId, int quantity, out int acceptedQuantity, bool skipReactionCheck = false) + public bool TryAddReagent(string reagentId, int quantity, out int acceptedQuantity, bool skipReactionCheck = false, bool skipColor = false) { if (quantity > _maxVolume - _containedSolution.TotalVolume) { @@ -206,20 +216,24 @@ namespace Content.Server.GameObjects.Components.Chemistry } _containedSolution.AddReagent(reagentId, acceptedQuantity); - RecalculateColor(); + if (!skipColor) { + RecalculateColor(); + } if(!skipReactionCheck) CheckForReaction(); OnSolutionChanged(); return true; } - public bool TryAddSolution(Solution solution, bool skipReactionCheck = false) + public bool TryAddSolution(Solution solution, bool skipReactionCheck = false, bool skipColor = false) { if (solution.TotalVolume > (_maxVolume - _containedSolution.TotalVolume)) return false; _containedSolution.AddSolution(solution); - RecalculateColor(); + if (!skipColor) { + RecalculateColor(); + } if(!skipReactionCheck) CheckForReaction(); OnSolutionChanged(); diff --git a/Content.Server/GameObjects/Components/Nutrition/DrinkComponent.cs b/Content.Server/GameObjects/Components/Nutrition/DrinkComponent.cs new file mode 100644 index 0000000000..dda4ddeba2 --- /dev/null +++ b/Content.Server/GameObjects/Components/Nutrition/DrinkComponent.cs @@ -0,0 +1,184 @@ +using System; +using Content.Server.GameObjects.Components.Chemistry; +using Content.Server.GameObjects.Components.Sound; +using Content.Server.GameObjects.EntitySystems; +using Content.Shared.Chemistry; +using Content.Shared.GameObjects.Components.Nutrition; +using Content.Shared.Interfaces; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Nutrition +{ + [RegisterComponent] + public class DrinkComponent : Component, IAfterAttack, IUse + { +#pragma warning disable 649 + [Dependency] private readonly ILocalizationManager _localizationManager; +#pragma warning restore 649 + public override string Name => "Drink"; + [ViewVariables] + private SolutionComponent _contents; + + private AppearanceComponent _appearanceComponent; + + [ViewVariables] + private string _useSound; + [ViewVariables] + private string _finishPrototype; + + public int TransferAmount => _transferAmount; + [ViewVariables] + private int _transferAmount = 2; + + public int MaxVolume + { + get => _contents.MaxVolume; + set => _contents.MaxVolume = value; + } + + private Solution _initialContents; // This is just for loading from yaml + + private bool _despawnOnFinish; + + public int UsesLeft() + { + // In case transfer amount exceeds volume left + if (_contents.CurrentVolume == 0) + { + return 0; + } + return Math.Max(1, _contents.CurrentVolume / _transferAmount); + } + + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _initialContents, "contents", null); + serializer.DataField(ref _useSound, "use_sound", "/Audio/items/drink.ogg"); + // E.g. cola can when done or clear bottle, whatever + // Currently this will enforce it has the same volume but this may change. + serializer.DataField(ref _despawnOnFinish, "despawn_empty", true); + serializer.DataField(ref _finishPrototype, "spawn_on_finish", null); + } + + public override void Initialize() + { + base.Initialize(); + if (_contents == null) + { + if (Owner.TryGetComponent(out SolutionComponent solutionComponent)) + { + _contents = solutionComponent; + } + else + { + _contents = Owner.AddComponent(); + _contents.Initialize(); + } + } + + _contents.MaxVolume = _initialContents.TotalVolume; + } + + protected override void Startup() + { + base.Startup(); + if (_initialContents != null) + { + _contents.TryAddSolution(_initialContents, true, true); + } + _initialContents = null; + Owner.TryGetComponent(out AppearanceComponent appearance); + _appearanceComponent = appearance; + _appearanceComponent?.SetData(SharedFoodComponent.FoodVisuals.MaxUses, MaxVolume); + _updateAppearance(); + } + + private void _updateAppearance() + { + _appearanceComponent?.SetData(SharedFoodComponent.FoodVisuals.Visual, UsesLeft()); + } + + bool IUse.UseEntity(UseEntityEventArgs eventArgs) + { + UseDrink(eventArgs.User); + + return true; + } + + void IAfterAttack.AfterAttack(AfterAttackEventArgs eventArgs) + { + UseDrink(eventArgs.Attacked); + } + + void UseDrink(IEntity user) + { + if (user == null) + { + return; + } + + if (UsesLeft() == 0 && !_despawnOnFinish) + { + user.PopupMessage(user, _localizationManager.GetString("Empty")); + return; + } + + if (user.TryGetComponent(out StomachComponent stomachComponent)) + { + var transferAmount = Math.Min(_transferAmount, _contents.CurrentVolume); + var split = _contents.SplitSolution(transferAmount); + if (stomachComponent.TryTransferSolution(split)) + { + if (_useSound != null) + { + Owner.GetComponent()?.Play(_useSound); + user.PopupMessage(user, _localizationManager.GetString("Slurp")); + } + } + else + { + // Add it back in + _contents.TryAddSolution(split); + user.PopupMessage(user, _localizationManager.GetString("Can't drink")); + } + } + + // Drink containers are mostly transient. + if (!_despawnOnFinish || UsesLeft() > 0) + { + return; + + } + + Owner.Delete(); + + if (_finishPrototype != null) + { + var finisher = Owner.EntityManager.SpawnEntity(_finishPrototype); + if (user.TryGetComponent(out HandsComponent handsComponent) && finisher.TryGetComponent(out ItemComponent itemComponent)) + { + if (handsComponent.CanPutInHand(itemComponent)) + { + handsComponent.PutInHand(itemComponent); + return; + } + } + + finisher.Transform.GridPosition = user.Transform.GridPosition; + if (finisher.TryGetComponent(out DrinkComponent drinkComponent)) + { + drinkComponent.MaxVolume = MaxVolume; + } + return; + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Nutrition/DrinkFoodContainerComponent.cs b/Content.Server/GameObjects/Components/Nutrition/DrinkFoodContainerComponent.cs new file mode 100644 index 0000000000..7d9e053772 --- /dev/null +++ b/Content.Server/GameObjects/Components/Nutrition/DrinkFoodContainerComponent.cs @@ -0,0 +1,191 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Content.Server.GameObjects.Components.Sound; +using Content.Server.GameObjects.EntitySystems; +using Content.Shared.GameObjects.Components.Nutrition; +using Robust.Server.GameObjects; +using Robust.Server.GameObjects.Components.Container; +using Robust.Server.Interfaces.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Random; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Nutrition +{ + [RegisterComponent] + public sealed class DrinkFoodContainerComponent : SharedDrinkFoodContainerComponent, IMapInit, IUse + { + public override string Name => "DrinkFoodContainer"; + private string _useSound; + private Container _foodContainer; + // Optimisation scabbed from BallisticMagazineComponent to avoid loading entities until needed + [ViewVariables] private readonly Stack _loadedFood = new Stack(); + private AppearanceComponent _appearanceComponent; + [ViewVariables] public int Count => _availableSpawnCount + _loadedFood.Count; + private int _availableSpawnCount; + private Dictionary _prototypes; + private string _finishPrototype; + public int Capacity => _capacity; + private int _capacity; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _useSound, "use_sound", null); + // Is a dictionary for stuff with probabilities (mainly donut box) + serializer.DataField(ref _prototypes, "prototypes", null); + // If you want the final item to be different e.g. trash + serializer.DataField(ref _finishPrototype, "spawn_on_finish", null); + serializer.DataField(ref _availableSpawnCount, "available_spawn_count", 0); + serializer.DataField(ref _capacity, "capacity", 5); + } + + public override void Initialize() + { + base.Initialize(); + Owner.TryGetComponent(out AppearanceComponent appearance); + _appearanceComponent = appearance; + if (_prototypes == null) + { + throw new NullReferenceException(); + } + + if (_prototypes.Sum(x => x.Value) != 100) + { + throw new ArgumentOutOfRangeException(); + } + } + + public void MapInit() + { + _availableSpawnCount = Capacity; + } + + protected override void Startup() + { + base.Startup(); + + _foodContainer = + ContainerManagerComponent.Ensure("food_container", Owner, out var existed); + + if (existed) + { + foreach (var entity in _foodContainer.ContainedEntities) + { + _loadedFood.Push(entity); + } + } + + _updateAppearance(); + _appearanceComponent?.SetData(DrinkFoodContainerVisuals.Capacity, Capacity); + } + + bool IUse.UseEntity(UseEntityEventArgs eventArgs) + { + // TODO: Potentially change this depending upon desired functionality + IEntity item = TakeItem(eventArgs.User); + if (item == null) + { + return false; + } + if (item.TryGetComponent(out ItemComponent itemComponent) && + eventArgs.User.TryGetComponent(out HandsComponent handsComponent)) + { + if (handsComponent.CanPutInHand(itemComponent)) + { + handsComponent.PutInHand(itemComponent); + return true; + } + } + + item.Transform.GridPosition = eventArgs.User.Transform.GridPosition; + return true; + } + + // TODO: Somewhat shitcode + // Tried using .Prob() buuuuuttt trying that for each item wouldn't work. + private string _getProbItem(Dictionary prototypes) + { + if (prototypes.Count == 1) + { + return prototypes.Keys.ToList()[0]; + } + var prob = IoCManager.Resolve(); + var result = prob.Next(0, 100); + var runningTotal = 0; + foreach (var item in prototypes) + { + runningTotal += item.Value; + if (result < runningTotal) + { + return item.Key; + } + + } + throw new Exception(); + } + + public IEntity TakeItem(IEntity user) + { + if (_useSound != null) + { + if (Owner.TryGetComponent(out SoundComponent soundComponent) && _useSound != null) + { + soundComponent.Play(_useSound); + } + } + IEntity item = null; + if (_loadedFood.Count > 0) + { + item = _loadedFood.Pop(); + _foodContainer.Remove(item); + } + + if (_availableSpawnCount > 0) + { + var prototypeName = _getProbItem(_prototypes); + item = Owner.EntityManager.SpawnEntity(prototypeName); + _availableSpawnCount -= 1; + + } + + _tryDelete(user); + _updateAppearance(); + + return item; + } + + private void _tryDelete(IEntity user) + { + if (Count <= 0) + { + // Ideally this takes priority to be put into inventory rather than the desired item + if (_finishPrototype != null) + { + var item = Owner.EntityManager.SpawnEntity(_finishPrototype); + item.Transform.GridPosition = Owner.Transform.GridPosition; + Owner.Delete(); + if (user.TryGetComponent(out HandsComponent handsComponent) && + item.TryGetComponent(out ItemComponent itemComponent)) + { + if (handsComponent.CanPutInHand(itemComponent)) + { + handsComponent.PutInHand(itemComponent); + } + } + return; + } + Owner.Delete(); + } + } + + private void _updateAppearance() + { + _appearanceComponent?.SetData(DrinkFoodContainerVisuals.Current, Count); + } + } +} diff --git a/Content.Server/GameObjects/Components/Nutrition/FoodComponent.cs b/Content.Server/GameObjects/Components/Nutrition/FoodComponent.cs new file mode 100644 index 0000000000..25e104688d --- /dev/null +++ b/Content.Server/GameObjects/Components/Nutrition/FoodComponent.cs @@ -0,0 +1,181 @@ +using System; +using Content.Server.GameObjects.Components.Chemistry; +using Content.Server.GameObjects.Components.Sound; +using Content.Server.GameObjects.EntitySystems; +using Content.Shared.Chemistry; +using Content.Shared.GameObjects.Components.Nutrition; +using Content.Shared.Interfaces; +using Robust.Server.GameObjects; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Nutrition +{ + [RegisterComponent] + public class FoodComponent : Component, IAfterAttack, IUse + { +#pragma warning disable 649 + [Dependency] private readonly ILocalizationManager _localizationManager; +#pragma warning restore 649 + // Currently the design is similar to drinkcomponent but it's susceptible to change so left as is for now. + public override string Name => "Food"; + + private AppearanceComponent _appearanceComponent; + + [ViewVariables] + private string _useSound; + [ViewVariables] + private string _finishPrototype; + [ViewVariables] + private SolutionComponent _contents; + [ViewVariables] + private int _transferAmount; + + private Solution _initialContents; // This is just for loading from yaml + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + // Default is 1 use restoring 30 + serializer.DataField(ref _initialContents, "contents", null); + serializer.DataField(ref _useSound, "use_sound", "/Audio/items/eatfood.ogg"); + // Default is transfer 30 units + serializer.DataField(ref _transferAmount, + "transfer_amount", + 30 / StomachComponent.NutrimentFactor); + // E.g. empty chip packet when done + serializer.DataField(ref _finishPrototype, "spawn_on_finish", null); + } + + public override void Initialize() + { + base.Initialize(); + if (_contents == null) + { + if (Owner.TryGetComponent(out SolutionComponent solutionComponent)) + { + _contents = solutionComponent; + } + else + { + _contents = Owner.AddComponent(); + _contents.Initialize(); + } + } + + _contents.MaxVolume = _initialContents.TotalVolume; + } + + protected override void Startup() + { + base.Startup(); + if (_initialContents != null) + { + _contents.TryAddSolution(_initialContents, true, true); + } + + _initialContents = null; + if (_contents.CurrentVolume == 0) + { + _contents.TryAddReagent("chem.Nutriment", 30 / StomachComponent.NutrimentFactor, + out _); + } + Owner.TryGetComponent(out AppearanceComponent appearance); + _appearanceComponent = appearance; + // UsesLeft() at the start should match the max, at least currently. + _appearanceComponent?.SetData(SharedFoodComponent.FoodVisuals.MaxUses, UsesLeft()); + _updateAppearance(); + } + + private void _updateAppearance() + { + _appearanceComponent?.SetData(SharedFoodComponent.FoodVisuals.Visual, UsesLeft()); + } + + public int UsesLeft() + { + // In case transfer amount exceeds volume left + if (_contents.CurrentVolume == 0) + { + return 0; + } + return Math.Max(1, _contents.CurrentVolume / _transferAmount); + } + + bool IUse.UseEntity(UseEntityEventArgs eventArgs) + { + UseFood(eventArgs.User); + + return true; + } + + void IAfterAttack.AfterAttack(AfterAttackEventArgs eventArgs) + { + UseFood(eventArgs.Attacked); + } + + void UseFood(IEntity user) + { + if (user == null) + { + return; + } + + if (UsesLeft() == 0) + { + user.PopupMessage(user, _localizationManager.GetString("Empty")); + } + else + { + // TODO: Add putting food back in boxes here? + if (user.TryGetComponent(out StomachComponent stomachComponent)) + { + var transferAmount = Math.Min(_transferAmount, _contents.CurrentVolume); + var split = _contents.SplitSolution(transferAmount); + if (stomachComponent.TryTransferSolution(split)) + { + if (_useSound != null) + { + Owner.GetComponent()?.Play(_useSound); + user.PopupMessage(user, _localizationManager.GetString("Nom")); + } + } + else + { + // Add it back in + _contents.TryAddSolution(split); + user.PopupMessage(user, _localizationManager.GetString("Can't eat")); + } + } + } + + if (UsesLeft() > 0) + { + return; + + } + + Owner.Delete(); + + if (_finishPrototype != null) + { + var finisher = Owner.EntityManager.SpawnEntity(_finishPrototype); + if (user.TryGetComponent(out HandsComponent handsComponent) && finisher.TryGetComponent(out ItemComponent itemComponent)) + { + if (handsComponent.CanPutInHand(itemComponent)) + { + handsComponent.PutInHand(itemComponent); + return; + } + } + + finisher.Transform.GridPosition = user.Transform.GridPosition; + return; + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Nutrition/HungerComponent.cs b/Content.Server/GameObjects/Components/Nutrition/HungerComponent.cs new file mode 100644 index 0000000000..fe812fbdb8 --- /dev/null +++ b/Content.Server/GameObjects/Components/Nutrition/HungerComponent.cs @@ -0,0 +1,178 @@ +using System; +using System.Collections.Generic; +using Content.Server.GameObjects.Components.Mobs; +using Content.Server.GameObjects.Components.Movement; +using Content.Shared.GameObjects; +using Content.Shared.GameObjects.Components.Mobs; +using Content.Shared.GameObjects.Components.Nutrition; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.Random; +using Robust.Shared.IoC; +using Robust.Shared.Log; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Nutrition +{ + [RegisterComponent] + public sealed class HungerComponent : Component + { + #pragma warning disable 649 + [Dependency] private readonly IRobustRandom _random; + #pragma warning restore 649 + + public override string Name => "Hunger"; + + // Base stuff + public float BaseDecayRate => _baseDecayRate; + [ViewVariables] private float _baseDecayRate; + public float ActualDecayRate => _actualDecayRate; + [ViewVariables] private float _actualDecayRate; + + // Hunger + public HungerThreshold CurrentHungerThreshold => _currentHungerThreshold; + private HungerThreshold _currentHungerThreshold; + private HungerThreshold _lastHungerThreshold; + public float CurrentHunger => _currentHunger; + [ViewVariables] private float _currentHunger; + + public Dictionary HungerThresholds => _hungerThresholds; + private Dictionary _hungerThresholds = new Dictionary + { + {HungerThreshold.Overfed, 600.0f}, + {HungerThreshold.Okay, 450.0f}, + {HungerThreshold.Peckish, 300.0f}, + {HungerThreshold.Starving, 150.0f}, + {HungerThreshold.Dead, 0.0f}, + }; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _baseDecayRate, "base_decay_rate", 0.5f); + } + + public void HungerThresholdEffect(bool force = false) + { + if (_currentHungerThreshold != _lastHungerThreshold || force) { + Logger.InfoS("hunger", $"Updating hunger state for {Owner.Name}"); + + // Revert slow speed if required + if (_lastHungerThreshold == HungerThreshold.Starving && _currentHungerThreshold != HungerThreshold.Dead && + Owner.TryGetComponent(out PlayerInputMoverComponent playerSpeedupComponent)) + { + // TODO shitcode: Come up something better + playerSpeedupComponent.WalkMoveSpeed = playerSpeedupComponent.WalkMoveSpeed * 2; + playerSpeedupComponent.SprintMoveSpeed = playerSpeedupComponent.SprintMoveSpeed * 4; + } + + // Update UI + Owner.TryGetComponent(out ServerStatusEffectsComponent statusEffectsComponent); + statusEffectsComponent?.ChangeStatus(StatusEffect.Hunger, "/Textures/Mob/UI/Hunger/" + + _currentHungerThreshold + ".png"); + + switch (_currentHungerThreshold) + { + case HungerThreshold.Overfed: + _lastHungerThreshold = _currentHungerThreshold; + _actualDecayRate = _baseDecayRate * 1.2f; + return; + + case HungerThreshold.Okay: + _lastHungerThreshold = _currentHungerThreshold; + _actualDecayRate = _baseDecayRate; + return; + + case HungerThreshold.Peckish: + // Same as okay except with UI icon saying eat soon. + _lastHungerThreshold = _currentHungerThreshold; + _actualDecayRate = _baseDecayRate * 0.8f; + return; + + case HungerThreshold.Starving: + // TODO: If something else bumps this could cause mega-speed. + // If some form of speed update system if multiple things are touching it use that. + if (Owner.TryGetComponent(out PlayerInputMoverComponent playerInputMoverComponent)) { + playerInputMoverComponent.WalkMoveSpeed = playerInputMoverComponent.WalkMoveSpeed / 2; + playerInputMoverComponent.SprintMoveSpeed = playerInputMoverComponent.SprintMoveSpeed / 4; + } + _lastHungerThreshold = _currentHungerThreshold; + _actualDecayRate = _baseDecayRate * 0.6f; + return; + + case HungerThreshold.Dead: + return; + default: + Logger.ErrorS("hunger", $"No hunger threshold found for {_currentHungerThreshold}"); + throw new ArgumentOutOfRangeException($"No hunger threshold found for {_currentHungerThreshold}"); + } + } + } + + protected override void Startup() + { + base.Startup(); + // Similar functionality to SS13. Should also stagger people going to the chef. + _currentHunger = _random.Next( + (int)_hungerThresholds[HungerThreshold.Peckish] + 10, + (int)_hungerThresholds[HungerThreshold.Okay] - 1); + _currentHungerThreshold = GetHungerThreshold(_currentHunger); + _lastHungerThreshold = HungerThreshold.Okay; // TODO: Potentially change this -> Used Okay because no effects. + HungerThresholdEffect(true); + } + + public HungerThreshold GetHungerThreshold(float food) + { + HungerThreshold result = HungerThreshold.Dead; + var value = HungerThresholds[HungerThreshold.Overfed]; + foreach (var threshold in _hungerThresholds) + { + if (threshold.Value <= value && threshold.Value >= food) + { + result = threshold.Key; + value = threshold.Value; + } + } + + return result; + } + + public void UpdateFood(float amount) + { + _currentHunger = Math.Min(_currentHunger + amount, HungerThresholds[HungerThreshold.Overfed]); + } + + // TODO: If mob is moving increase rate of consumption? + // Should use a multiplier as something like a disease would overwrite decay rate. + public void OnUpdate(float frametime) + { + _currentHunger -= frametime * ActualDecayRate; + var calculatedHungerThreshold = GetHungerThreshold(_currentHunger); + // _trySound(calculatedThreshold); + if (calculatedHungerThreshold != _currentHungerThreshold) + { + _currentHungerThreshold = calculatedHungerThreshold; + HungerThresholdEffect(); + } + if (_currentHungerThreshold == HungerThreshold.Dead) + { + // TODO: Remove from dead people + if (Owner.TryGetComponent(out DamageableComponent damage)) + { + damage.TakeDamage(DamageType.Brute, 2); + return; + } + return; + } + } + } + + public enum HungerThreshold + { + Overfed, + Okay, + Peckish, + Starving, + Dead, + } +} diff --git a/Content.Server/GameObjects/Components/Nutrition/StomachComponent.cs b/Content.Server/GameObjects/Components/Nutrition/StomachComponent.cs new file mode 100644 index 0000000000..2f4e1933fc --- /dev/null +++ b/Content.Server/GameObjects/Components/Nutrition/StomachComponent.cs @@ -0,0 +1,129 @@ +using Content.Server.GameObjects.Components.Chemistry; +using Content.Shared.Chemistry; +using Content.Shared.GameObjects.Components.Nutrition; +using Robust.Shared.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Nutrition +{ + [RegisterComponent] + public class StomachComponent : SharedStomachComponent + { + // Essentially every time it ticks it'll pull out the MetabolisationAmount of reagents and process them. + // Generic food goes under "nutriment" like SS13 + // There's also separate hunger and thirst components which means you can have a stomach + // but not require food / water. + public static readonly int NutrimentFactor = 30; + public static readonly int HydrationFactor = 30; + public static readonly int MetabolisationAmount = 5; + + private SolutionComponent _stomachContents; + public float MetaboliseDelay => _metaboliseDelay; + [ViewVariables] + private float _metaboliseDelay; // How long between metabolisation for 5 units + + public int MaxVolume + { + get => _stomachContents.MaxVolume; + set => _stomachContents.MaxVolume = value; + } + + private float _metabolisationCounter = 0.0f; + + private int _initialMaxVolume; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _metaboliseDelay, "metabolise_delay", 6.0f); + serializer.DataField(ref _initialMaxVolume, "max_volume", 20); + } + + public override void Initialize() + { + base.Initialize(); + // Shouldn't add to Owner to avoid cross-contamination (e.g. with blood or whatever they made hold other solutions) + _stomachContents = new SolutionComponent(); + _stomachContents.InitializeFromPrototype(); + _stomachContents.MaxVolume = _initialMaxVolume; + } + + public bool TryTransferSolution(Solution solution) + { + // TODO: For now no partial transfers. Potentially change by design + if (solution.TotalVolume + _stomachContents.CurrentVolume > _stomachContents.MaxVolume) + { + return false; + } + _stomachContents.TryAddSolution(solution, false, true); + return true; + } + + /// + /// This is where the magic happens. Make people throw up, increase nutrition, whatever + /// + /// + public void React(Solution solution) + { + // TODO: Implement metabolism post from here + // https://github.com/space-wizards/space-station-14/issues/170#issuecomment-481835623 as raised by moneyl + var hungerUpdate = 0; + var thirstUpdate = 0; + foreach (var reagent in solution.Contents) + { + switch (reagent.ReagentId) + { + case "chem.Nutriment": + hungerUpdate++; + break; + case "chem.H2O": + thirstUpdate++; + break; + case "chem.Alcohol": + thirstUpdate++; + break; + default: + continue; + } + } + + // Quantity x restore amount per unit + if (hungerUpdate > 0 && Owner.TryGetComponent(out HungerComponent hungerComponent)) + { + hungerComponent.UpdateFood(hungerUpdate * NutrimentFactor); + } + + if (thirstUpdate > 0 && Owner.TryGetComponent(out ThirstComponent thirstComponent)) + { + thirstComponent.UpdateThirst(thirstUpdate * HydrationFactor); + } + + // TODO: Dispose solution? + } + + public void Metabolise() + { + if (_stomachContents.CurrentVolume == 0) + { + return; + } + + var metabolisation = _stomachContents.SplitSolution(MetabolisationAmount); + + React(metabolisation); + } + + public void OnUpdate(float frameTime) + { + _metabolisationCounter += frameTime; + if (_metabolisationCounter >= MetaboliseDelay) + { + // Going to be rounding issues with frametime but no easy way to avoid it with int reagents. + // It is a long-term mechanic so shouldn't be a big deal. + Metabolise(); + _metabolisationCounter -= MetaboliseDelay; + } + } + } +} diff --git a/Content.Server/GameObjects/Components/Nutrition/ThirstComponent.cs b/Content.Server/GameObjects/Components/Nutrition/ThirstComponent.cs new file mode 100644 index 0000000000..319ac35bd5 --- /dev/null +++ b/Content.Server/GameObjects/Components/Nutrition/ThirstComponent.cs @@ -0,0 +1,180 @@ +using System; +using System.Collections.Generic; +using Content.Server.GameObjects.Components.Mobs; +using Content.Server.GameObjects.Components.Movement; +using Content.Shared.GameObjects; +using Content.Shared.GameObjects.Components.Mobs; +using Content.Shared.GameObjects.Components.Nutrition; +using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.Random; +using Robust.Shared.IoC; +using Robust.Shared.Log; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Nutrition +{ + [RegisterComponent] + public sealed class ThirstComponent : Component + { + #pragma warning disable 649 + [Dependency] private readonly IRobustRandom _random; + #pragma warning restore 649 + + public override string Name => "Thirst"; + + // Base stuff + public float BaseDecayRate => _baseDecayRate; + [ViewVariables] private float _baseDecayRate; + public float ActualDecayRate => _actualDecayRate; + [ViewVariables] private float _actualDecayRate; + + // Thirst + public ThirstThreshold CurrentThirstThreshold => _currentThirstThreshold; + private ThirstThreshold _currentThirstThreshold; + private ThirstThreshold _lastThirstThreshold; + public float CurrentThirst => _currentThirst; + [ViewVariables] private float _currentThirst; + + public Dictionary ThirstThresholds => _thirstThresholds; + private Dictionary _thirstThresholds = new Dictionary + { + {ThirstThreshold.OverHydrated, 400.0f}, + {ThirstThreshold.Okay, 300.0f}, + {ThirstThreshold.Thirsty, 200.0f}, + {ThirstThreshold.Parched, 100.0f}, + {ThirstThreshold.Dead, 0.0f}, + }; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(ref _baseDecayRate, "base_decay_rate", 0.5f); + } + + public void ThirstThresholdEffect(bool force = false) + { + if (_currentThirstThreshold != _lastThirstThreshold || force) { + Logger.InfoS("thirst", $"Updating Thirst state for {Owner.Name}"); + + // Revert slow speed if required + if (_lastThirstThreshold == ThirstThreshold.Parched && _currentThirstThreshold != ThirstThreshold.Dead && + Owner.TryGetComponent(out PlayerInputMoverComponent playerSpeedupComponent)) + { + // TODO shitcode: Come up something better + playerSpeedupComponent.WalkMoveSpeed = playerSpeedupComponent.WalkMoveSpeed * 2; + playerSpeedupComponent.SprintMoveSpeed = playerSpeedupComponent.SprintMoveSpeed * 4; + } + + // Update UI + Owner.TryGetComponent(out ServerStatusEffectsComponent statusEffectsComponent); + statusEffectsComponent?.ChangeStatus(StatusEffect.Thirst, "/Textures/Mob/UI/Thirst/" + + _currentThirstThreshold + ".png"); + + switch (_currentThirstThreshold) + { + case ThirstThreshold.OverHydrated: + _lastThirstThreshold = _currentThirstThreshold; + _actualDecayRate = _baseDecayRate * 1.2f; + return; + + case ThirstThreshold.Okay: + _lastThirstThreshold = _currentThirstThreshold; + _actualDecayRate = _baseDecayRate; + return; + + case ThirstThreshold.Thirsty: + // Same as okay except with UI icon saying drink soon. + _lastThirstThreshold = _currentThirstThreshold; + _actualDecayRate = _baseDecayRate * 0.8f; + return; + + case ThirstThreshold.Parched: + // TODO: If something else bumps this could cause mega-speed. + // If some form of speed update system if multiple things are touching it use that. + if (Owner.TryGetComponent(out PlayerInputMoverComponent playerInputMoverComponent)) { + playerInputMoverComponent.WalkMoveSpeed = playerInputMoverComponent.WalkMoveSpeed / 2; + playerInputMoverComponent.SprintMoveSpeed = playerInputMoverComponent.SprintMoveSpeed / 4; + } + _lastThirstThreshold = _currentThirstThreshold; + _actualDecayRate = _baseDecayRate * 0.6f; + return; + + case ThirstThreshold.Dead: + return; + default: + Logger.ErrorS("thirst", $"No thirst threshold found for {_currentThirstThreshold}"); + throw new ArgumentOutOfRangeException($"No thirst threshold found for {_currentThirstThreshold}"); + } + } + } + + protected override void Startup() + { + base.Startup(); + _currentThirst = _random.Next( + (int)_thirstThresholds[ThirstThreshold.Thirsty] + 10, + (int)_thirstThresholds[ThirstThreshold.Okay] - 1); + _currentThirstThreshold = GetThirstThreshold(_currentThirst); + _lastThirstThreshold = ThirstThreshold.Okay; // TODO: Potentially change this -> Used Okay because no effects. + // TODO: Check all thresholds make sense and throw if they don't. + ThirstThresholdEffect(true); + } + + public ThirstThreshold GetThirstThreshold(float drink) + { + ThirstThreshold result = ThirstThreshold.Dead; + var value = ThirstThresholds[ThirstThreshold.OverHydrated]; + foreach (var threshold in _thirstThresholds) + { + if (threshold.Value <= value && threshold.Value >= drink) + { + result = threshold.Key; + value = threshold.Value; + } + } + + return result; + } + + public void UpdateThirst(float amount) + { + _currentThirst = Math.Min(_currentThirst + amount, ThirstThresholds[ThirstThreshold.OverHydrated]); + } + + // TODO: If mob is moving increase rate of consumption. + // Should use a multiplier as something like a disease would overwrite decay rate. + public void OnUpdate(float frametime) + { + _currentThirst -= frametime * ActualDecayRate; + var calculatedThirstThreshold = GetThirstThreshold(_currentThirst); + // _trySound(calculatedThreshold); + if (calculatedThirstThreshold != _currentThirstThreshold) + { + _currentThirstThreshold = calculatedThirstThreshold; + ThirstThresholdEffect(); + } + + if (_currentThirstThreshold == ThirstThreshold.Dead) + { + // TODO: Remove from dead people + if (Owner.TryGetComponent(out DamageableComponent damage)) + { + damage.TakeDamage(DamageType.Brute, 2); + return; + } + return; + } + } + } + + public enum ThirstThreshold + { + // Hydrohomies + OverHydrated, + Okay, + Thirsty, + Parched, + Dead, + } +} diff --git a/Content.Server/GameObjects/EntitySystems/HungerSystem.cs b/Content.Server/GameObjects/EntitySystems/HungerSystem.cs new file mode 100644 index 0000000000..c1e8b2b348 --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/HungerSystem.cs @@ -0,0 +1,31 @@ +using Content.Server.GameObjects.Components.Nutrition; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class HungerSystem : EntitySystem + { + private float _accumulatedFrameTime; + public override void Initialize() + { + EntityQuery = new TypeEntityQuery(typeof(HungerComponent)); + } + + public override void Update(float frameTime) + { + _accumulatedFrameTime += frameTime; + if (_accumulatedFrameTime > 1.0f) + { + foreach (var entity in RelevantEntities) + { + var comp = entity.GetComponent(); + comp.OnUpdate(_accumulatedFrameTime); + _accumulatedFrameTime = 0.0f; + } + } + } + } +} diff --git a/Content.Server/GameObjects/EntitySystems/StomachSystem.cs b/Content.Server/GameObjects/EntitySystems/StomachSystem.cs new file mode 100644 index 0000000000..164c6b7428 --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/StomachSystem.cs @@ -0,0 +1,32 @@ +using Content.Server.GameObjects.Components.Nutrition; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class StomachSystem : EntitySystem + { + private float _accumulatedFrameTime; + public override void Initialize() + { + EntityQuery = new TypeEntityQuery(typeof(StomachComponent)); + } + + public override void Update(float frameTime) + { + _accumulatedFrameTime += frameTime; + // TODO: Potential performance improvement (e.g. going through say 1/5th the entities every tick) + if (_accumulatedFrameTime > 1.0f) + { + foreach (var entity in RelevantEntities) + { + var comp = entity.GetComponent(); + comp.OnUpdate(_accumulatedFrameTime); + _accumulatedFrameTime = 0.0f; + } + } + } + } +} diff --git a/Content.Server/GameObjects/EntitySystems/ThirstSystem.cs b/Content.Server/GameObjects/EntitySystems/ThirstSystem.cs new file mode 100644 index 0000000000..92b8fde44d --- /dev/null +++ b/Content.Server/GameObjects/EntitySystems/ThirstSystem.cs @@ -0,0 +1,31 @@ +using Content.Server.GameObjects.Components.Nutrition; +using JetBrains.Annotations; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; + +namespace Content.Server.GameObjects.EntitySystems +{ + [UsedImplicitly] + public class ThirstSystem : EntitySystem + { + private float _accumulatedFrameTime; + public override void Initialize() + { + EntityQuery = new TypeEntityQuery(typeof(ThirstComponent)); + } + + public override void Update(float frameTime) + { + _accumulatedFrameTime += frameTime; + if (_accumulatedFrameTime > 1.0f) + { + foreach (var entity in RelevantEntities) + { + var comp = entity.GetComponent(); + comp.OnUpdate(_accumulatedFrameTime); + _accumulatedFrameTime = 0.0f; + } + } + } + } +} diff --git a/Content.Shared/GameObjects/Components/Chemistry/SolutionComponent.cs b/Content.Shared/GameObjects/Components/Chemistry/SolutionComponent.cs index a81bb976ba..f2df59ecd5 100644 --- a/Content.Shared/GameObjects/Components/Chemistry/SolutionComponent.cs +++ b/Content.Shared/GameObjects/Components/Chemistry/SolutionComponent.cs @@ -17,7 +17,7 @@ namespace Content.Shared.GameObjects.Components.Chemistry #pragma warning restore 649 [ViewVariables] - protected Solution _containedSolution; + protected Solution _containedSolution = new Solution(); protected int _maxVolume; private SolutionCaps _capabilities; @@ -68,14 +68,14 @@ namespace Content.Shared.GameObjects.Components.Chemistry /// public sealed override Type StateType => typeof(SolutionComponentState); - + /// public override void ExposeData(ObjectSerializer serializer) { base.ExposeData(serializer); serializer.DataField(ref _maxVolume, "maxVol", 0); - serializer.DataField(ref _containedSolution, "contents", new Solution()); + serializer.DataField(ref _containedSolution, "contents", _containedSolution); serializer.DataField(ref _capabilities, "caps", SolutionCaps.None); } diff --git a/Content.Shared/GameObjects/Components/Mobs/SharedStatusEffectsComponent.cs b/Content.Shared/GameObjects/Components/Mobs/SharedStatusEffectsComponent.cs index ff26d8172e..cf3a245097 100644 --- a/Content.Shared/GameObjects/Components/Mobs/SharedStatusEffectsComponent.cs +++ b/Content.Shared/GameObjects/Components/Mobs/SharedStatusEffectsComponent.cs @@ -32,5 +32,7 @@ namespace Content.Shared.GameObjects.Components.Mobs public enum StatusEffect { Health, + Hunger, + Thirst, } } diff --git a/Content.Shared/GameObjects/Components/Nutrition/SharedDrinkFoodContainerComponent.cs b/Content.Shared/GameObjects/Components/Nutrition/SharedDrinkFoodContainerComponent.cs new file mode 100644 index 0000000000..96fbb796bf --- /dev/null +++ b/Content.Shared/GameObjects/Components/Nutrition/SharedDrinkFoodContainerComponent.cs @@ -0,0 +1,28 @@ +using System; +using Robust.Shared.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Nutrition +{ + public abstract class SharedDrinkFoodContainerComponent : Component + { + } + + [NetSerializable, Serializable] + public enum DrinkFoodContainerVisualMode + { + /// + /// Discrete: 50 eggs in a carton -> down to 25, will show 12/12 until it gets below max + /// Rounded: 50 eggs in a carton -> down to 25, will round it to 6 of 12 + /// + Discrete, + Rounded, + } + + [NetSerializable, Serializable] + public enum DrinkFoodContainerVisuals + { + Capacity, + Current, + } +} diff --git a/Content.Shared/GameObjects/Components/Nutrition/SharedFoodComponent.cs b/Content.Shared/GameObjects/Components/Nutrition/SharedFoodComponent.cs new file mode 100644 index 0000000000..087df8423e --- /dev/null +++ b/Content.Shared/GameObjects/Components/Nutrition/SharedFoodComponent.cs @@ -0,0 +1,16 @@ +using System; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Nutrition +{ + public class SharedFoodComponent + { + // TODO: Remove maybe? Add visualizer for food + [Serializable, NetSerializable] + public enum FoodVisuals + { + Visual, + MaxUses, + } + } +} diff --git a/Content.Shared/GameObjects/Components/Nutrition/SharedStomachComponent.cs b/Content.Shared/GameObjects/Components/Nutrition/SharedStomachComponent.cs new file mode 100644 index 0000000000..4f75f304ae --- /dev/null +++ b/Content.Shared/GameObjects/Components/Nutrition/SharedStomachComponent.cs @@ -0,0 +1,12 @@ +using System; +using Robust.Shared.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components.Nutrition +{ + + public class SharedStomachComponent : Component + { + public override string Name => "Stomach"; + } +} diff --git a/Content.Shared/GameObjects/ContentNetIDs.cs b/Content.Shared/GameObjects/ContentNetIDs.cs index 868560f7d0..c3f0f1e4d3 100644 --- a/Content.Shared/GameObjects/ContentNetIDs.cs +++ b/Content.Shared/GameObjects/ContentNetIDs.cs @@ -30,5 +30,6 @@ public const uint COMBATMODE = 1025; public const uint STATUSEFFECTS = 1026; public const uint OVERLAYEFFECTS = 1027; + public const uint STOMACH = 1028; } } diff --git a/Resources/Audio/items/canopen.ogg b/Resources/Audio/items/canopen.ogg new file mode 100644 index 0000000000000000000000000000000000000000..2cfd7cdfcfb327c581589a4da348b2df7ef794df GIT binary patch literal 8814 zcmaia2Ut_h(*Fq{z1JWSgVa!@R{<%~LJtH8h$6j(UPJ|vCcTC#C@nPUy;*@sZ_+KG zAc!Ces3?N`PvCv;egF6Sp8K6=v)Qw=JF_$Mn>lj`#x5>q015EdbyoRgaFs@_0>TXm z^7gZL^CwP0!n^)j5)3&Wv_p)EJO6bNcM>UkPx&$#jgS7nYk>5GkqAh)a`SOLZ|vs+ z_jI$jIA#ymgG)(BN=ZmbNW+DUv0iRIeop>QUI7RqJ4Wzh=ItC1e9g~EMcd8a-_6?# za_WQ~LPOI60#Jf0Bn{ww;p3_3J|XJp>+CBovZ^(O?I#5Duyd z=%lggHLwmfz(ywcjCVv$S!5@qwam;7(cl$mYZ>G;8x%Mj6pG1-wrLN=v`5>_MceL0 zUxUW{)qaL9?h)Iu>Tn29$g7yOj3_>Ly7;|fF=`^UM#o>~g}*Y`bOJ67;0#8-88H0q1ftskKur?X=L;JEt$`AI=_hOH zuQKazI18GBXp#SZ-8se!s0dGibC!EJrF81GW3z;VY@tPznzSd9zy+~IEAYJWyxkE+ z`n(T?m8|z(K8rKIC)iP$bMM%Lo}--0pf3@FxqXGX<9Yt0dbD}?lTirsJ&KyjNpOyH zEuWsic@13WHkn6JId28-#f;~zR&=m}qd43>!Ilp56MlceqVh`q=rhH4;EuS3dmbHB zw&3WOWB%3%6>;uA;iCrn?b;laP!ItRO(wTzE6kQJmDW zdf&fRQP%_CGGi@*$Dxo2{7FQCPK7(Bs*`gb2T4qh-yotKjEa9c?knFI)0v5Xw6SfN zDKkIVCZxp7q*c)7Xv-ihCOhy|TeR(5;NooP;%w4Yj+p-h*1sYL0D~s#I3{uSiIOk! zBaJkuP8|Gq3o=Ufsibh zxV*~T`|Fj()c+AVuJPqL@#V4cYq7~faanG0c~u?7o`ba;o&RV1SLEpU@qrDD94$Y- ze?-nxNth-WO^u?4yC*uTOn?Rr(Bk-~0|4M@Dy{x;9x+9UO`~L|QDSIwmH!?wAaz>C z@TClB*h~Q61OQ&p$x)2)eyJK>Dpr(|t9+-56v>Nvp;6_G(zJ?n=K@mI1y$P96?wQq51k)ZFUVfx=6pl2iq_enmli#-tuX zEDI`);4fo#Sk5n*)Eg+pLG|McN|_zvYQRkZ1^A&U8c$_|sIdZoJuQkF5sgEQB34sT zgOVR$D5PR}zS*cE<(a5KN%De7Mg$&aHi~!wiyBt{kRLg&E(8GZrx5U?Atd9d1uzN% zOFn#K88Z5;{Q4|fW2{cIEQYh0G9xmwrsn7&7WA|^`W3q&x|QFM#nAAZIhsWa&4zxN zWr%LUj>$O9o1@>bqo-S)Ua^N+W(6)v8)CrQ8IT${n-zL>25X!17b`>7V^(tL*;ZN8 z0JJIE31g1N1UX^$(3Ufy`XJTJaGni~Zbi?3$D*@B-vyv;EuH4~&=~eGo7w1hKSJL@ ziJWJr13~Jw8K-M)fr~fcqO8?6;poi&4v_4jHYZnS=(=@H%N^r@a6VS^xEk39d5(q=UHPlV-)U#2QZ>O!As30$$9*ZkbN+m z3DTVhHziDfnL$Qg(f$WGkzU zm*fl#+)>JGqlX}{nqkEVdAtNT$ZCKn{8+|^9303hH!>ZGtjSDA4d-VNSw$uz^$@M; zNCWUxNMu7a%Gy(MCLiS~3!VyOm5%fjBUsxQv;;C*(;T0wrp3a;y@mh^=f^|!kqs^E z9$u2Gr;%^8}ua5E3tvKeISfT}_ms4?ZFM zQ#!s|fLSM;6i^GNaw;UI5MtP>$D&5{+!+0a6@{rZh7|=X{R}h^2=uTzC4bAPA_CDj zqe#h*XV(`N>$C7cAV4j|z`El&Y{?Dd`XJPF7%Jcr7{vrQn0LrI@zBU|Xep}$<2gJO z^b4NV0kkdDpI$?l(_vIy2oYt16h=fdBK7$3V9`qr1M4}@ahw$lJkUuVv7@!8m5hN0 zm`e#WMHwIkEAN07tqBC7fbSc&cCTrkQ=_bjo{`e$2ch6x)0<-rR<)bpfi{ox2tSZY z0jNPsK)H%8jP}EdA7L_JW`sr23ls7q=`|?Xz+-^Vs$oU2W7Gf%V7*rq33hngB$0qZ zuEW7O1U`UBz@exCK-dSYi0Vxp{Ug!}!JJ6~gb;HkQjwwvr;Q-Map@>f9H>&IA1!FR zJ_{lNXT1prq2VbT#0bKQV6BO)>9g{v<-yO`SIf?VAZ}UB^FV?GkC6@lczucjs3+yp zk`shd3ClPhD-jL{&6p?|!)hNdxt6alF?O#VHh`d^f&1nVp&3-D=8fO1iuROQ;t$F~lie--IDC%6Bo+5cU=|F@BiM-2$M ze|CV{6KV?Jh=R*PM*(q~MwF-{BRyE?_2hsjCO;DugZNk)1-hq56R9Y~526Ht0O12h zG|n2C>yJVS^W(FKsbk6-DF*VU;K$FP+(9Wyl=$W;qNq7_T?Br{IzbE!IV5;%pC}uH z0+;m7*;h-JPNKm0ggR7%0c7m~9^FF>(K2J7*aF%g%n&p739>WRG{BOV4-l?f?;Dd@ z+Vp&4>DbpiV6m-nY;EF;0Sfd*ArUP+myjT;h#29C0^M*j7nS<2IYyX zGtoGP7G)7Qhd2X*Oz3#T500o#3b91i4sGKXUZWgM4xI1~|)plOJNW2hdF zsCbCxI$q3kvX@v3f)FJoW?|lsd?kbDJZ0WJCpB^HM*`ur0N^|4zJZwOhxg@2W$8zy z`Z3y{XF|m*>NGg%a`r)|agumeGnB{2eEURG;{peyWKT8D0x6UhG3i&`5;P3H7Q!h3 z2}U02J8BSCXg??@iVOi1);}GWyi7*6!YoBiOZ_6sf6|Qbmj~e90*?ksE33z0O5S6Vq;^SlS_J*N%<~0MwRxikntar zi5(^7$*T(4@%ZGWSxx_hOnhl3ikVpHPZ5Enw6+Ne@`)m3B&4N3uL=qa@CyrzDajy& zz%OY<*$+$8ot-Vs9i8<}z(VvvD55)uLZT>0!GcXs21x@bbi~lp0!9x6C9I?joL06l z6bW4ms&6kKzx+6I?7;}JR2OT!R8;b)EQxVad{zRC^A&E>oGcuAnQN1V^{re=-G zlNqlVnXmX=wU0C}whF%I7|r*k{&`&8Zmq|_(_4!i@XsU6H^g*ESpN)B-#!vQN{QqL z{v`M_sK&g0!HlD8R;jLJI#1(yq><<=TEKCxm$hHPXJz!!&AaZ)Uo>^NJA=@Mi-!kH z?uPwA`46CSV(f=^1o*5kBqs;O_a0pNy;g4!XUyJ8ze%rOcLn?2Nc^U?ct3Ebp{0#euq_>Z7P%x_Uz@x8%}x$PQq_U=$p5B0CE60bx`hdWg9!1LO1n$ z5Aw4sX1jKDaAHRO)77yZ`(+(ez4J%`_l=9uvht;5tyJ|T=JaVL-L~9M9t%Km#n$qaTqIvk@ z%!Kz*{?knolPmg6vdhqW4i;@{+4{R@7_Y6cM?5ZnP`>I2^w-|=tmaqU)bb>850tw6 z;Z|vEDvZvi3b@372VIih#M_fKO>W0G1$3hXv-Agkipa^fz2Ti%Rk$)rE&kCy7wReI zn~q&=a;Q$fT@K;>*{$~cy54|f|M~9qf~>%g52o2=Fm|;lfR(?cJ+t`>n^!&uK+mMz z9e6stC54d%hQ9dV`OwFOKcq4aEXuM;r1R(L&1x?4+?hnEHa{%75>E$9u$hj6##^~+ zUOmSdlPE6^t7Ez%3yAWA4->XhMG*+^(qQkf%em7>uO1!BtA=I%?tMM2ld#yjtcREN z7X@gYgZ;tchlUZu0{KRG-!LrXQQG|3Zh!ORJMldV@gI+U+e7po58e*5+bBa+YG^yY zI-uFq(`Vw9^MP^6`W#8axfQxTKm;db+LA(kmYZ_#l5&o@-r6Vh=VjHQkTHV!CFI}O zXb^;@d98U@E;Y^PB2{sG8L2Hp%;oKi6%ol5YeRv*67Nh!Z|vd*Su82uoAH;tW80)U zJZE)hPTe}}Nvb(Q;eY{!&D?(3`P_1^ZTrm7VO+bG#a)&JOB0SkXF9`688v|uba}Hw zV{*<=KTXM@Q-)yx(AolE+Y^fNR^kZS`_`MjoY4(DpSw61N;lW;jVHCNWt<*7Ts>_Y z*6mx>zH$>gHTTJ|9=oEc-H$PkitskT^>{UD8!F2k3ON4ozA#pE=kpSftHfW@9!znl z63EabvrsqtP1J{67JW|;>uTM+Q|Ttzpu)j?N!`#B*7kO!0b8tX@D1${+GIR>_xrn9 zKYM6skP-ul^@W5b0aW?(%bg#bj`m|CGGJ|!ruFl!Tb98X4>`&^{mDPt=7Q5I21`;B zS_iK@T3lfF?FqQ%bI?WkBhnOpCpjN}Lyg2j{*16NlKZrg)zVJ^%Yrjz^SPu!ZcGwX zmIHsx88xrOzBNqCFk;e7vhi=pMRs$EtN!tiS|bb@$~|to^R|*Dl12O3GlP(3m*Zuf1H8!P9Z1Puqx?|i}%+HMM*a-fHA z9|((Mr`BzZzX2sb5sE6)y5A-YGXh8M%kMRLH*Phb8lZmLe0I})=ytY${V(!T!3$bB zmxBr&Xjtn-WaMR6og7j0ciLaw=!mNI5@?J2zRLB7&)>2@);XHYI%Aj8p&!dmEbp?qgVLu|a6ci%Zn*Tr^iFEk?d9u;^4aKU|BUJ;r9HD=Q0sumPr(GXi3<+#98t4<} zcKoVV5=gPImR&2NbjWWxbg-!8^I*#eQks5hBzEB;YqY`g58xJ^E1bT<5@<I zpZnmZ?`d^AB*c;bcJ=&5gQ>K9fJXkJy!Fq<&(9Bw6R4@F24{Z5ULbS=Q$FND(=87)n!V~|hm zwF+HLZ}?^=&VG;JIAkh#`Cy+Ni1PZL7x_vmoDRVF_>pkTOeSSEIQ1${ab9_TTJN@a zFt2TZ$nwkcz^xmBYL19?xzYzh@`vPh<`SG=bqI;Tq&~HD zlzX6(d<K>_`Hx$UdVki8ZBM zyYv}YN@sy|+xVp?+}K9lU~?L5#M5i6M~A|8pb~Er?0A8wpzl!1zJk1$HF1#CT6j}a zl6{Jm^O8BiEAzO&xDR>t1N(^iwDh-u4mr4s-Aun&6_e;6#|P) zs3)_&y%#8SOS6-Ub=d?5U5V(8q&B;x&}vgt<|juc@fgF@3~~7R$$wd(MmWhu!6Q59 zOB;OzpY8R$FQdw4XTonAa!qGLt#mp#l3&G%CZ1v_H|4`_H5ul*DqqU7yvAvteQpf~N0arbu$ly*N# zOwS^}(}R~@EE6`ofBVVvGxu-VQ%@fF2=a3A(Z1h!BibbNk_wh{`TeaGE9gL zAug)I5!s~iGDkikPSgq!I%YT{sXjUn%r4H`M)QmPTnksBiSo^9L^ zV4HFNkh*C0beQyT+(zlH*jrz1H;G}TCmkFG->PwA1IpgRyb5g*!tE{fukURquNB&n zh(-CAnKh+{!Fjm3G37UrTV9a?h~};ip(U6&h2zDzXJge>7pvYuG1?5@yk8ZkU({bCs)^Fy)e-+Gd)N6B@LoZA$THe1dyV)os-Z|X+yy{GLPM+9JQ-Og@ z2V*q%vN5A59+uqzL> z1Ln`{a-O#*qhFy7dc(3GR?yqK(jm*$N*o~bkuL$hc zxBX|TcZ2-3muPie^8#i&bX_V3d#xz3qcN3;7)xHEg|%c-|( z-JWLG>Jmu1)N58KfI?D2;Vsb-C1GU41t477hJ7S?EV8e-I`QyE!Ky{KzKd~nm-|d| z$oD{_SnMaFwDcrecD-|-r(ubUkXLh-*79s~94?9|Ys!8=l zPTlssU|F8CC5!wvHHQCrKEh!?%BQ7of|5$Xr{U@QE8Lp2mhbz)-z!ZBNp2Q%5@G_+ zIa5@nbY+sQgv)R$`0zA&hEwuN{S;KdmA2PmxRvaPw>fmtdFf}t*HNSUq_K}3q=ZTA z!~u9<*OT|y5IZybf^SHrX|j~-oxPtE_zf;%4}gZsz!8Jzm9NAfu8d(-KdWb-^))Eq za~BPG>-XZEAyx1<#`B9k^imm1&Vw~>)o;sFD(Q4`sy?qDSPzEP)VgzE!!E>+bMa%X zC84#A?shr*maZBN=$5CXyJ>Zs`@u}%2~>@wu-O-*Xg9flr<)!K4i~zYSD6U5oJHENB|h<>msXy2yj6d% zF3{Grzr+4zo7%OvqWUN`Rn#x^k|C+#;m_!sFT9QCnL~TcYWf7;?Cf|`q};i`S;XI0 zh`spA;Z5UuW^^TI9cHSu==}24A2F7ZE5CRkhrQ-kK9YSO7aE(W+@MZfsu-ps5%O1I zwCwFtepV4oqkfIPK}206`wwZ_y?Dw{l7d+vEatVhEUo?0Vd6kV_BsRjyPToJ{R+{6 zVYLvrdXJokvvb}(8l^w3*b=v!&R3_~(|QiLy@h{xmTW!CSr7Nrwc+Xh9Yve2Q&7H2 zbs-;XsQY-}t$_B6vez>swCRo!t2`zy?@7>|K;GgumIn`?WyW{qjYq)YO{}4Oou_hveMj5sdu2TM9JsWkD%}k>U50`1ywN zd|0lO{v-?Yl^EsPN9h@nzjF%-Ki@u7i!6nh_gRcKROgU*M6;Z`TC&ShPl_E~kLf#~ zQ&th8+Bz(t5ay8my?AmzB|cbBA48?(Vg1dX>E8Q8Ul+x8KIw~@F}tL1lOB|Wr;zXW@-3;BBy7_MmVIjD z$+3PHmYQN6O5NU?{$?zvD{w7_tY0tffL4gv?tD+23Bi88DZ4c7_kL=hUy)#|WW%d? zX|t366Cj(n1@R1C#6Nj}c^hb89br0Ej!$NSfGWLRj)6-IQetNl>te~&8zqXWm|ZZ} z4FFe52WP_R)+fIN+EcaVx2`~4@Eu_e(&7Yn2XXl$8v81rsQU3U9y)`CyoLo@bgwko zC@)^L2w*iB@LYe^6E%40oMy%YxgQpOJhxJJUCWoLrBd&l*OPdJCs(PG7+R3fe!8Ky zSSXM2mLGSY>lbp?)S}X;ei7oWM})rmp8~a{TKI@tbQ;sda1CM%p{2M zg!Jx)TS=NnR_oXX)IIfEqPV#tu2RsHc_|mdWzWFI%Tkrioe|7qp1-FbYIydh+R?BQ zXP8rcqw*T6204pOr~#v#F?Z#VAnt+|$8>r3YPtK(8hF;<@Kz-@%Q1GDM+@xe zA8Xuu3bzo~f4~hd*GHA2+D(~?9aB0kJzV4Tw#vy(I5M)(XPig&q*8JRHBNb&3f!td zC!EV+9E G|Nj6(dOR8c literal 0 HcmV?d00001 diff --git a/Resources/Audio/items/drink.ogg b/Resources/Audio/items/drink.ogg new file mode 100644 index 0000000000000000000000000000000000000000..ece220cd7196d856e3620d60444b1eafb36462b8 GIT binary patch literal 19843 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 Dhm1-R literal 0 HcmV?d00001 diff --git a/Resources/Prototypes/Entities/buildings/chem_dispenser.yml b/Resources/Prototypes/Entities/buildings/chem_dispenser.yml index 934024b0c5..da79842a68 100644 --- a/Resources/Prototypes/Entities/buildings/chem_dispenser.yml +++ b/Resources/Prototypes/Entities/buildings/chem_dispenser.yml @@ -24,6 +24,7 @@ - chem.C - chem.Cu - chem.N + - chem.Nutriment - chem.Fe - chem.F - chem.Al diff --git a/Resources/Prototypes/Entities/items/Consumables/drinks.yml b/Resources/Prototypes/Entities/items/Consumables/drinks.yml new file mode 100644 index 0000000000..cbae0e107f --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/drinks.yml @@ -0,0 +1,2670 @@ +# TODO: Find remaining cans and move to drinks_cans +# TODO: Find empty containers (e.g. mug, pitcher) and move to their own yml +# TODO: Move bottles to their own yml +- type: entity + parent: BaseItem + id: DrinkBase + abstract: true + components: + - type: Drink + despawn_empty: true + - type: Sound + - type: Sprite + state: icon + netsync: false + - type: Icon + state: icon + +# Drinks below here +- type: entity + parent: DrinkBase + id: DrinkAbsintheglass + name: Absinthe glass + description: A anise-flavoured spirit derived from botanicals. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/absintheglass.rsi + - type: Icon + sprite: Objects/Drinks/absintheglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkAcidspitGlass + name: Acidspit glass + description: A drink for the daring, can be deadly if incorrectly prepared! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/acidspitglass.rsi + - type: Icon + sprite: Objects/Drinks/acidspitglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkAlco-blue + name: Miss Blue Curacao + description: A fruity, exceptionally azure drink. Does not allow the imbiber to use the fifth magic. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + spawn_on_finish: TrashAlcoClear + - type: Sprite + sprite: Objects/Drinks/alco-blue.rsi + - type: Icon + sprite: Objects/Drinks/alco-blue.rsi + +#- type: entity +# parent: DrinkBase +# id: DrinkAlco-red +# name: Alco-red +# description: '' +# components: +# - type: Drink# +# contents: +# - water: 1 +# spawn_on_finish: TrashAlcoClear +# - type: Sprite +# sprite: Objects/Drinks/alco-red.rsi +# - type: Icon +# sprite: Objects/Drinks/alco-red.rsi +# +#- type: entity +# parent: DrinkBase +# id: DrinkAlco-white +# name: Alco-white +# description: '' +# components: +# - type: Drink# +# contents: +# - water: 1 +# - type: Sprite +# sprite: Objects/Drinks/alco-white.rsi +# - type: Icon +# sprite: Objects/Drinks/alco-white.rsi + +- type: entity + parent: DrinkBase + id: DrinkAleglass + name: Ale + description: A dark alchoholic beverage made by malted barley and yeast. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/aleglass.rsi + - type: Icon + sprite: Objects/Drinks/aleglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkAlliescocktail + name: Allies cocktail + description: A drink made from your allies, not as sweet as when made from your enemies. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/alliescocktail.rsi + - type: Icon + sprite: Objects/Drinks/alliescocktail.rsi + +- type: entity + parent: DrinkBase + id: DrinkAloe + name: Aloe + description: So very, very, very good. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/aloe.rsi + - type: Icon + sprite: Objects/Drinks/aloe.rsi + +- type: entity + parent: DrinkBase + id: DrinkAmasecglass + name: Amasec glass + description: Official drink of the Gun Club! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/amasecglass.rsi + - type: Icon + sprite: Objects/Drinks/amasecglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkAndalusia + name: Andalusia + description: A nice, strangely named drink. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/andalusia.rsi + - type: Icon + sprite: Objects/Drinks/andalusia.rsi + +- type: entity + parent: DrinkBase + id: DrinkAntifreeze + name: Anti-freeze + description: Ultimate refreshment. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/antifreeze.rsi + - type: Icon + sprite: Objects/Drinks/antifreeze.rsi + +- type: entity + parent: DrinkBase + id: DrinkAtomicbombglass + name: Atomic bomb glass + description: Nuclear proliferation never tasted so good. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/atomicbombglass.rsi + - type: Icon + sprite: Objects/Drinks/atomicbombglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkBarefootAndPregnant + name: Barefoot + description: Barefoot and pregnant + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/b&p.rsi + - type: Icon + sprite: Objects/Drinks/b&p.rsi + +- type: entity + parent: DrinkBase + id: DrinkB52Glass + name: B-52 glass + description: Coffee, Irish Cream, and cognac. You will get bombed. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/b52glass.rsi + - type: Icon + sprite: Objects/Drinks/b52glass.rsi + +- type: entity + parent: DrinkBase + id: DrinkBahamaMama + name: Bahama mama + description: Tropical cocktail. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/bahama_mama.rsi + - type: Icon + sprite: Objects/Drinks/bahama_mama.rsi + +- type: entity + parent: DrinkBase + id: DrinkBananaJuice + name: Banana juice + description: The raw essence of a banana. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/banana.rsi + - type: Icon + sprite: Objects/Drinks/banana.rsi + +- type: entity + parent: DrinkBase + id: DrinkBananahonkglass + name: Bananahonk glass + description: A drink from Clown Heaven. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/bananahonkglass.rsi + - type: Icon + sprite: Objects/Drinks/bananahonkglass.rsi + +#- type: entity +# parent: DrinkBase +# id: DrinkBarflask +# name: Barflask +# description: '' +# components: +# - type: Drink# +# contents: +# - water: 1 +# - type: Sprite +# sprite: Objects/Drinks/barflask.rsi +# - type: Icon +# sprite: Objects/Drinks/barflask.rsi + +- type: entity + parent: DrinkBase + id: DrinkBeepskySmashGlass + name: Beepsky smash glass + description: Deny drinking this and prepare for THE LAW. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/beepskysmashglass.rsi + - type: Icon + sprite: Objects/Drinks/beepskysmashglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkBeer + name: Beer # Beer it is. Coffee. Beer? COFF-EE? BE-ER? C-O... B-E + description: An alcoholic beverage made from malted grains, hops, yeast, and water. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/beer.rsi + - type: Icon + sprite: Objects/Drinks/beer.rsi + +- type: entity + parent: DrinkBase + id: DrinkBeerglass + name: Beer glass + description: An alcoholic beverage made from malted grains, hops, yeast, and water. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/beerglass.rsi + - type: Icon + sprite: Objects/Drinks/beerglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkBerryjJice + name: Berry juice + description: A delicious blend of several different kinds of berries. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/berryjuice.rsi + - type: Icon + sprite: Objects/Drinks/berryjuice.rsi + +#- type: entity +# parent: DrinkBase +# id: DrinkBigteacup +# name: Bigteacup +# description: '' +# components: +# - type: Drink# +# contents: +# - water: 1 +# - type: Sprite +# sprite: Objects/Drinks/bigteacup.rsi +# - type: Icon +# sprite: Objects/Drinks/bigteacup.rsi + +- type: entity + parent: DrinkBase + id: DrinkBlackRussianGlass + name: Black russian glass + description: For the lactose-intolerant. Still as classy as a White Russian. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/blackrussianglass.rsi + - type: Icon + sprite: Objects/Drinks/blackrussianglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkBloodyMaryGlass + name: Bloody mary glass + description: A strange yet pleasurable mixture made of vodka, tomato and lime juice. Tastes like liquid murder + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/bloodymaryglass.rsi + - type: Icon + sprite: Objects/Drinks/bloodymaryglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkBooger + name: Booger + description: Ewww... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/booger.rsi + - type: Icon + sprite: Objects/Drinks/booger.rsi + +- type: entity + parent: DrinkBase + id: DrinkBraveBullGlass + name: Brave bull glass + description: It's just as effective as Dutch-Courage! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/bravebullglass.rsi + - type: Icon + sprite: Objects/Drinks/bravebullglass.rsi + +#- type: entity +# parent: DrinkBase +# id: DrinkBritMug +# name: Flat mug +# description: A mug with an unknown flag emblazoned on it. You feel like tea might be the only beverage that belongs in it. +# components: +# - type: Drink# +# contents: +# - water: 1 +# - type: Sprite +# sprite: Objects/Drinks/britmug.rsi +# - type: Icon +# sprite: Objects/Drinks/britmug.rsi + +- type: entity + parent: DrinkBase + id: DrinkBrownStar + name: Brown star + description: It's not what it sounds like... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/brownstar.rsi + - type: Icon + sprite: Objects/Drinks/brownstar.rsi + +- type: entity + parent: DrinkBase + id: DrinkCafeLatte + name: Cafe latte + description: A nice, strong and tasty beverage while you are reading. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/cafe_latte.rsi + - type: Icon + sprite: Objects/Drinks/cafe_latte.rsi + +- type: entity + parent: DrinkBase + id: DrinkCarafe + name: Pitcher + description: A handled glass pitcher. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/carafe.rsi + state: icon-10 + - type: Icon + sprite: Objects/Drinks/carafe.rsi + state: icon-10 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 11 + +- type: entity + parent: DrinkBase + id: DrinkCarrotJuice + name: Carrot juice + description: Has a uniquely sweet flavour of concentrated carrots. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/carrotjuice.rsi + - type: Icon + sprite: Objects/Drinks/carrotjuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkChangelingSting + name: Changeling sting + description: You take a tiny sip and feel a burning sensation... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/changelingsting.rsi + - type: Icon + sprite: Objects/Drinks/changelingsting.rsi + +- type: entity + parent: DrinkBase + id: DrinkChocolateGlass + name: Hot chocolate + description: A heated drink consisting melted chocolate and heated milk. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/chocolateglass.rsi + - type: Icon + sprite: Objects/Drinks/chocolateglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkCoffee + name: Coffee + description: Coffee is a brewed drink prepared from roasted seeds, commonly called coffee beans, of the coffee plant. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/coffee.rsi + - type: Icon + sprite: Objects/Drinks/coffee.rsi + +- type: entity + parent: DrinkBase + id: DrinkCognacGlass + name: Cognac glass + description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. Classy as fornication. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/cognacglass.rsi + - type: Icon + sprite: Objects/Drinks/cognacglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkColaBottle + name: Space cola bottle + description: Cola. in space + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/colabottle.rsi + - type: Icon + sprite: Objects/Drinks/colabottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkCream + name: Cream + description: Dairy product composed of the higher-fat layer skimmed from the top of milk before homogenization. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/cream.rsi + - type: Icon + sprite: Objects/Drinks/cream.rsi + +- type: entity + parent: DrinkBase + id: DrinkCubaLibreGlass + name: Cuba libre glass + description: Rum, mixed with cola. Viva la revolucion. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/cubalibreglass.rsi + - type: Icon + sprite: Objects/Drinks/cubalibreglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkCuracaoGlass + name: Blue curacao + description: Exotically blue, fruity drink, distilled from oranges. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/curacaoglass.rsi + - type: Icon + sprite: Objects/Drinks/curacaoglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkDemonsBlood + name: Demons blood + description: AHHHH!!!! # AAHHHHHH + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/demonsblood.rsi + - type: Icon + sprite: Objects/Drinks/demonsblood.rsi + +- type: entity + parent: DrinkBase + id: DrinkDetFlask + name: Inspector's flask + description: A metal flask with a leather band and golden badge belonging to the inspector. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/detflask.rsi + - type: Icon + sprite: Objects/Drinks/detflask.rsi + +- type: entity + parent: DrinkBase + id: DrinkDevilsKiss + name: Devil's kiss + description: Creepy time! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/devilskiss.rsi + - type: Icon + sprite: Objects/Drinks/devilskiss.rsi + +- type: entity + parent: DrinkBase + id: DrinkDoctorsDelightGlass + name: The Doctor's delight + description: A gulp a day keeps the MediBot away. That's probably for the best. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/doctorsdelightglass.rsi + - type: Icon + sprite: Objects/Drinks/doctorsdelightglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkDriestMartiniGlass + name: Driest martini glass + description: Only for the experienced. You think you see sand floating in the glass. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/driestmartiniglass.rsi + - type: Icon + sprite: Objects/Drinks/driestmartiniglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkDrGibb + name: Dr. Gibb + description: A delicious blend of 42 different flavours + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/dr_gibb.rsi + - type: Icon + sprite: Objects/Drinks/dr_gibb.rsi + +- type: entity + parent: DrinkBase + id: DrinkDrGibbGlass + name: Dr. Gibb Glass + description: A delicious blend of 42 different flavours + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/dr_gibb_glass.rsi + - type: Icon + sprite: Objects/Drinks/dr_gibb_glass.rsi + +- type: entity + parent: DrinkBase + id: DrinkEmeraldGlass + name: Melon liquor + description: A relatively sweet and fruity 46 proof liquor. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/emeraldglass.rsi + - type: Icon + sprite: Objects/Drinks/emeraldglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkEnergyDrink + name: Energy drink + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/energy_drink.rsi + - type: Icon + sprite: Objects/Drinks/energy_drink.rsi + +- type: entity + parent: DrinkBase + id: DrinkErikaSurprise + name: Erika surprise + description: The surprise is, it's green! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/erikasurprise.rsi + - type: Icon + sprite: Objects/Drinks/erikasurprise.rsi + +- type: entity + parent: DrinkBase + id: DrinkFlask + name: Captain's flask + description: A metal flask belonging to the captain + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/flask.rsi + - type: Icon + sprite: Objects/Drinks/flask.rsi + +- type: entity + parent: DrinkBase + id: DrinkFlaskOld + name: Flask + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/flask_old.rsi + - type: Icon + sprite: Objects/Drinks/flask_old.rsi + +- type: entity + parent: DrinkBase + id: DrinkGargleBlasterGlass + name: Pan-galactic gargle blaster + description: Whoah, this stuff looks volatile! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/gargleblasterglass.rsi + - type: Icon + sprite: Objects/Drinks/gargleblasterglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGinFizzGlass + name: Gin fizz glass + description: Refreshingly lemony, deliciously dry. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/ginfizzglass.rsi + - type: Icon + sprite: Objects/Drinks/ginfizzglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGinTonicglass + name: Gin and tonic + description: An all time classic, mild cocktail. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/gintonicglass.rsi + - type: Icon + sprite: Objects/Drinks/gintonicglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGinVodkaGlass + name: Goldschlager + description: 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/ginvodkaglass.rsi + - type: Icon + sprite: Objects/Drinks/ginvodkaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassBrown + name: Bilk + description: This appears to be beer mixed with milk. Disgusting. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_brown.rsi + - type: Icon + sprite: Objects/Drinks/glass_brown.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassBrown2 + name: Hooch + description: Either someone's failure at cocktail making or attempt in alchohol production. In any case, do you really want to drink that? + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_brown2.rsi + - type: Icon + sprite: Objects/Drinks/glass_brown2.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassClear + name: Moonshine + description: You've really hit rock bottom now... your liver packed its bags and left last night. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_clear.rsi + - type: Icon + sprite: Objects/Drinks/glass_clear.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassGreen + name: Lime juice + description: The sweet-sour juice of limes. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_green.rsi + - type: Icon + sprite: Objects/Drinks/glass_green.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassOrange + name: Orange juice + description: Liquid extract of the orange tree fruit, produced by squeezing or reaming oranges. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_orange.rsi + - type: Icon + sprite: Objects/Drinks/glass_orange.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassRed + name: Tomato juice + description: Juice made from tomatoes, usually used as a beverage, either plain or in cocktails + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_red.rsi + - type: Icon + sprite: Objects/Drinks/glass_red.rsi + +- type: entity + parent: DrinkBase + id: DrinkGlassWhite + name: Milk + description: An opaque white liquid produced by the mammary glands of mammals. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_white.rsi + - type: Icon + sprite: Objects/Drinks/glass_white.rsi + +# Made this up +- type: entity + parent: DrinkBase + id: DrinkGlassYellow + name: Lemon juice + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/glass_yellow.rsi + - type: Icon + sprite: Objects/Drinks/glass_yellow.rsi + +- type: entity + parent: DrinkBase + id: DrinkGoldschlagerGlass + name: Goldschlager glass + description: 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/goldschlagerglass.rsi + - type: Icon + sprite: Objects/Drinks/goldschlagerglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGrapeJuice + name: Grape juice + description: The juice is often sold in stores or fermented and made into wine, brandy, or vinegar. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/grapejuice.rsi + - type: Icon + sprite: Objects/Drinks/grapejuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkGrapeSoda + name: Grape soda + description: Sweetened drink with a grape flavor and a deep purple color. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/grapesoda.rsi + - type: Icon + sprite: Objects/Drinks/grapesoda.rsi + +- type: entity + parent: DrinkBase + id: DrinkGrenadinebottle + name: Briar rose grenadine syrup bottle + description: Sweet and tangy, a bar syrup used to add color or flavor to drinks. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/grenadinebottle.rsi + - type: Icon + sprite: Objects/Drinks/grenadinebottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkGrenadineGlass + name: Grenadine syrup glass + description: Made in the modern day with proper pomegranate substitute. Who uses real fruit, anyways? + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/grenadineglass.rsi + - type: Icon + sprite: Objects/Drinks/grenadineglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGrogGlass + name: Grog glass + description: Watered-down rum, pirate approved! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/grogglass.rsi + - type: Icon + sprite: Objects/Drinks/grogglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkGrapeSodaGlass + name: Grape soda glass + description: Sweetened drink with a grape flavor and a deep purple color. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/gsodaglass.rsi + - type: Icon + sprite: Objects/Drinks/gsodaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkHell + name: Hell ramen + description: The noodles are boiled, the flavors are artificial, just like being back in school. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/hell.rsi + - type: Icon + sprite: Objects/Drinks/hell.rsi + +- type: entity + parent: DrinkBase + id: DrinkHippiesdelightglass + name: Hippies' delight glass + description: You just don't get it maaaan. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/hippiesdelightglass.rsi + - type: Icon + sprite: Objects/Drinks/hippiesdelightglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkHotCoco + name: Hot chocolate + description: A heated drink consisting melted chocolate and heated milk. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/hot_coco.rsi + - type: Icon + sprite: Objects/Drinks/hot_coco.rsi + +- type: entity + parent: DrinkBase + id: DrinkHotCoffee + name: Coffee + description: Coffee is a brewed drink prepared from roasted seeds, commonly called coffee beans, of the coffee plant. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/hot_coffee.rsi + - type: Icon + sprite: Objects/Drinks/hot_coffee.rsi + +- type: entity + parent: DrinkBase + id: DrinkIcedCoffeeGlass + name: Iced coffee glass + description: Coffee and ice, refreshing and cool. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/icedcoffeeglass.rsi + - type: Icon + sprite: Objects/Drinks/icedcoffeeglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkIcedteaglass + name: Long island iced tea + description: The liquor cabinet, brought together in a delicious mix. Intended for middle-aged alcoholic women only. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/icedteaglass.rsi + - type: Icon + sprite: Objects/Drinks/icedteaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkIcedBeerglass + name: Iced beer glass + description: A beer which is so cold the air around it freezes. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/iced_beerglass.rsi + - type: Icon + sprite: Objects/Drinks/iced_beerglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkIceGlass + name: Ice glass + description: Water frozen into a solid state. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 1 + - type: Sprite + sprite: Objects/Drinks/iceglass.rsi + - type: Icon + sprite: Objects/Drinks/iceglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkIrishcarbomb + name: Irish car bomb + description: Mmm, tastes like chocolate cake... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/irishcarbomb.rsi + - type: Icon + sprite: Objects/Drinks/irishcarbomb.rsi + +- type: entity + parent: DrinkBase + id: DrinkIrishCoffeeGlass + name: Irish coffee glass + description: Coffee, and alcohol. More fun than a Mimosa to drink in the morning. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/irishcoffeeglass.rsi + - type: Icon + sprite: Objects/Drinks/irishcoffeeglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkIrishCreamGlass + name: Irish cream glass + description: Whiskey-imbued cream, what else would you expect from the Irish. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/irishcreamglass.rsi + - type: Icon + sprite: Objects/Drinks/irishcreamglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkJar + name: Jar + description: The hipster's cup + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/jar.rsi + - type: Icon + sprite: Objects/Drinks/jar.rsi + +- type: entity + parent: DrinkBase + id: DrinkJarMetroid + name: Jar metroid + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/jar_metroid.rsi + - type: Icon + sprite: Objects/Drinks/jar_metroid.rsi + +- type: entity + parent: DrinkBase + id: DrinkJarWhat + name: Jar of something + description: You can't really tell what this is. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/jar_what.rsi + - type: Icon + sprite: Objects/Drinks/jar_what.rsi + +- type: entity + parent: DrinkBase + id: DrinkKahluaGlass + name: Kahlua glass + description: A widely known, Mexican coffee-flavoured liqueur. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/kahluaglass.rsi + - type: Icon + sprite: Objects/Drinks/kahluaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkKiraSpecial + name: Kira special + description: Long live the guy who everyone had mistaken for a girl. Baka! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/kiraspecial.rsi + - type: Icon + sprite: Objects/Drinks/kiraspecial.rsi + +- type: entity + parent: DrinkBase + id: DrinkLemonade + name: Lemonade + description: Drink using lemon juice, water, and a sweetener such as cane sugar or honey. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lemonade.rsi + - type: Icon + sprite: Objects/Drinks/lemonade.rsi + +- type: entity + parent: DrinkBase + id: DrinkLemonadeGlass + name: Lemonade glass + description: Drink using lemon juice, water, and a sweetener such as cane sugar or honey. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lemonadeglass.rsi + - type: Icon + sprite: Objects/Drinks/lemonadeglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkLemonGlass + name: Lemon glass + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lemonglass.rsi + - type: Icon + sprite: Objects/Drinks/lemonglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkLemonJuice + name: Lemon juice + description: Used to make lemonade, soft drinks, and cocktails. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lemonjuice.rsi + - type: Icon + sprite: Objects/Drinks/lemonjuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkLemonLime + name: Lemon lime + description: A tangy substance made of lime and lemon. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lemonlime.rsi + - type: Icon + sprite: Objects/Drinks/lemonlime.rsi + +- type: entity + parent: DrinkBase + id: DrinkLimeJuice + name: Lime juice + description: The sweet-sour juice of limes. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/limejuice.rsi + - type: Icon + sprite: Objects/Drinks/limejuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkLithiumFlask + name: Lithium flask + description: A flask with a Lithium Atom symbol on it. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lithiumflask.rsi + - type: Icon + sprite: Objects/Drinks/lithiumflask.rsi + +- type: entity + parent: DrinkBase + id: DrinkLongIslandIcedTeaGlass + name: Long island iced tea glass + description: The liquor cabinet, brought together in a delicious mix. Intended for middle-aged alcoholic women only. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/longislandicedteaglass.rsi + - type: Icon + sprite: Objects/Drinks/longislandicedteaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkManhattanGlass + name: Manhattan glass + description: The Detective's undercover drink of choice. He never could stomach gin... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/manhattanglass.rsi + - type: Icon + sprite: Objects/Drinks/manhattanglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkManlyDorfGlass + name: The manly dorf glass + description: Beer and Ale, brought together in a delicious mix. Intended for true men only. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/manlydorfglass.rsi + - type: Icon + sprite: Objects/Drinks/manlydorfglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkMargaritaGlass + name: Margarita glass + description: On the rocks with salt on the rim. Arriba~! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/margaritaglass.rsi + - type: Icon + sprite: Objects/Drinks/margaritaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkMartiniGlass + name: Vodka martini glass + description: Vodka with Gin. Not quite how 007 enjoyed it, but still delicious. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/martiniglass.rsi + - type: Icon + sprite: Objects/Drinks/martiniglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkMeadGlass + name: Mead glass + description: A Viking's drink, though a cheap one. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/meadglass.rsi + - type: Icon + sprite: Objects/Drinks/meadglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkMilkJug + name: Milk jug + description: An opaque white liquid produced by the mammary glands of mammals. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/milk.rsi + - type: Icon + sprite: Objects/Drinks/milk.rsi + +- type: entity + parent: DrinkBase + id: DrinkMilkshake + name: Milkshake + description: Sweet, cold beverage that is usually made from milk + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/milkshake.rsi + - type: Icon + sprite: Objects/Drinks/milkshake.rsi + +- type: entity + parent: DrinkBase + id: DrinkMojito + name: Mojito + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/mojito.rsi + - type: Icon + sprite: Objects/Drinks/mojito.rsi + +- type: entity + parent: DrinkBase + id: DrinkNeurotoxinGlass + name: Neurotoxin glass + description: A strong neurotoxin that puts the subject into a death-like state. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/neurotoxinglass.rsi + - type: Icon + sprite: Objects/Drinks/neurotoxinglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkNothing + name: Nothing + description: Absolutely nothing. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/nothing.rsi + - type: Icon + sprite: Objects/Drinks/nothing.rsi + +- type: entity + parent: DrinkBase + id: DrinkNtcahors + name: NeoTheology cahors whine + description: Fortified dessert wine made from cabernet sauvignon, saperavi and other grapes. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/ntcahors.rsi + - type: Icon + sprite: Objects/Drinks/ntcahors.rsi + +- type: entity + parent: DrinkBase + id: DrinkNukaColaGlass + name: Nuka Cola glass + description: Cola, cola never changes. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/nuka_colaglass.rsi + - type: Icon + sprite: Objects/Drinks/nuka_colaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkOrangeJuice + name: Orange juice + description: Liquid extract of the orange tree fruit, produced by squeezing or reaming oranges. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/orangejuice.rsi + - type: Icon + sprite: Objects/Drinks/orangejuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkPatronGlass + name: Patron glass + description: Tequila with silver in it, a favorite of alcoholic women in the club scene. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/patronglass.rsi + - type: Icon + sprite: Objects/Drinks/patronglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkPoisonBerryJuice + name: Poison berry juice + description: A tasty juice blended from various kinds of very deadly and toxic berries. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/poisonberryjuice.rsi + - type: Icon + sprite: Objects/Drinks/poisonberryjuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkProjectManhattanGlass + name: Manhattan project glass + description: A scientist's drink of choice, for pondering ways to blow up the station. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/proj_manhattanglass.rsi + - type: Icon + sprite: Objects/Drinks/proj_manhattanglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkPoisonWineGlass + name: Poison wine glass + description: Is this even wine? Toxic! Hallucinogenic! Probably consumed in boatloads by your superiors! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/pwineglass.rsi + - type: Icon + sprite: Objects/Drinks/pwineglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkRag + name: Rag + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/rag.rsi + - type: Icon + sprite: Objects/Drinks/rag.rsi + +- type: entity + parent: DrinkBase + id: DrinkRagLit + name: Rag lit + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/rag_lit.rsi + - type: Icon + sprite: Objects/Drinks/rag_lit.rsi + +- type: entity + parent: DrinkBase + id: DrinkRagSmall + name: Rag small + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/rag_small.rsi + - type: Icon + sprite: Objects/Drinks/rag_small.rsi + +- type: entity + parent: DrinkBase + id: DrinkRagSmallLit + name: Rag small lit + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/rag_small_lit.rsi + - type: Icon + sprite: Objects/Drinks/rag_small_lit.rsi + +- type: entity + parent: DrinkBase + id: DrinkRamen + name: Cup ramen + description: Just add 10ml water, self heats! A taste that reminds you of your school years. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/ramen.rsi + - type: Icon + sprite: Objects/Drinks/ramen.rsi + +- type: entity + parent: DrinkBase + id: DrinkRedMeadGlass + name: Red mead glass + description: The true Viking's drink! Even though it has a strange red color. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/red_meadglass.rsi + - type: Icon + sprite: Objects/Drinks/red_meadglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkRewriter + name: Rewriter + description: The secret of the sanctuary of the Libarian... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/rewriter.rsi + - type: Icon + sprite: Objects/Drinks/rewriter.rsi + +- type: entity + parent: DrinkBase + id: DrinkRumGlass + name: Deadrum glass + description: Distilled alcoholic drink made from saltwater. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/rumglass.rsi + - type: Icon + sprite: Objects/Drinks/rumglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkSbitenGlass + name: Sbiten glass + description: A spicy Vodka! Might be a little hot for the little guys! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/sbitenglass.rsi + - type: Icon + sprite: Objects/Drinks/sbitenglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkScrewdriverGlass + name: Screwdriver glass + description: Vodka, mixed with plain ol' orange juice. The result is surprisingly delicious. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/screwdriverglass.rsi + - type: Icon + sprite: Objects/Drinks/screwdriverglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkSuiDreamGlass + name: Sui dream glass + description: 'Comprised of: White soda, blue curacao, melon liquor.' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/sdreamglass.rsi + - type: Icon + sprite: Objects/Drinks/sdreamglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkShakeBlue + name: Blue milkshake + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shake-blue.rsi + - type: Icon + sprite: Objects/Drinks/shake-blue.rsi + +# TODO: MOVE +- type: entity + parent: DrinkBase + id: DrinkShakeEmpty + name: ShakeEmpty + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shake-empty.rsi + - type: Icon + sprite: Objects/Drinks/shake-empty.rsi + +- type: entity + parent: DrinkBase + id: DrinkShakeMeat + name: Meat shake + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shake-meat.rsi + - type: Icon + sprite: Objects/Drinks/shake-meat.rsi + +- type: entity + parent: DrinkBase + id: DrinkShakeRobo + name: Robo shake + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shake-robo.rsi + - type: Icon + sprite: Objects/Drinks/shake-robo.rsi + +- type: entity + parent: DrinkBase + id: DrinkShakeWhite + name: White shake + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shake-white.rsi + - type: Icon + sprite: Objects/Drinks/shake-white.rsi + +# TODO: Move to containers +- type: entity + parent: DrinkBase + id: DrinkShaker + name: Shaker + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shaker.rsi + - type: Icon + sprite: Objects/Drinks/shaker.rsi + +- type: entity + parent: DrinkBase + id: DrinkShinyFlask + name: Shiny flask + description: A shiny metal flask. It appears to have a Greek symbol inscribed on it. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shinyflask.rsi + - type: Icon + sprite: Objects/Drinks/shinyflask.rsi + +- type: entity + parent: DrinkBase + id: DrinkShotGlass + name: Shot glass + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/shotglass.rsi + - type: Icon + sprite: Objects/Drinks/shotglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkSilencerGlass + name: Silencer glass + description: A drink from Mime Heaven. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/silencerglass.rsi + - type: Icon + sprite: Objects/Drinks/silencerglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkSingulo + name: Singulo + description: A blue-space beverage! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/singulo.rsi + - type: Icon + sprite: Objects/Drinks/singulo.rsi + +- type: entity + parent: DrinkBase + id: DrinkSnowwhite + name: Snow White + description: A cold refreshment + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/snowwhite.rsi + - type: Icon + sprite: Objects/Drinks/snowwhite.rsi + +- type: entity + parent: DrinkBase + id: DrinkSodaWater + name: Soda water + description: Water containing dissolved carbon dioxide gas. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/sodawater.rsi + - type: Icon + sprite: Objects/Drinks/sodawater.rsi + +- type: entity + parent: DrinkBase + id: DrinkSoyMilk + name: Soy milk + description: An opaque white liquid made from soybeans. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/soymilk.rsi + - type: Icon + sprite: Objects/Drinks/soymilk.rsi + +- type: entity + parent: DrinkBase + id: DrinkSoyLatte + name: Soy latte + description: A coffee drink made with espresso and steamed soy milk. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/soy_latte.rsi + - type: Icon + sprite: Objects/Drinks/soy_latte.rsi + +- type: entity + parent: DrinkBase + id: DrinkSpaceUpBottle + name: Space-up bottle + description: Tastes like a hull breach in your mouth. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/space-up_bottle.rsi + - type: Icon + sprite: Objects/Drinks/space-up_bottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkSpace-upGlass + name: Space-up Glass + description: Tastes like a hull breach in your mouth. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/space-up_glass.rsi + - type: Icon + sprite: Objects/Drinks/space-up_glass.rsi + +- type: entity + parent: DrinkBase + id: DrinkSpaceMountainWindBottle + name: Space Mountain Wind Bottle + description: Blows right through you like a space wind. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/space_mountain_wind_bottle.rsi + - type: Icon + sprite: Objects/Drinks/space_mountain_wind_bottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkSpaceMountainWindGlass + name: Space Mountain Wind Glass + description: Blows right through you like a space wind. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/space_mountain_wind_glass.rsi + - type: Icon + sprite: Objects/Drinks/space_mountain_wind_glass.rsi + +- type: entity + parent: DrinkBase + id: DrinkSyndicatebomb + name: Syndicate bomb + description: Tastes like terrorism! + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/syndicatebomb.rsi + - type: Icon + sprite: Objects/Drinks/syndicatebomb.rsi + +- type: entity + parent: DrinkBase + id: DrinkTeacup + name: Teacup + description: A plain white porcelain teacup. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/teacup.rsi + state: icon-1 + - type: Icon + sprite: Objects/Drinks/teacup.rsi + state: icon-1 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 2 + +- type: entity + parent: DrinkBase + id: DrinkTeaGlass + name: Tea glass + description: Tasty black tea. Contains caffeine. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/teaglass.rsi + - type: Icon + sprite: Objects/Drinks/teaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkTeapot + name: Teapot # Short and stout + description: An elegant teapot. It simply oozes class. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/teapot.rsi + - type: Icon + sprite: Objects/Drinks/teapot.rsi + +- type: entity + parent: DrinkBase + id: DrinkTequilaglass + name: Tequila glass + description: A strong and mildly flavoured, mexican produced spirit. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/tequillaglass.rsi + - type: Icon + sprite: Objects/Drinks/tequillaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkTequilaSunriseGlass + name: Tequila sunrise glass + description: Tequila and orange juice. Much like a Screwdriver, only Mexican~ + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/tequillasunriseglass.rsi + - type: Icon + sprite: Objects/Drinks/tequillasunriseglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkThirteenLokoGlass + name: Thirteen Loko Glass + description: A potent mixture of caffeine and alcohol. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/thirteen_loko_glass.rsi + - type: Icon + sprite: Objects/Drinks/thirteen_loko_glass.rsi + +- type: entity + parent: DrinkBase + id: DrinkThreeMileIslandGlass + name: Three mile island glass + description: Made for a woman, strong enough for a man. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/threemileislandglass.rsi + - type: Icon + sprite: Objects/Drinks/threemileislandglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkTomatoJuice + name: Tomato juice + description: Juice made from tomatoes, usually used as a beverage, either plain or in cocktails + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/tomatojuice.rsi + - type: Icon + sprite: Objects/Drinks/tomatojuice.rsi + +- type: entity + parent: DrinkBase + id: DrinkTonicWater + name: Tonic water + description: A carbonated soft drink in which quinine is dissolved. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/tonic.rsi + - type: Icon + sprite: Objects/Drinks/tonic.rsi + +- type: entity + parent: DrinkBase + id: DrinkToxinsSpecialGlass + name: Toxins special glass + description: This thing is ON FIRE! CALL THE DAMN SHUTTLE!" + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/toxinsspecialglass.rsi + - type: Icon + sprite: Objects/Drinks/toxinsspecialglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkVacuumFlask + name: Vacuum flask + description: Keeping your drinks at the perfect temperature since 1892. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/vacuumflask.rsi + - type: Icon + sprite: Objects/Drinks/vacuumflask.rsi + +- type: entity + parent: DrinkBase + id: DrinkVermouthglass + name: Vermouth glass + description: Aromatized, fortified white wine flavored with various botanicals. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/vermouthglass.rsi + - type: Icon + sprite: Objects/Drinks/vermouthglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkVodkaTonicGlass + name: Vodka tonic glass + description: For when a gin and tonic isn't russian enough. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/vodkatonicglass.rsi + - type: Icon + sprite: Objects/Drinks/vodkatonicglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkWaterJug + name: Water jug + description: Stay hydrated + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/water.rsi + - type: Icon + sprite: Objects/Drinks/water.rsi + +- type: entity + parent: DrinkBase + id: DrinkWaterBottle + name: Water bottle + description: Simple clean water of unknown origin. You think that maybe you dont want to know it. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/waterbottle.rsi + - type: Icon + sprite: Objects/Drinks/waterbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkWatermelonJuice + name: Watermelon juice + description: Delicious juice made from watermelon. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/watermelon.rsi + - type: Icon + sprite: Objects/Drinks/watermelon.rsi + +- type: entity + parent: DrinkBase + id: DrinkWaterCup + name: Water Cup + description: A paper water cup. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/water_cup.rsi + state: icon-1 + - type: Icon + sprite: Objects/Drinks/water_cup.rsi + state: icon-1 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 2 + +- type: entity + parent: DrinkBase + id: DrinkWhiskeyColaGlass + name: Whiskey cola glass + description: Whiskey, mixed with cola. Surprisingly refreshing. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/whiskeycolaglass.rsi + - type: Icon + sprite: Objects/Drinks/whiskeycolaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkWhiskeyGlass + name: Special blend whiskey glass + description: Just when you thought regular station whiskey was good... This silky, amber goodness has to come along and ruin everything. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/whiskeyglass.rsi + - type: Icon + sprite: Objects/Drinks/whiskeyglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkWhiskeySodaGlass + name: Whiskey soda glass + description: For the more refined griffon. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/whiskeysodaglass.rsi + - type: Icon + sprite: Objects/Drinks/whiskeysodaglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkWhiskeySodaGlass2 + name: Whiskey soda glass + description: For the more refined griffon. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/whiskeysodaglass2.rsi + - type: Icon + sprite: Objects/Drinks/whiskeysodaglass2.rsi + +- type: entity + parent: DrinkBase + id: DrinkWhiteRussianGlass + name: White Russian glass + description: That's just, like, your opinion, man... + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/whiterussianglass.rsi + - type: Icon + sprite: Objects/Drinks/whiterussianglass.rsi + +- type: entity + parent: DrinkBase + id: DrinkWineGlass + name: Wine glass + description: An premium alchoholic beverage made from distilled grape juice. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/wineglass.rsi + - type: Icon + sprite: Objects/Drinks/wineglass.rsi diff --git a/Resources/Prototypes/Entities/items/Consumables/drinks_bottles.yml b/Resources/Prototypes/Entities/items/Consumables/drinks_bottles.yml new file mode 100644 index 0000000000..bfc997e01b --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/drinks_bottles.yml @@ -0,0 +1,287 @@ +- type: entity + parent: DrinkBase + id: DrinkAbsintheBottleFull + name: Jailbreaker Verte + description: One sip of this and you just know you're gonna have a good time. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleAbsinthe + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/absinthebottle.rsi + - type: Icon + sprite: Objects/Drinks/absinthebottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkAlcoGreenFull + name: Emeraldine Melon Liquor + description: A bottle of 46 proof Emeraldine Melon Liquor. Sweet and light. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleAlcoClear + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/alco-green.rsi + - type: Icon + sprite: Objects/Drinks/alco-green.rsi + +- type: entity + parent: DrinkBase + id: DrinkAleBottleFull + name: Magm-Ale + description: A true dorf's drink of choice. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleAle + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/alebottle.rsi + - type: Icon + sprite: Objects/Drinks/alebottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkBottleOfNothingFull + name: Bottle of nothing + description: A bottle filled with nothing + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleAlcoClear + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/bottleofnothing.rsi + - type: Icon + sprite: Objects/Drinks/bottleofnothing.rsi + +- type: entity + parent: DrinkBase + id: DrinkCognacBottleFull + name: Cognac bottle + description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleCognac + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/cognacbottle.rsi + - type: Icon + sprite: Objects/Drinks/cognacbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkGinBottleFull + name: Griffeater gin bottle + description: A bottle of high quality gin, produced in the New London Space Station. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleGin + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/ginbottle.rsi + - type: Icon + sprite: Objects/Drinks/ginbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkGoldschlagerBottleFull + name: Goldschlager bottle + description: 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleGoldschlager + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/goldschlagerbottle.rsi + - type: Icon + sprite: Objects/Drinks/goldschlagerbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkKahluaBottleFull + name: Kahlua bottle + description: A widely known, Mexican coffee-flavoured liqueur. In production since 1936, HONK + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleKahlua + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/kahluabottle.rsi + - type: Icon + sprite: Objects/Drinks/kahluabottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkPatronBottleFull + name: Wrapp artiste patron bottle + description: Silver laced tequilla, served in space night clubs across the galaxy. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottlePatron + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/patronbottle.rsi + - type: Icon + sprite: Objects/Drinks/patronbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkPoisonWinebottleFull + name: Warlock's velvet bottle + description: What a delightful packaging for a surely high quality wine! The vintage must be amazing! + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottlePoisonWine + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/pwinebottle.rsi + - type: Icon + sprite: Objects/Drinks/pwinebottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkRumbottleFull + name: Captain Pete's cuban spiced rum + description: This isn't just rum, oh no. It's practically GRIFF in a bottle. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleRum + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/rumbottle.rsi + - type: Icon + sprite: Objects/Drinks/rumbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkTequilabottleFull + name: Caccavo guaranteed quality tequila bottle + description: Made from premium petroleum distillates, pure thalidomide and other fine quality ingredients! + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleTequila + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/tequillabottle.rsi + - type: Icon + sprite: Objects/Drinks/tequillabottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkVermouthBottleFull + name: Goldeneye vermouth bottle + description: Sweet, sweet dryness~ + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleVermouth + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/vermouthbottle.rsi + - type: Icon + sprite: Objects/Drinks/vermouthbottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkVodkaBottleFull + name: Vodka bottle + description: Aah, vodka. Prime choice of drink AND fuel by Russians worldwide. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleVodka + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/vodkabottle.rsi + - type: Icon + sprite: Objects/Drinks/vodkabottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkWhiskeyBottleFull + name: Uncle Git's special reserve + description: A premium single-malt whiskey, gently matured inside the tunnels of a nuclear shelter. TUNNEL WHISKEY RULES. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleWhiskey + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/whiskeybottle.rsi + - type: Icon + sprite: Objects/Drinks/whiskeybottle.rsi + +- type: entity + parent: DrinkBase + id: DrinkWineBottleFull + name: Doublebearded bearded special wine bottle + description: A faint aura of unease and asspainery surrounds the bottle. + components: + - type: Drink + max_volume: 10 + spawn_on_finish: DrinkBottleWine + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 10 + - type: Sprite + sprite: Objects/Drinks/winebottle.rsi + - type: Icon + sprite: Objects/Drinks/winebottle.rsi diff --git a/Resources/Prototypes/Entities/items/Consumables/drinks_cans.yml b/Resources/Prototypes/Entities/items/Consumables/drinks_cans.yml new file mode 100644 index 0000000000..4d776b2446 --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/drinks_cans.yml @@ -0,0 +1,258 @@ +- type: entity + parent: DrinkFoodContainerBase + name: Base can + id: DrinkFoodContainerBaseCan + abstract: true + components: + - type: Sound + - type: DrinkFoodContainer + use_sound: /Audio/items/canopen.ogg + capacity: 1 + +# Below are grouped paired as "unopened" and "opened" +- type: entity + parent: DrinkFoodContainerBaseCan + name: Space cola (unopened) + id: DrinkFoodContainerColaCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkColaCan: 100 + - type: Sprite + sprite: Objects/Drinks/cola.rsi + - type: Icon + sprite: Objects/Drinks/cola.rsi + +- type: entity + parent: DrinkBase + id: DrinkColaCan + name: Space cola + description: A refreshing beverage. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/cola.rsi + - type: Icon + sprite: Objects/Drinks/cola.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Ice tea can (unopened) + id: DrinkFoodContainerIceTeaCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkIceTeaCan: 100 + - type: Sprite + sprite: Objects/Drinks/ice_tea_can.rsi + - type: Icon + sprite: Objects/Drinks/ice_tea_can.rsi + +- type: entity + parent: DrinkBase + id: DrinkIceTeaCan + name: Ice tea can + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/ice_tea_can.rsi + - type: Icon + sprite: Objects/Drinks/ice_tea_can.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Lemon-lime can (unopened) + id: DrinkFoodContainerLemonLimeCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkLemonLimeCan: 100 + - type: Sprite + sprite: Objects/Drinks/lemon-lime.rsi + - type: Icon + sprite: Objects/Drinks/lemon-lime.rsi + +- type: entity + parent: DrinkBase + id: DrinkLemonLimeCan + name: Lemon-lime can + description: You wanted ORANGE. It gave you Lemon Lime. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/lemon-lime.rsi + - type: Icon + sprite: Objects/Drinks/lemon-lime.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Purple can (unopened) + id: DrinkFoodContainerPurpleCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkPurpleCan: 100 + - type: Sprite + sprite: Objects/Drinks/purple_can.rsi + - type: Icon + sprite: Objects/Drinks/purple_can.rsi + +- type: entity + parent: DrinkBase + id: DrinkPurpleCan + name: Purple Can + description: '' + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/purple_can.rsi + - type: Icon + sprite: Objects/Drinks/purple_can.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Space mountain wind can (unopened) + id: DrinkFoodContainerSpaceMountainWindCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkSpaceMountainWindCan: 100 + - type: Sprite + sprite: Objects/Drinks/space_mountain_wind.rsi + - type: Icon + sprite: Objects/Drinks/space_mountain_wind.rsi + +- type: entity + parent: DrinkBase + id: DrinkSpaceMountainWindCan + name: Space mountain wind can + description: Blows right through you like a space wind. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/space_mountain_wind.rsi + - type: Icon + sprite: Objects/Drinks/space_mountain_wind.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Space-up can (unopened) + id: DrinkFoodContainerSpaceUpCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkSpaceUpCan: 100 + - type: Sprite + sprite: Objects/Drinks/space-up.rsi + - type: Icon + sprite: Objects/Drinks/space-up.rsi + +- type: entity + parent: DrinkBase + id: DrinkSpaceUpCan + name: Space-up can + description: Tastes like a hull breach in your mouth. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/space-up.rsi + - type: Icon + sprite: Objects/Drinks/space-up.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Starkist can (unopened) + id: DrinkFoodContaineStarkistCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkStarkistCan: 100 + - type: Sprite + sprite: Objects/Drinks/starkist.rsi + - type: Icon + sprite: Objects/Drinks/starkist.rsi + +- type: entity + parent: DrinkBase + id: DrinkStarkistCan + name: Starkist can + description: The taste of a star in liquid form. And, a bit of tuna...? + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/starkist.rsi + - type: Icon + sprite: Objects/Drinks/starkist.rsi + + +- type: entity + parent: DrinkFoodContainerBaseCan + name: Thirteen loko can (unopened) + id: DrinkFoodContaineThirteenLokoCanUnopened + components: + - type: Sound + - type: DrinkFoodContainer + prototypes: + DrinkThirteenLokoCan: 100 + - type: Sprite + sprite: Objects/Drinks/thirteen_loko.rsi + - type: Icon + sprite: Objects/Drinks/thirteen_loko.rsi + +- type: entity + parent: DrinkBase + id: DrinkThirteenLokoCan + name: Thirteen loko can + description: The MBO has advised crew members that consumption of Thirteen Loko may result in seizures, blindness, drunkeness, or even death. Please Drink Responsibly. + components: + - type: Drink + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 4 + - type: Sprite + sprite: Objects/Drinks/thirteen_loko.rsi + - type: Icon + sprite: Objects/Drinks/thirteen_loko.rsi diff --git a/Resources/Prototypes/Entities/items/Consumables/drinks_cups.yml b/Resources/Prototypes/Entities/items/Consumables/drinks_cups.yml new file mode 100644 index 0000000000..d39b8d0aff --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/drinks_cups.yml @@ -0,0 +1,236 @@ +# Empty drink containers; different from bottles in that these are intended to be spawned empty +- type: entity + parent: BaseItem + id: DrinkBaseCup + name: Base cup + abstract: true + components: + - type: Drink + max_volume: 4 + despawn_empty: false + - type: Sprite + state: icon + - type: Icon + state: icon + +- type: entity + parent: DrinkBaseCup + id: DrinkGoldenCup + name: Golden cup + description: A golden cup + components: + - type: Drink + max_volume: 10 + - type: Sprite + sprite: Objects/Drinks/golden_cup.rsi + - type: Icon + sprite: Objects/Drinks/golden_cup.rsi + +- type: entity + parent: DrinkBaseCup + id: DrinkPitcher + name: Insulated pitcher + description: A stainless steel insulated pitcher. Everyone's best friend in the morning. + components: + - type: Drink + max_volume: 15 + - type: Sprite + sprite: Objects/Drinks/pitcher.rsi + state: icon-6 + - type: Icon + sprite: Objects/Drinks/pitcher.rsi + state: icon-6 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 7 + +- type: entity + parent: DrinkBaseCup + id: DrinkMug + name: Mug + description: A plain white mug. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugBlack + name: Mug Black + description: A sleek black mug. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_black.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_black.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugBlue + name: Mug Blue + description: A blue and black mug. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_blue.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_blue.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugGreen + name: Mug Green + description: A pale green and pink mug. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_green.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_green.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugHeart + name: Mug Heart + description: A white mug, it prominently features a red heart. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_heart.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_heart.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugMetal + name: Mug Metal + description: A metal mug. You're not sure which metal. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_metal.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_metal.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugMoebius + name: Mug Moebius + description: A mug with a Moebius Laboratories logo on it. Not even your morning coffee is safe from corporate advertising. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_moebius.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_moebius.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugOne + name: "#1 mug" + description: "A white mug, it prominently features a #1." + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_one.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_one.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugRainbow + name: Mug Rainbow + description: A rainbow mug. The colors are almost as blinding as a welder. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_rainbow.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_rainbow.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 + +- type: entity + parent: DrinkBaseCup + id: DrinkMugRed + name: Mug Red + description: A red and black mug. + components: + - type: Drink + max_volume: 4 + - type: Sprite + sprite: Objects/Drinks/mug_red.rsi + state: icon-3 + - type: Icon + sprite: Objects/Drinks/mug_red.rsi + state: icon-3 + - type: Appearance + visuals: + - type: DrinkFoodVisualizer2D + steps: 4 diff --git a/Resources/Prototypes/Entities/items/Consumables/food.yml b/Resources/Prototypes/Entities/items/Consumables/food.yml new file mode 100644 index 0000000000..d0d3ad4f58 --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/food.yml @@ -0,0 +1,2850 @@ +- type: entity + parent: BaseItem + id: FoodBase + abstract: true + components: + - type: Food + - type: Sound + - type: Sprite + state: icon + netsync: false + - type: Icon + state: icon + # Only use visualizer if there's multiple steps available +# - type: Appearance +# visuals: +# - type: FoodVisualizer2D +# base_state: icon +# steps: 1 + +# Some of the conversions here have definitely been screwed up +# Glorious food +- type: entity + name: 4no Raisins + parent: FoodBase + id: Food4NoRaisins + description: Dried raisins + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashRaisins + - type: Sprite + sprite: Objects/Food/4no_raisins.rsi + - type: Icon + sprite: Objects/Food/4no_raisins.rsi + +- type: entity + name: Aesir salad + parent: FoodBase + id: FoodAesirSalad + description: Probably too incredible for mortal men to fully enjoy. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + trash: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/aesirsalad.rsi + - type: Icon + sprite: Objects/Food/aesirsalad.rsi + +- type: entity + name: Amanita pie + parent: FoodBase + id: FoodAmanitaPie + description: Sweet and tasty poison pie. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/amanita_pie.rsi + - type: Icon + sprite: Objects/Food/amanita_pie.rsi + +- type: entity + name: Amanita jelly + parent: FoodBase + id: FoodAmanitaJelly + description: Looks curiously toxic + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/amanitajelly.rsi + - type: Icon + sprite: Objects/Food/amanitajelly.rsi + +#- type: entity +# name: Ambrosia vulgar is crushed +# parent: FoodBase +# id: FoodAmbrosiaVulgarIsCrushed +# description: +# components: +# - type: Food +# uses: 1 +# - type: Sprite +# sprite: Objects/Food/ambrosiavulgariscrushed.rsi +# - type: Icon +# sprite: Objects/Food/ambrosiavulgariscrushed.rsi + +- type: entity + name: Apple cake (slice) + parent: FoodBase + id: FoodAppleCakeSlice + description: A slice of heavenly cake. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/apple_cake_slice.rsi + - type: Icon + sprite: Objects/Food/apple_cake_slice.rsi + +- type: entity + name: Apple pie + parent: FoodBase + id: FoodApplePie + description: A pie containing sweet sweet love... or apple. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/apple_pie.rsi + - type: Icon + sprite: Objects/Food/apple_pie.rsi + +# TODO: BREADSLICE? +#- type: entity +# name: Bacon +# parent: FoodBase +# id: FoodBacon +# description: +# components: +# - type: Food +# uses: 1 +# - type: Sprite +# sprite: Objects/Food/bacon.rsi +# - type: Icon +# sprite: Objects/Food/bacon.rsi + +- type: entity + name: Bad recipe + parent: FoodBase + id: FoodBadRecipe + description: Someone should be demoted from chef for this. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/badrecipe.rsi + - type: Icon + sprite: Objects/Food/badrecipe.rsi + +- type: entity + name: Baguette + parent: FoodBase + id: FoodBaguette + description: Bon appetit! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/baguette.rsi + - type: Icon + sprite: Objects/Food/baguette.rsi + +- type: entity + name: Banana bread (slice) + parent: FoodBase + id: FoodBananaBreadSlice + description: + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/bananabreadslice.rsi + - type: Icon + sprite: Objects/Food/bananabreadslice.rsi + +- type: entity + parent: FoodBase + id: FoodBananaCreamPie + name: Banana cream pie + description: Just like back home, on clown planet! HONK! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/pie.rsi + - type: Icon + sprite: Objects/Food/pie.rsi + +#- type: entity +# name: Bear meat +# parent: FoodBase +# id: FoodBearMeat +# description: +# components: +# - type: Food +# uses: 1 +# - type: Sprite +# sprite: Objects/Food/bearmeat.rsi +# - type: Icon +# sprite: Objects/Food/bearmeat.rsi + +- type: entity + name: Beet soup + parent: FoodBase + id: FoodBeetSoup # Bears, beets, battlestar galactica + description: Wait, how do you spell it again..? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/beetsoup.rsi + - type: Icon + sprite: Objects/Food/beetsoup.rsi + +- type: entity + name: Berry Clafoutis + parent: FoodBase + id: FoodBerryClafoutis + description: No black birds, this is a good sign. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/berryclafoutis.rsi + - type: Icon + sprite: Objects/Food/berryclafoutis.rsi + +- type: entity + name: Birthday cake (slice) + parent: FoodBase + id: FoodBirthdayCakeSlice + description: A slice of your birthday. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/birthday_cake_slice.rsi + - type: Icon + sprite: Objects/Food/birthday_cake_slice.rsi + +- type: entity + parent: FoodBase + id: FoodSpagettiBoiled + name: Boiled spaghetti + description: A plain dish of noodles, this sucks. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/spaghettiboiled.rsi + - type: Icon + sprite: Objects/Food/spaghettiboiled.rsi + +- type: entity + name: Brain cake (slice) + parent: FoodBase + id: FoodBrainCakeSlice + description: '' + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/brain_cake_slice.rsi + - type: Icon + sprite: Objects/Food/brain_cake_slice.rsi + +- type: entity + name: Candy + parent: FoodBase + id: FoodCandy + description: Nougat, love it or hate it. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 20 + spawn_on_finish: TrashCandy + - type: Sprite + sprite: Objects/Food/candy.rsi + - type: Icon + sprite: Objects/Food/candy.rsi + +- type: entity + name: Candy corn + parent: FoodBase + id: FoodCandyCorn + description: It's a handful of candy corn. Cannot be stored in a detective's hat, alas. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/candy_corn.rsi + - type: Icon + sprite: Objects/Food/candy_corn.rsi + +- type: entity + name: Carrot cake (slice) + parent: FoodBase + id: FoodCarrotCakeSlice + description: Carrotty slice of Carrot Cake, carrots are good for your eyes! Also not a lie. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/carrotcake_slice.rsi + - type: Icon + sprite: Objects/Food/carrotcake_slice.rsi + +- type: entity + name: Carrot fries + parent: FoodBase + id: FoodCarrotFries + description: Tasty fries from fresh Carrots. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/carrotfries.rsi + - type: Icon + sprite: Objects/Food/carrotfries.rsi + +- type: entity + name: Chawan Mushi + parent: FoodBase + id: FoodChawanMushi + description: A legendary egg custard that makes friends out of enemies. Probably too hot for a cat to eat. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/chawanmushi.rsi + - type: Icon + sprite: Objects/Food/chawanmushi.rsi + +- type: entity + name: Cheeseburger + parent: FoodBase + id: FoodCheeseburger + description: The cheese adds a good flavor. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/cheeseburger.rsi + - type: Icon + sprite: Objects/Food/cheeseburger.rsi + +- type: entity + name: Cheesecake (slice) + parent: FoodBase + id: FoodCheeseCakeSlice + description: Slice of pure cheestisfaction + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/cheesecake_slice.rsi + - type: Icon + sprite: Objects/Food/cheesecake_slice.rsi + +- type: entity + name: Cheese wedge + parent: FoodBase + id: FoodCheeseWedge + description: A wedge of delicious Cheddar. The cheese wheel it was cut from can't have gone far. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/cheesewedge.rsi + - type: Icon + sprite: Objects/Food/cheesewedge.rsi + +- type: entity + name: Cheesie honkers + parent: FoodBase + id: FoodCheesieHonkers + description: Bite sized cheesie snacks that will honk all over your mouth + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashCheesieHonkers + - type: Sprite + sprite: Objects/Food/cheesie_honkers.rsi + - type: Icon + sprite: Objects/Food/cheesie_honkers.rsi + +- type: entity + name: Cheesy fries + parent: FoodBase + id: FoodCheesyFries + description: Fries. Covered in cheese. Duh. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/cheesyfries.rsi + - type: Icon + sprite: Objects/Food/cheesyfries.rsi + +- type: entity + name: Cherry pie + parent: FoodBase + id: FoodCherryPie + description: Taste so good, make a grown man cry. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/cherrypie.rsi + - type: Icon + sprite: Objects/Food/cherrypie.rsi + +- type: entity + name: Chips + parent: FoodBase + id: FoodChips + description: Commander Riker's What-The-Crisps + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashChips + - type: Sprite + sprite: Objects/Food/chips.rsi + - type: Icon + sprite: Objects/Food/chips.rsi + +- type: entity + name: Chocolate bar + parent: FoodBase + id: FoodChocolateBar + description: Such sweet, fattening food. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/chocolatebar.rsi + - type: Icon + sprite: Objects/Food/chocolatebar.rsi + +- type: entity + name: Chocolate cake (slice) + parent: FoodBase + id: FoodChocolateCakeSlice + description: A cake with added chocolate + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/chocolatecake_slice.rsi + - type: Icon + sprite: Objects/Food/chocolatecake_slice.rsi + +- type: entity + name: Chocolate egg + parent: FoodBase + id: FoodChocolateEgg + description: Such sweet, fattening food. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/chocolateegg.rsi + - type: Icon + sprite: Objects/Food/chocolateegg.rsi + +- type: entity + name: Clown burger + parent: FoodBase + id: FoodClownBurger + description: This tastes funny... + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/clownburger.rsi + - type: Icon + sprite: Objects/Food/clownburger.rsi + +- type: entity + name: Clown's tears + parent: FoodBase + id: FoodClownsTears + description: Not very funny. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/clownstears.rsi + - type: Icon + sprite: Objects/Food/clownstears.rsi + +#- type: entity +# name: Cocoa +# parent: FoodBase +# id: FoodCocoa +# description: +# components: +# - type: Food +# uses: 1 +# restore_amount: 3 +# - type: Sprite +# sprite: Objects/Food/cocoa.rsi +# - type: Icon +# sprite: Objects/Food/cocoa.rsi + +- type: entity + parent: FoodBase + id: FoodColdchili + name: Cold chili + description: This slush is barely a liquid! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/coldchili.rsi + - type: Icon + sprite: Objects/Food/coldchili.rsi + +#- type: entity +# parent: FoodBase +# id: FoodColdsauce +# name: Coldsauce +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/coldsauce.rsi +# - type: Icon +# sprite: Objects/Food/coldsauce.rsi + +- type: entity + parent: FoodBase + id: FoodCookie + name: Cookie!!! + description: COOKIE!!! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/cookie!!!.rsi + - type: Icon + sprite: Objects/Food/cookie!!!.rsi + +- type: entity + parent: FoodBase + id: FoodCracker + name: Cracker + description: It's a salted cracker. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/cracker.rsi + - type: Icon + sprite: Objects/Food/cracker.rsi + +- type: entity + parent: FoodBase + id: FoodCreamCheeseBreadSlice + name: Cream cheese bread (slice) + description: A slice of yum! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/creamcheesebreadslice.rsi + - type: Icon + sprite: Objects/Food/creamcheesebreadslice.rsi + +- type: entity + parent: FoodBase + id: FoodCubanCarp + name: Cuban carp + description: A sandwich that burns your tongue and then leaves it numb! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/cubancarp.rsi + - type: Icon + sprite: Objects/Food/cubancarp.rsi + +#- type: entity +# parent: FoodBase +# id: FoodDionaRoast +# name: Diona roast +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/dionaroast.rsi +# - type: Icon +# sprite: Objects/Food/dionaroast.rsi + +- type: entity + parent: FoodBase + id: FoodDonkPocket + name: Donk-pocket + description: The food of choice for the seasoned traitor. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/donkpocket.rsi + - type: Icon + sprite: Objects/Food/donkpocket.rsi + +- type: entity + parent: FoodBase + id: FoodDonut + name: Donut + description: Goes great with Robust Coffee. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/donut1.rsi + - type: Icon + sprite: Objects/Food/donut1.rsi + +- type: entity + parent: FoodBase + id: FoodFrostedDonut + name: Frosted Donut + description: Goes great with Robust Coffee. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/donut2.rsi + - type: Icon + sprite: Objects/Food/donut2.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-blue + name: Egg-blue + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-blue.rsi + - type: Icon + sprite: Objects/Food/egg-blue.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-green + name: Egg-green + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-green.rsi + - type: Icon + sprite: Objects/Food/egg-green.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-mime + name: Egg-mime + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-mime.rsi + - type: Icon + sprite: Objects/Food/egg-mime.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-orange + name: Egg-orange + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-orange.rsi + - type: Icon + sprite: Objects/Food/egg-orange.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-purple + name: Egg-purple + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-purple.rsi + - type: Icon + sprite: Objects/Food/egg-purple.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-rainbow + name: Egg-rainbow + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-rainbow.rsi + - type: Icon + sprite: Objects/Food/egg-rainbow.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-red + name: Egg-red + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-red.rsi + - type: Icon + sprite: Objects/Food/egg-red.rsi + +- type: entity + parent: FoodBase + id: FoodEgg-yellow + name: Egg-yellow + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg-yellow.rsi + - type: Icon + sprite: Objects/Food/egg-yellow.rsi + +- type: entity + parent: FoodBase + id: FoodEgg + name: Egg + description: An egg! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/egg.rsi + - type: Icon + sprite: Objects/Food/egg.rsi + +- type: entity + parent: FoodBase + id: FoodEggplantparm + name: Eggplant parmigiana # Parma or parmi + description: The only good recipe for eggplant. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/eggplantparm.rsi + - type: Icon + sprite: Objects/Food/eggplantparm.rsi + +#- type: entity +# parent: FoodBase +# id: FoodEmptycondiment +# name: Empty condiment +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/emptycondiment.rsi +# - type: Icon +# sprite: Objects/Food/emptycondiment.rsi + +- type: entity + parent: FoodBase + id: FoodEnchiladas + name: Enchiladas + description: Viva La Mexico! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashTray + - type: Sprite + sprite: Objects/Food/enchiladas.rsi + - type: Icon + sprite: Objects/Food/enchiladas.rsi + +#- type: entity +# parent: FoodBase +# id: FoodEnchiladasold +# name: Enchiladas (old) +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/enchiladasold.rsi +# - type: Icon +# sprite: Objects/Food/enchiladasold.rsi + +#- type: entity +# parent: FoodBase +# id: FoodEnzyme +# name: Enzyme +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/enzyme.rsi +# - type: Icon +# sprite: Objects/Food/enzyme.rsi + +- type: entity + parent: FoodBase + id: FoodFishAndChips + name: Fish and chips + description: I do say so myself chap. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/fishandchips.rsi + - type: Icon + sprite: Objects/Food/fishandchips.rsi + +- type: entity + parent: FoodBase + id: FoodFishBurger + name: Fillet -o- Carp Sandwich + description: Almost like a carp is yelling somewhere... Give me back that fillet -o- carp, give me that carp. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/fishburger.rsi + - type: Icon + sprite: Objects/Food/fishburger.rsi + +#- type: entity +# parent: FoodBase +# id: FoodFishfillet +# name: Fishfillet +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/fishfillet.rsi +# - type: Icon +# sprite: Objects/Food/fishfillet.rsi + +- type: entity + parent: FoodBase + id: FoodFishfingers + name: Fish fingers + description: A finger of fish. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/fishfingers.rsi + - type: Icon + sprite: Objects/Food/fishfingers.rsi + +#- type: entity +# parent: FoodBase +# id: FoodFlour +# name: Flour +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/flour.rsi +# - type: Icon +# sprite: Objects/Food/flour.rsi + +- type: entity + parent: FoodBase + id: FoodFortuneCookie + name: Fortune cookie + description: A true prophecy in each cookie! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/fortune_cookie.rsi + - type: Icon + sprite: Objects/Food/fortune_cookie.rsi + +- type: entity + parent: FoodBase + id: FoodFriedegg + name: Fried egg + description: A fried egg, with a touch of salt and pepper. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/friedegg.rsi + - type: Icon + sprite: Objects/Food/friedegg.rsi + +- type: entity + parent: FoodBase + id: FoodFries + name: Space fries + description: "AKA: French Fries, Freedom Fries, etc." + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/fries.rsi + - type: Icon + sprite: Objects/Food/fries.rsi + +- type: entity + parent: FoodBase + id: FoodGappleTart + name: Golden apple streusel tart + description: A tasty dessert that won't make it through a metal detector. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/gappletart.rsi + - type: Icon + sprite: Objects/Food/gappletart.rsi + +- type: entity + parent: FoodBase + id: FoodGrilledCheese + name: Grilled cheese sandwich + description: Goes great with Tomato soup! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/toastedsandwich.rsi + - type: Icon + sprite: Objects/Food/toastedsandwich.rsi + +- type: entity + parent: FoodBase + id: FoodHumanBurger + name: Human-burger + description: A bloody burger. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/hburger.rsi + - type: Icon + sprite: Objects/Food/hburger.rsi + +- type: entity + parent: FoodBase + id: FoodHerbSalad + name: Tossed salad + description: A proper salad, basic and simple, with little bits of carrot, tomato and apple intermingled. Vegan! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/herbsalad.rsi + - type: Icon + sprite: Objects/Food/herbsalad.rsi + +#- type: entity +# parent: FoodBase +# id: FoodHoneycomb +# name: Honeycomb +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/honeycomb.rsi +# - type: Icon +# sprite: Objects/Food/honeycomb.rsi + +- type: entity + parent: FoodBase + id: FoodHotchili + name: Hot chili + description: A five alarm Texan Chili! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/hotchili.rsi + - type: Icon + sprite: Objects/Food/hotchili.rsi + +- type: entity + parent: FoodBase + id: FoodHotdog + name: Hotdog + description: Unrelated to dogs, maybe. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/hotdog.rsi + - type: Icon + sprite: Objects/Food/hotdog.rsi + +#- type: entity +# parent: FoodBase +# id: FoodHotsauce +# name: Hotsauce +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/hotsauce.rsi +# - type: Icon +# sprite: Objects/Food/hotsauce.rsi + +- type: entity + parent: FoodBase + id: FoodHugeMushroomSlice + name: Huge mushroom (slice) + description: A slice from a huge mushroom. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/hugemushroomslice.rsi + - type: Icon + sprite: Objects/Food/hugemushroomslice.rsi + +- type: entity + parent: FoodBase + id: FoodKabobHuman + name: Human-Kabob + description: A human meat, on a stick. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + # spawn_on_finish: TODO + - type: Sprite + sprite: Objects/Food/kabob.rsi + - type: Icon + sprite: Objects/Food/kabob.rsi + +- type: entity + parent: FoodBase + id: FoodJellyDonut + name: Jelly donut + description: You jelly? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/jdonut1.rsi + - type: Icon + sprite: Objects/Food/jdonut1.rsi + +- type: entity + parent: FoodBase + id: FoodFrostedJellyDonut + name: Frosted Jelly Donut + description: You jelly? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/jdonut2.rsi + - type: Icon + sprite: Objects/Food/jdonut2.rsi + +- type: entity + parent: FoodBase + id: FoodJellyBurger + name: Jelly burger + description: Culinary delight..? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/jellyburger.rsi + - type: Icon + sprite: Objects/Food/jellyburger.rsi + +- type: entity + parent: FoodBase + id: FoodJellySandwich + name: Jelly sandwich + description: You wish you had some peanut butter to go with this... + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/jellysandwich.rsi + - type: Icon + sprite: Objects/Food/jellysandwich.rsi + +- type: entity + parent: FoodBase + id: FoodJellyToast + name: Jellied toast + description: A slice of bread covered with delicious jam. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/jellytoast.rsi + - type: Icon + sprite: Objects/Food/jellytoast.rsi + +# TODO: Add more pies. Anything that shares a sprite +- type: entity + parent: FoodBase + id: FoodKabobMeat + name: Meat-Kabob + description: Delicious meat, on a stick. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + # spawn_on_finish: TODO + - type: Sprite + sprite: Objects/Food/kabob.rsi + - type: Icon + sprite: Objects/Food/kabob.rsi + +#- type: entity +# parent: FoodBase +# id: FoodKetchup +# name: Ketchup +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/ketchup.rsi +# - type: Icon +# sprite: Objects/Food/ketchup.rsi + +#- type: entity +# parent: FoodBase +# id: FoodKetchupold +# name: Ketchup (old) +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/ketchupold.rsi +# - type: Icon +# sprite: Objects/Food/ketchupold.rsi + +- type: entity + parent: FoodBase + id: FoodLemonCakeSlice + name: Lemon cake (Slice) + description: Just a slice of cake, it is enough for everyone. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/lemoncake_slice.rsi + - type: Icon + sprite: Objects/Food/lemoncake_slice.rsi + +- type: entity + parent: FoodBase + id: FoodLimeCakeSlice + name: Lime cake (Slice) + description: Just a slice of cake, it is enough for everyone. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/limecake_slice.rsi + - type: Icon + sprite: Objects/Food/limecake_slice.rsi + +- type: entity + parent: FoodBase + id: FoodLiquidFood + name: LiquidFood ration #\improper? + description: A prepackaged grey slurry of all the essential nutrients for a spacefarer on the go. Should this be crunchy? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 40 + spawn_on_finish: TrashLiquidFood + - type: Sprite + sprite: Objects/Food/liquidfood.rsi + - type: Icon + sprite: Objects/Food/liquidfood.rsi + +- type: entity + parent: FoodBase + id: FoodLoadedBakedPotato + name: Loaded baked potato + description: Totally baked. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/loadedbakedpotato.rsi + - type: Icon + sprite: Objects/Food/loadedbakedpotato.rsi + +#- type: entity +# parent: FoodBase +# id: FoodMeat +# name: Meat +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/meat.rsi +# - type: Icon +# sprite: Objects/Food/meat.rsi + +- type: entity + parent: FoodBase + id: FoodMeatball + name: Meatball + description: A great meal all round. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/meatball.rsi + - type: Icon + sprite: Objects/Food/meatball.rsi + +- type: entity + parent: FoodBase + id: FoodMeatballSoup + name: Meatball soup + description: You've got balls kid, BALLS! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/meatballsoup.rsi + - type: Icon + sprite: Objects/Food/meatballsoup.rsi + +- type: entity + parent: FoodBase + id: FoodMeatballSpaghetti + name: Spaghetti & meatballs + description: Now thats a nic'e meatball! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/meatballspaghetti.rsi + - type: Icon + sprite: Objects/Food/meatballspaghetti.rsi + +- type: entity + parent: FoodBase + id: FoodMeatBreadSlice + name: Meat bread (slice) + description: A slice of delicious meatbread. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/meatbreadslice.rsi + - type: Icon + sprite: Objects/Food/meatbreadslice.rsi + +- type: entity + parent: FoodBase + id: FoodMeatpie + name: Meat pie + description: An old barber recipe, very delicious! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 20 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/meatpie.rsi + - type: Icon + sprite: Objects/Food/meatpie.rsi + +- type: entity + parent: FoodBase + id: FoodMeatPizzaSlice + name: Meat pizza (slice) + description: A slice of a meaty pizza. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + - type: Sprite + sprite: Objects/Food/meatpizzaslice.rsi + - type: Icon + sprite: Objects/Food/meatpizzaslice.rsi + +- type: entity + parent: FoodBase + id: FoodMeatSteak + name: Meat steak + description: A piece of hot spicy meat. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/meatsteak.rsi + - type: Icon + sprite: Objects/Food/meatsteak.rsi + +- type: entity + parent: FoodBase + id: FoodMiloSoup + name: Milo soup + description: The universes best soup! Yum!!! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/milosoup.rsi + - type: Icon + sprite: Objects/Food/milosoup.rsi + +- type: entity + parent: FoodBase + id: FoodMimeBurger + name: Mime burger + description: Its taste defies language. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/mimeburger.rsi + - type: Icon + sprite: Objects/Food/mimeburger.rsi + +- type: entity + parent: FoodBase + id: FoodMint + name: Mint + description: It is only wafer thin. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/mint.rsi + - type: Icon + sprite: Objects/Food/mint.rsi + +#- type: entity +# parent: FoodBase +# id: FoodMixedcondiments +# name: Mixedcondiments +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/mixedcondiments.rsi +# - type: Icon +# sprite: Objects/Food/mixedcondiments.rsi + +- type: entity + parent: FoodBase + id: FoodMonkeyBurger + name: Monkey-burger + description: The cornerstone of every nutritious breakfast. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/hburger.rsi + - type: Icon + sprite: Objects/Food/hburger.rsi + +- type: entity + parent: FoodBase + id: FoodMonkeyCube + name: Monkey cube + description: Just add water! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/monkeycube.rsi + - type: Icon + sprite: Objects/Food/monkeycube.rsi + +- type: entity + parent: FoodBase + id: FoodMonkeysDelight + name: Monkey's delight + description: Eeee Eee! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 30 + spawn_on_finish: TrashTray + - type: Sprite + sprite: Objects/Food/monkeysdelight.rsi + - type: Icon + sprite: Objects/Food/monkeysdelight.rsi + +- type: entity + parent: FoodBase + id: FoodMonkiesDelightOld + name: Monkies delight (old) + description: '' + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 30 + - type: Sprite + sprite: Objects/Food/monkiesdelightold.rsi + - type: Icon + sprite: Objects/Food/monkiesdelightold.rsi + +#- type: entity +# parent: FoodBase +# id: FoodMtearp +# name: Mtearp +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/mtearp.rsi +# - type: Icon +# sprite: Objects/Food/mtearp.rsi + +#- type: entity +# parent: FoodBase +# id: FoodMuffin +# name: Muffin +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/muffin.rsi +# - type: Icon +# sprite: Objects/Food/muffin.rsi + +- type: entity + parent: FoodBase + id: FoodMushroomPizzaSlice + name: Mushroom pizza slice + description: Maybe it is the last slice of pizza in your life. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/mushroompizzaslice.rsi + - type: Icon + sprite: Objects/Food/mushroompizzaslice.rsi + +- type: entity + parent: FoodBase + id: FoodMushroomSoup + name: Mushroom soup + description: A delicious and hearty mushroom soup. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/mushroomsoup.rsi + - type: Icon + sprite: Objects/Food/mushroomsoup.rsi + +# TODO: More in this one +- type: entity + parent: FoodBase + id: FoodMysterySoup + name: Mystery soup + description: The mystery is, why aren't you eating it? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 1 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/mysterysoup.rsi + - type: Icon + sprite: Objects/Food/mysterysoup.rsi + +- type: entity + parent: FoodBase + id: FoodNettlesoup + name: Nettlesoup + description: To think, the botanist would've beat you to death with one of these. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/nettlesoup.rsi + - type: Icon + sprite: Objects/Food/nettlesoup.rsi + +#- type: entity +# parent: FoodBase +# id: FoodOliveoil +# name: Oliveoil +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/oliveoil.rsi +# - type: Icon +# sprite: Objects/Food/oliveoil.rsi + +- type: entity + parent: FoodBase + id: FoodOmelette + name: Omelette du fromage + description: That's all you can say! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/omelette.rsi + - type: Icon + sprite: Objects/Food/omelette.rsi + +- type: entity + parent: FoodBase + id: FoodOrangeCakeSlice + name: Orange cake (slice) + description: Just a slice of cake, it is enough for everyone. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/orangecake_slice.rsi + - type: Icon + sprite: Objects/Food/orangecake_slice.rsi + +- type: entity + parent: FoodBase + id: FoodPastaTomato + name: Spaghetti + description: Spaghetti and crushed tomatoes. Just like your abusive father used to make! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/pastatomato.rsi + - type: Icon + sprite: Objects/Food/pastatomato.rsi + +#- type: entity +# parent: FoodBase +# id: FoodPeppermillsmall +# name: Peppermillsmall +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/peppermillsmall.rsi +# - type: Icon +# sprite: Objects/Food/peppermillsmall.rsi + +- type: entity + parent: FoodBase + id: FoodPhelmbiscuit + name: Plump helm biscuit + description: This is a finely-prepared plump helmet biscuit. The ingredients are exceptionally minced plump helmet, and well-minced dwarven wheat flour. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/phelmbiscuit.rsi + - type: Icon + sprite: Objects/Food/phelmbiscuit.rsi + +- type: entity + parent: FoodBase + id: FoodMargheritaPizzaSlice + name: Margherita pizza (slice) + description: A slice of the classic pizza. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/pizzamargheritaslice.rsi + - type: Icon + sprite: Objects/Food/pizzamargheritaslice.rsi + +- type: entity + parent: FoodBase + id: FoodPlainCakeSlice + name: Plain cake (Slice) + description: Just a slice of cake, it is enough for everyone. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/plaincake_slice.rsi + - type: Icon + sprite: Objects/Food/plaincake_slice.rsi + +- type: entity + parent: FoodBase + id: FoodPlumpPie + name: Plump Pie + description: I bet you love stuff made out of plump helmets! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + - type: Sprite + sprite: Objects/Food/plump_pie.rsi + - type: Icon + sprite: Objects/Food/plump_pie.rsi + +- type: entity + parent: FoodBase + id: FoodPopcorn + name: Popcorn + description: Now let's find some cinema. + components: + - type: Food + transfer_amount: 1 + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashPopcorn + - type: Sprite + sprite: Objects/Food/popcorn.rsi + - type: Icon + sprite: Objects/Food/popcorn.rsi + +- type: entity + parent: FoodBase + id: FoodPoppyPretzel + name: Poppy pretzel + description: It's all twisted up! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 10 + - type: Sprite + sprite: Objects/Food/poppypretzel.rsi + - type: Icon + sprite: Objects/Food/poppypretzel.rsi + +- type: entity + parent: FoodBase + id: FoodPumpkinPieSlice + name: Pumpkin pie (slice) + description: A slice of pumpkin pie, with whipped cream on top. Perfection. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/pumpkinpieslice.rsi + - type: Icon + sprite: Objects/Food/pumpkinpieslice.rsi + +# TODO: Boiled rice? +#- type: entity +# parent: FoodBase +# id: FoodRice +# name: Rice +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/rice.rsi +# - type: Icon +# sprite: Objects/Food/rice.rsi + +- type: entity + parent: FoodBase + id: FoodRoburger + name: Roburger + description: The lettuce is the only organic component. Beep. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/roburger.rsi + - type: Icon + sprite: Objects/Food/roburger.rsi + +- type: entity + parent: FoodBase + id: FoodRoffleWaffles + name: Roffle waffles + description: Waffles from Roffle. Co. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashWaffles + - type: Sprite + sprite: Objects/Food/rofflewaffles.rsi + - type: Icon + sprite: Objects/Food/rofflewaffles.rsi + +#- type: entity +# parent: FoodBase +# id: FoodRoroSoup +# name: Roro soup +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/rorosoup.rsi +# - type: Icon +# sprite: Objects/Food/rorosoup.rsi + +#- type: entity +# parent: FoodBase +# id: FoodRottenmeat +# name: Rottenmeat +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/rottenmeat.rsi +# - type: Icon +# sprite: Objects/Food/rottenmeat.rsi + +- type: entity + parent: FoodBase + id: FoodRicePudding + name: Rice pudding + description: Where's the jam? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/rpudding.rsi + - type: Icon + sprite: Objects/Food/rpudding.rsi + +- type: entity + parent: FoodBase + id: FoodSandwich + name: Sandwich + description: A grand creation of meat, cheese, bread, and several leaves of lettuce! Arthur Dent would be proud. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/sandwich.rsi + - type: Icon + sprite: Objects/Food/sandwich.rsi + +#- type: entity +# parent: FoodBase +# id: FoodSandwichFilling +# name: Sandwich Filling +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/sandwich_filling.rsi +# - type: Icon +# sprite: Objects/Food/sandwich_filling.rsi + +#- type: entity +# parent: FoodBase +# id: FoodSandwichTop +# name: Sandwich Top +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/sandwich_top.rsi +# - type: Icon +# sprite: Objects/Food/sandwich_top.rsi + +- type: entity + parent: FoodBase + id: FoodSausage + name: Sausage # Sanga + description: A piece of mixed, long meat. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/sausage.rsi + - type: Icon + sprite: Objects/Food/sausage.rsi + +#- type: entity +# parent: FoodBase +# id: FoodShandp +# name: Shandp +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/shandp.rsi +# - type: Icon +# sprite: Objects/Food/shandp.rsi + +#- type: entity +# parent: FoodBase +# id: FoodSkrellsnacks +# name: Skrellsnacks +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/skrellsnacks.rsi +# - type: Icon +# sprite: Objects/Food/skrellsnacks.rsi + +- type: entity + parent: FoodBase + id: FoodSosJerky + name: Scaredy's Private Reserve Beef Jerky + description: Beef jerky made from the finest space cows. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + trash: TrashSOSJerky + - type: Sprite + sprite: Objects/Food/sosjerky.rsi + - type: Icon + sprite: Objects/Food/sosjerky.rsi + +- type: entity + parent: FoodBase + id: FoodSoyDope + name: Soy dope + description: Dope from a soy. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/soydope.rsi + - type: Icon + sprite: Objects/Food/soydope.rsi + +- type: entity + parent: FoodBase + id: FoodSoylentGreen + name: Soylent green + description: Not made of people. Honest. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashWaffles + - type: Sprite + sprite: Objects/Food/soylent_green.rsi + - type: Icon + sprite: Objects/Food/soylent_green.rsi + +# Why these were named different I have no idea +- type: entity + parent: FoodBase + id: FoodSoylentYellow + name: Soylen virdians + description: Not made of people. Honest. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashWaffles + - type: Sprite + sprite: Objects/Food/soylent_yellow.rsi + - type: Icon + sprite: Objects/Food/soylent_yellow.rsi + +#- type: entity +# parent: FoodBase +# id: FoodSoysauce +# name: Soysauce +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/soysauce.rsi +# - type: Icon +# sprite: Objects/Food/soysauce.rsi + +- type: entity + parent: FoodBase + id: FoodSpaceTwinkie + name: Space twinkie + description: Guaranteed to survive longer then you will. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/space_twinkie.rsi + - type: Icon + sprite: Objects/Food/space_twinkie.rsi + +- type: entity + parent: FoodBase + id: FoodSpacylibertyDuff + name: Spacy liberty duff + description: Jello gelatin, from Alfred Hubbard's cookbook + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/spacylibertyduff.rsi + - type: Icon + sprite: Objects/Food/spacylibertyduff.rsi + +- type: entity + parent: FoodBase + id: FoodSpaghetti + name: Spaghetti + description: A bundle of raw spaghetti. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/spaghetti.rsi + - type: Icon + sprite: Objects/Food/spaghetti.rsi + +- type: entity + parent: FoodBase + id: FoodSpellBurger + name: Spell burger + description: This is absolutely Ei Nath. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/spellburger.rsi + - type: Icon + sprite: Objects/Food/spellburger.rsi + +- type: entity + parent: FoodBase + id: FoodSpellburgerold + name: Spell burger (old) + description: This is absolutely Ei Nath. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/spellburgerold.rsi + - type: Icon + sprite: Objects/Food/spellburgerold.rsi + +- type: entity + parent: FoodBase + id: FoodSpesslaw + name: Spesslaw + description: A lawyers favourite + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/spesslaw.rsi + - type: Icon + sprite: Objects/Food/spesslaw.rsi + +- type: entity + parent: FoodBase + id: FoodStew + name: Stew + description: A nice and warm stew. Healthy and strong. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/stew.rsi + - type: Icon + sprite: Objects/Food/stew.rsi + +- type: entity + parent: FoodBase + id: FoodStewedsoymeat + name: Stewed soy meat + description: Even non-vegetarians will LOVE this! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/stewedsoymeat.rsi + - type: Icon + sprite: Objects/Food/stewedsoymeat.rsi + +- type: entity + parent: FoodBase + id: FoodStuffing + name: Stuffing + description: Moist, peppery breadcrumbs for filling the body cavities of dead birds. Dig in! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/stuffing.rsi + - type: Icon + sprite: Objects/Food/stuffing.rsi + +#- type: entity +# parent: FoodBase +# id: FoodSugar +# name: Sugar +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/sugar.rsi +# - type: Icon +# sprite: Objects/Food/sugar.rsi + +#- type: entity +# parent: FoodBase +# id: FoodSugarsmall +# name: Sugarsmall +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/sugarsmall.rsi +# - type: Icon +# sprite: Objects/Food/sugarsmall.rsi + +- type: entity + parent: FoodBase + id: FoodSuperBiteBurger + name: Super bite burger + description: This is a mountain of a burger. FOOD! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 40 + - type: Sprite + sprite: Objects/Food/superbiteburger.rsi + - type: Icon + sprite: Objects/Food/superbiteburger.rsi + +- type: entity + parent: FoodBase + id: FoodSyndiCakes + name: Syndi-cakes + description: An extremely moist snack cake that tastes just as good after being nuked. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + spawn_on_finish: TrashSyndiCakes + - type: Sprite + sprite: Objects/Food/syndi_cakes.rsi + - type: Icon + sprite: Objects/Food/syndi_cakes.rsi + +- type: entity + parent: FoodBase + id: FoodTaco + name: Taco + description: Take a bite! + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 8 + - type: Sprite + sprite: Objects/Food/taco.rsi + - type: Icon + sprite: Objects/Food/taco.rsi + +- type: entity + parent: FoodBase + id: FoodTastyBread + name: Tasty bread + description: Bread in a tube. Chewy...and surprisingly tasty. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashTastyBread + - type: Sprite + sprite: Objects/Food/tastybread.rsi + - type: Icon + sprite: Objects/Food/tastybread.rsi + +- type: entity + parent: FoodBase + id: FoodToastedsandwich + name: Toasted sandwich + description: Now if you only had a pepper bar. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/toastedsandwich.rsi + - type: Icon + sprite: Objects/Food/toastedsandwich.rsi + +- type: entity + parent: FoodBase + id: FoodTofu + name: Tofu + description: We all love tofu. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/tofu.rsi + - type: Icon + sprite: Objects/Food/tofu.rsi + +- type: entity + parent: FoodBase + id: FoodTofuBreadSlice + name: Tofu bread (slice) + description: A slice of delicious tofubread. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/tofubreadslice.rsi + - type: Icon + sprite: Objects/Food/tofubreadslice.rsi + +- type: entity + parent: FoodBase + id: FoodTofuBurger + name: Tofu burger + description: What.. is that meat? + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/tofuburger.rsi + - type: Icon + sprite: Objects/Food/tofuburger.rsi + +- type: entity + parent: FoodBase + id: FoodKabobTofu + name: Tofu-Kabob + description: Vegan meat, on a stick. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + # spawn_on_finish: TODO + - type: Sprite + sprite: Objects/Food/kabob.rsi + - type: Icon + sprite: Objects/Food/kabob.rsi + +- type: entity + parent: FoodBase + id: FoodTofurkey + name: Tofurkey + description: A fake turkey made from tofu. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 24 + - type: Sprite + sprite: Objects/Food/tofurkey.rsi + - type: Icon + sprite: Objects/Food/tofurkey.rsi + +- type: entity + parent: FoodBase + id: FoodTomatoSlice + name: Tomato slice + description: A slice from a huge tomato + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 6 + - type: Sprite + sprite: Objects/Food/tomatomeat.rsi + - type: Icon + sprite: Objects/Food/tomatomeat.rsi + +- type: entity + parent: FoodBase + id: FoodTomatoSoup + name: Tomato soup + description: Smells like copper. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/tomatosoup.rsi + - type: Icon + sprite: Objects/Food/tomatosoup.rsi + +- type: entity + parent: FoodBase + id: FoodTwoBread + name: Two bread + description: It is very bitter and winy. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 4 + - type: Sprite + sprite: Objects/Food/twobread.rsi + - type: Icon + sprite: Objects/Food/twobread.rsi + +- type: entity + parent: FoodBase + id: FoodValidSalad + name: Valid salad + description: It's just a salad of questionable 'herbs' with meatballs and fried potato slices. Nothing suspicious about it. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/validsalad.rsi + - type: Icon + sprite: Objects/Food/validsalad.rsi + +- type: entity + parent: FoodBase + id: FoodVegetablePizzaSlice + name: Vegetable pizza (slice) + description: A slice of the most green pizza of all pizzas not containing green ingredients + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + - type: Sprite + sprite: Objects/Food/vegetablepizzaslice.rsi + - type: Icon + sprite: Objects/Food/vegetablepizzaslice.rsi + +- type: entity + parent: FoodBase + id: FoodVegetableSoup + name: Vegetable soup + description: A true vegan meal + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/vegetablesoup.rsi + - type: Icon + sprite: Objects/Food/vegetablesoup.rsi + +- type: entity + parent: FoodBase + id: FoodWaffles + name: Waffles + description: Mmm, waffles + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + spawn_on_finish: TrashWaffles + - type: Sprite + sprite: Objects/Food/waffles.rsi + - type: Icon + sprite: Objects/Food/waffles.rsi + +- type: entity + parent: FoodBase + id: FoodWatermelonSlice + name: Watermelon (slice) + description: A slice of watery goodness. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + - type: Sprite + sprite: Objects/Food/watermelonslice.rsi + - type: Icon + sprite: Objects/Food/watermelonslice.rsi + +- type: entity + parent: FoodBase + id: FoodWingFangChu + name: Wing fang chu + description: A savory dish of alien wing wang in soy. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 12 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/wingfangchu.rsi + - type: Icon + sprite: Objects/Food/wingfangchu.rsi + +- type: entity + parent: FoodBase + id: FoodWishSoup + name: Wish soup + description: I wish this was soup. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 2 + spawn_on_finish: TrashSnackBowl + - type: Sprite + sprite: Objects/Food/wishsoup.rsi + - type: Icon + sprite: Objects/Food/wishsoup.rsi + +- type: entity + parent: FoodBase + id: FoodXenoburger + name: Xenoburger + description: Smells caustic. Tastes like heresy. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 16 + - type: Sprite + sprite: Objects/Food/xburger.rsi + - type: Icon + sprite: Objects/Food/xburger.rsi + +- type: entity + parent: FoodBase + id: FoodXenoMeatbreadslice + name: Xenomeat bread (slice) + description: A slice of delicious meatbread. Extra Heretical. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 20 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/xenobreadslice.rsi + - type: Icon + sprite: Objects/Food/xenobreadslice.rsi + +#- type: entity +# parent: FoodBase +# id: FoodXenomeat +# name: Xenomeat +# description: '' +# components: +# - type: Food +# uses: 1 +# restore_amount: 1 +# - type: Sprite +# sprite: Objects/Food/xenomeat.rsi +# - type: Icon +# sprite: Objects/Food/xenomeat.rsi + +- type: entity + parent: FoodBase + id: FoodXenomeatPie + name: Xeno-pie + description: A delicious meatpie. Probably heretical. + components: + - type: Food + contents: + reagents: + - ReagentId: chem.Nutriment + Quantity: 20 + spawn_on_finish: TrashPlate + - type: Sprite + sprite: Objects/Food/xenomeatpie.rsi + - type: Icon + sprite: Objects/Food/xenomeatpie.rsi diff --git a/Resources/Prototypes/Entities/items/Consumables/food_containers.yml b/Resources/Prototypes/Entities/items/Consumables/food_containers.yml new file mode 100644 index 0000000000..ffe7dbd729 --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/food_containers.yml @@ -0,0 +1,447 @@ +- type: entity + parent: BaseItem + id: DrinkFoodContainerBase + abstract: true + components: + - type: DrinkFoodContainer + capacity: 5 + - type: Sprite + state: icon + netsync: false + - type: Icon + state: icon + +# Containers +- type: entity + parent: DrinkFoodContainerBase + name: Apple cake + id: DrinkFoodContainerAppleCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodAppleCakeSlice: 100 + spawn_on_finish: TrashTray + - type: Sprite + sprite: Objects/DrinkFoodContainers/apple_cake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/apple_cake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Banana bread + id: DrinkFoodContainerBananaBread + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodBananaBreadSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/bananabread.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/bananabread.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Birthday cake + id: DrinkFoodContainerBirthdayCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodBirthdayCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/birthdaycake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/birthdaycake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Brain cake + id: DrinkFoodContainerBrainCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodBrainCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/braincake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/braincake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Bread + id: DrinkFoodContainerBread + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodBreadSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/bread.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/bread.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Carrot cake + id: DrinkFoodContainerCarrotCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodCarrotCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/carrotcake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/carrotcake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Cheesecake + id: DrinkFoodContainerCheeseCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodCheeseCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/cheesecake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/cheesecake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Cheese wheel + id: DrinkFoodContainerCheeseWheel + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodCheeseWedge: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/apple_cake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/apple_cake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Chocolate cake + id: DrinkFoodContainerChocolateCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodChocolateCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/chocolatecake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/chocolatecake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Cream cheese bread + id: DrinkFoodContainerCreamCheeseBread + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodCreamCheeseBreadSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/creamcheesebread.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/creamcheesebread.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Donut box + id: DrinkFoodContainerDonutBox + components: + - type: DrinkFoodContainer + capacity: 6 + prototypes: + FoodDonut: 70 + FoodFrostedDonut: 30 + - type: Sprite + sprite: Objects/DrinkFoodContainers/donutbox.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/donutbox.rsi + - type: Appearance + visuals: + - type: DrinkFoodContainerVisualizer2D + mode: Discrete + base_state: donutbox + steps: 7 + +- type: entity + parent: DrinkFoodContainerBase + name: Egg box (shut) + id: DrinkFoodContainerEggBoxShut + components: + - type: DrinkFoodContainer + capacity: 1 + prototypes: + DrinkFoodContainerEggBox: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/eggbox_shut.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/eggbox_shut.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Egg box + id: DrinkFoodContainerEggBox + components: + - type: DrinkFoodContainer + capacity: 12 + prototypes: + FoodEgg: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/eggbox.rsi + state: eggbox-12 + - type: Icon + sprite: Objects/DrinkFoodContainers/eggbox.rsi + state: eggbox-12 + - type: Appearance + visuals: + - type: DrinkFoodContainerVisualizer2D + mode: Discrete + base_state: eggbox + steps: 13 + +- type: entity + parent: DrinkFoodContainerBase + name: Lemon cake + id: DrinkFoodContainerLemonCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodLemonCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/lemoncake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/lemoncake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Lime cake + id: DrinkFoodContainerLimeCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodLimeCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/limecake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/limecake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Meat bread + id: DrinkFoodContainerMeatBread + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodMeatBreadSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/meatbread.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/meatbread.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Meat pizza + id: DrinkFoodContainerMeatPizza + components: + - type: DrinkFoodContainer + capacity: 6 + prototypes: + FoodMeatPizzaSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/meatpizza.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/meatpizza.rsi + +# These two will probably get moved one day +- type: entity + parent: DrinkFoodContainerBase + name: Monkey cube box + id: DrinkFoodContainerMonkeyCubeBox + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + DrinkFoodContainerMonkeyCubeWrap: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/monkeycubebox.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/monkeycubebox.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Monkey cube wrap + id: DrinkFoodContainerMonkeyCubeWrap + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodMonkeyCube: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/monkeycubewrap.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/monkeycubewrap.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Mushroom pizza + id: DrinkFoodContainerMushroomPizza + components: + - type: DrinkFoodContainer + capacity: 6 + prototypes: + FoodMushroomPizzaSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/mushroompizza.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/mushroompizza.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Orange cake + id: DrinkFoodContainerOrangeCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodOrangeCakeSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/orangecake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/orangecake.rsi + +# TODO: Probably replace it with a stacking thing +- type: entity + parent: DrinkFoodContainerBase + name: Pizza box stack + id: DrinkFoodContainerPizzaBoxStack + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + DrinkFoodContainerPizzaBox: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/pizzaboxstack.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/pizzaboxstack.rsi + - type: Appearance + visuals: + - type: DrinkFoodContainerVisualizer2D + mode: Discrete + base_state: pizzaboxstack + steps: 5 + +- type: entity + parent: DrinkFoodContainerBase + name: Pizza box + id: DrinkFoodContainerPizzaBox + components: + - type: DrinkFoodContainer + capacity: 1 + prototypes: + DrinkFoodContainerMeatPizza: 25 + DrinkFoodContainerMargheritaPizza: 25 + DrinkFoodContainerMushroomPizza: 25 + DrinkFoodContainerVegetablePizza: 25 + - type: Sprite + sprite: Objects/DrinkFoodContainers/pizzabox_open.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/pizzabox_open.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Margherita pizza + id: DrinkFoodContainerMargheritaPizza + components: + - type: DrinkFoodContainer + capacity: 6 + prototypes: + FoodMargheritaPizzaSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/pizzamargherita.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/pizzamargherita.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Plain cake + id: DrinkFoodContainerPlainCake + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodPlainCakeSlice: 100 + spawn_on_finish: TrashTray + - type: Sprite + sprite: Objects/DrinkFoodContainers/plaincake.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/plaincake.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Pumpkin pie + id: DrinkFoodContainerPumpkinPie + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodPumpkinPieSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/pumpkinpie.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/pumpkinpie.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Tofu bread + id: DrinkFoodContainerTofuBread + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodTofuBreadSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/tofubread.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/tofubread.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Vegetable pizza + id: DrinkFoodContainerVegetablePizza + components: + - type: DrinkFoodContainer + capacity: 6 + prototypes: + FoodVegetablePizzaSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/vegetablepizza.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/vegetablepizza.rsi + +- type: entity + parent: DrinkFoodContainerBase + name: Xenomeat bread + id: DrinkFoodContainerXenomeatBread + components: + - type: DrinkFoodContainer + capacity: 5 + prototypes: + FoodXenomeatBreadSlice: 100 + - type: Sprite + sprite: Objects/DrinkFoodContainers/xenomeatbread.rsi + - type: Icon + sprite: Objects/DrinkFoodContainers/xenomeatbread.rsi diff --git a/Resources/Prototypes/Entities/items/Consumables/trash.yml b/Resources/Prototypes/Entities/items/Consumables/trash.yml new file mode 100644 index 0000000000..c7818c47ba --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/trash.yml @@ -0,0 +1,202 @@ +- type: entity + parent: BaseItem + id: TrashBase + description: This is rubbish. + abstract: true + components: + - type: Sprite + state: icon + - type: Icon + state: icon + +# Trash mountain +- type: entity + name: 4 no raisins (trash) + parent: TrashBase + id: TrashRaisins + components: + - type: Sprite + sprite: Objects/Trash/4no_raisins.rsi + - type: Icon + sprite: Objects/Trash/4no_raisins.rsi + +- type: entity + name: Candy (trash) + parent: TrashBase + id: TrashCandy + components: + - type: Sprite + sprite: Objects/Trash/candy.rsi + - type: Icon + sprite: Objects/Trash/candy.rsi + +- type: entity + name: Cheesie honkers (trash) + parent: TrashBase + id: TrashCheesieHonkers + components: + - type: Sprite + sprite: Objects/Trash/cheesie_honkers.rsi + - type: Icon + sprite: Objects/Trash/cheesie_honkers.rsi + +- type: entity + name: Chips (trash) + parent: TrashBase + id: TrashChips + components: + - type: Sprite + sprite: Objects/Trash/chips.rsi + - type: Icon + sprite: Objects/Trash/chips.rsi + +- type: entity + name: Corn cob (trash) + parent: TrashBase + id: TrashCornCob + components: + - type: Sprite + sprite: Objects/Trash/corncob.rsi + - type: Icon + sprite: Objects/Trash/corncob.rsi + +- type: entity + name: Liquid food (trash) + parent: TrashBase + id: TrashLiquidFood + components: + - type: Sprite + sprite: Objects/Trash/liquidfood.rsi + - type: Icon + sprite: Objects/Trash/liquidfood.rsi + +- type: entity + name: Pistachos pack (trash) + parent: TrashBase + id: TrashPistachiosPack + components: + - type: Sprite + sprite: Objects/Trash/pistachios_pack.rsi + - type: Icon + sprite: Objects/Trash/pistachios_pack.rsi + +- type: entity + name: Messy pizza box (trash) + parent: TrashBase + id: TrashPizzaBoxMessy + components: + - type: Sprite + sprite: Objects/Trash/pizzabox_messy.rsi + - type: Icon + sprite: Objects/Trash/pizzabox_messy.rsi + +- type: entity + name: Plastic bag (trash) + parent: TrashBase + id: TrashPlasticBag + components: + - type: Sprite + sprite: Objects/Trash/plasticbag.rsi + - type: Icon + sprite: Objects/Trash/plasticbag.rsi + +- type: entity + name: Plate (trash) + parent: TrashBase + id: TrashPlate + components: + - type: Sprite + sprite: Objects/Trash/plate.rsi + - type: Icon + sprite: Objects/Trash/plate.rsi + +- type: entity + name: Popcorn (trash) + parent: TrashBase + id: TrashPopcorn + components: + - type: Sprite + sprite: Objects/Trash/popcorn.rsi + - type: Icon + sprite: Objects/Trash/popcorn.rsi + +- type: entity + name: Semki pack (trash) + parent: TrashBase + id: TrashSemkiPack + components: + - type: Sprite + sprite: Objects/Trash/semki_pack.rsi + - type: Icon + sprite: Objects/Trash/semki_pack.rsi + +- type: entity + name: Snack bowl (trash) + parent: TrashBase + id: TrashSnackBowl + components: + - type: Sprite + sprite: Objects/Trash/snack_bowl.rsi + - type: Icon + sprite: Objects/Trash/snack_bowl.rsi + +- type: entity + name: SOS jerky (trash) + parent: TrashBase + id: TrashSOSJerky + components: + - type: Sprite + sprite: Objects/Trash/sosjerky.rsi + - type: Icon + sprite: Objects/Trash/sosjerky.rsi + +- type: entity + name: Syndi cakes (trash) + parent: TrashBase + id: TrashSyndiCakes + components: + - type: Sprite + sprite: Objects/Trash/syndi_cakes.rsi + - type: Icon + sprite: Objects/Trash/syndi_cakes.rsi + +- type: entity + name: Tasty bread (trash) + parent: TrashBase + id: TrashTastyBread + components: + - type: Sprite + sprite: Objects/Trash/tastybread.rsi + - type: Icon + sprite: Objects/Trash/tastybread.rsi + +# TODO: Container +- type: entity + name: Trash bag (trash) + parent: TrashBase + id: TrashBag + components: + - type: Sprite + sprite: Objects/Trash/trashbag.rsi + - type: Icon + sprite: Objects/Trash/trashbag.rsi + +- type: entity + name: Tray (trash) + parent: TrashBase + id: TrashTray + components: + - type: Sprite + sprite: Objects/Trash/tray.rsi + - type: Icon + sprite: Objects/Trash/tray.rsi + +- type: entity + name: Waffles (trash) + parent: TrashBase + id: TrashWaffles + components: + - type: Sprite + sprite: Objects/Trash/waffles.rsi + - type: Icon + sprite: Objects/Trash/waffles.rsi diff --git a/Resources/Prototypes/Entities/items/Consumables/trash_drinks.yml b/Resources/Prototypes/Entities/items/Consumables/trash_drinks.yml new file mode 100644 index 0000000000..2ef33d9944 --- /dev/null +++ b/Resources/Prototypes/Entities/items/Consumables/trash_drinks.yml @@ -0,0 +1,212 @@ +# These can still be used as containers +- type: entity + name: Base empty bottle + parent: BaseItem + id: DrinkBottleBase + components: + - type: Sound + - type: Sprite + state: icon + - type: Icon + state: icon + - type: Drink + despawn_empty: false + max_volume: 10 + contents: + reagents: + - ReagentId: chem.H2O + Quantity: 0 + +# Containers +- type: entity + name: Jailbreaker Verte bottle + parent: DrinkBottleBase + id: DrinkBottleAbsinthe + components: + - type: Sprite + sprite: Objects/TrashDrinks/absinthebottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/absinthebottle_empty.rsi + +- type: entity + name: Alcohol bottle + parent: DrinkBottleBase + id: DrinkBottleAlcoClear + components: + - type: Sprite + sprite: Objects/TrashDrinks/alco-clear.rsi + - type: Icon + sprite: Objects/TrashDrinks/alco-clear.rsi + +- type: entity + name: Ale bottle + parent: DrinkBottleBase + id: DrinkBottleAle + components: + - type: Sprite + sprite: Objects/TrashDrinks/alebottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/alebottle_empty.rsi + +- type: entity + name: Beer bottle + parent: DrinkBottleBase + id: DrinkBottleBeer + components: + - type: Sprite + sprite: Objects/TrashDrinks/beer_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/beer_empty.rsi + +- type: entity + name: Broken bottle + parent: DrinkBottleBase # Can't hold liquids + id: DrinkBrokenBottle + components: + - type: Sprite + sprite: Objects/TrashDrinks/broken_bottle.rsi + - type: Icon + sprite: Objects/TrashDrinks/broken_bottle.rsi + +- type: entity + name: Cognac bottle + parent: DrinkBottleBase + id: DrinkBottleCognac + components: + - type: Sprite + sprite: Objects/TrashDrinks/cognacbottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/cognacbottle_empty.rsi + +- type: entity + name: Griffeater gin bottle + parent: DrinkBottleBase + id: DrinkBottleGin + components: + - type: Sprite + sprite: Objects/TrashDrinks/ginbottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/ginbottle_empty.rsi + +# Couldn't think of a nice place to put this +- type: entity + name: Empty glass + parent: DrinkBottleBase + id: DrinkEmptyGlass + components: + - type: Sprite + sprite: Objects/TrashDrinks/alebottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/alebottle_empty.rsi + - type: Solution + max_volume: 4 + +- type: entity + name: Goldschlager bottle + parent: DrinkBottleBase + id: DrinkBottleGoldschlager + components: + - type: Sprite + sprite: Objects/TrashDrinks/goldschlagerbottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/goldschlagerbottle_empty.rsi + +- type: entity + name: Kahlua bottle + parent: DrinkBottleBase + id: DrinkBottleKahlua + components: + - type: Sprite + sprite: Objects/TrashDrinks/kahluabottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/kahluabottle_empty.rsi + +- type: entity + name: NT Cahors bottle + parent: DrinkBottleBase + id: DrinkBottleNTCahors + components: + - type: Sprite + sprite: Objects/TrashDrinks/ntcahors_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/ntcahors_empty.rsi + +- type: entity + name: Patron bottle + parent: DrinkBottleBase + id: DrinkBottlePatron + components: + - type: Sprite + sprite: Objects/TrashDrinks/patronbottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/patronbottle_empty.rsi + +- type: entity + name: Poison wine bottle + parent: DrinkBottleBase + id: DrinkBottlePoisonWine + components: + - type: Sprite + sprite: Objects/TrashDrinks/pwinebottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/pwinebottle_empty.rsi + +- type: entity + name: Rum bottle + parent: DrinkBottleBase + id: DrinkBottleRum + components: + - type: Sprite + sprite: Objects/TrashDrinks/rumbottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/rumbottle_empty.rsi + +- type: entity + name: Tequila bottle + parent: DrinkBottleBase + id: DrinkBottleTequila + components: + - type: Sprite + sprite: Objects/TrashDrinks/tequillabottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/tequillabottle_empty.rsi + +- type: entity + name: Vermouth bottle + parent: DrinkBottleBase + id: DrinkBottleVermouth + components: + - type: Sprite + sprite: Objects/TrashDrinks/vermouthbottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/vermouthbottle_empty.rsi + +- type: entity + name: Vodka bottle + parent: DrinkBottleBase + id: DrinkBottleVodka + components: + - type: Sprite + sprite: Objects/TrashDrinks/vodkabottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/vodkabottle_empty.rsi + +- type: entity + name: Whiskey bottle + parent: DrinkBottleBase + id: DrinkBottleWhiskey + components: + - type: Sprite + sprite: Objects/TrashDrinks/whiskeybottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/whiskeybottle_empty.rsi + +- type: entity + name: Wine bottle + parent: DrinkBottleBase + id: DrinkBottleWine + components: + - type: Sprite + sprite: Objects/TrashDrinks/winebottle_empty.rsi + - type: Icon + sprite: Objects/TrashDrinks/winebottle_empty.rsi diff --git a/Resources/Prototypes/Entities/mobs/human.yml b/Resources/Prototypes/Entities/mobs/human.yml index 8be4fcd21b..88afb8dacc 100644 --- a/Resources/Prototypes/Entities/mobs/human.yml +++ b/Resources/Prototypes/Entities/mobs/human.yml @@ -8,6 +8,11 @@ hands: - left - right + - type: Hunger + - type: Thirst + # Organs + - type: Stomach + - type: Inventory - type: Constructor - type: Clickable diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 97271e737d..f12ac1cdaa 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -1,3 +1,8 @@ +- type: reagent + id: chem.Nutriment + name: Nutriment + desc: Generic nutrition + - type: reagent id: chem.H2SO4 name: Sulfuric Acid diff --git a/Resources/Textures/Mob/UI/Hunger/Dead.png b/Resources/Textures/Mob/UI/Hunger/Dead.png new file mode 100644 index 0000000000000000000000000000000000000000..6879bd394fd6dc3f84de4bc3b3403d4a5612aa4e GIT binary patch literal 97 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;m;-!5Tn`*LkmkKF1;}MA3GxeO qaCmkj4ani~ba4#fn3MQvT<2TgaduqTZMlnaFSp070~!qc{t{=7 zxW(HnQ{Uq%aWRc!XTOS|P^$%VqF(5-bNh}6zneEpwC?F;r3c$5U#NdHXIekY@(BKY Rg+Ny^c)I$ztaD0e0sydyWC#EN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mob/UI/Hunger/Peckish.png b/Resources/Textures/Mob/UI/Hunger/Peckish.png new file mode 100644 index 0000000000000000000000000000000000000000..1c72e568110b462bcb6379bdd695cc9ab3a5e729 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdt_Kbr2#;gvoyl-!JA;M< z!<-C;lM@(94Hz;S7#PlI9A3l28zFh}2SW|RLR|%3hBP1}Aoks*8lZN@k|4ie28U-i z(tw;UPZ!4!i{7^r9Qh6#aIhrLKGN{|(f|Es6V%KdY`$j%4 ztz5hH$c~D%8pQ@xF^00Ui~=9IZ-3%_Az$Uv#&y2+9cRad-Ilu;_i}sOI-tS8?=NxY zh+DkPGW9*K5*O1rcJ`|X3bk4=C+dYRJGbwM@Vj}lMC+bjR(h~~@`d_GbEfsPERW#d RR|s?!gQu&X%Q~loCIF7^WjFu; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mob/UI/Hunger/Starving.png b/Resources/Textures/Mob/UI/Hunger/Starving.png new file mode 100644 index 0000000000000000000000000000000000000000..29d8b5eb0af83eaefbed4f647a96aeaa5f6d1957 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dy#sNMdt_Kbrh|^=3>CJG)fk8up zVNM3a$q5Xl1`HVu3=C&94zJLAR32NpJw%;y@J~C2%@^#zaI4@1h^;^^2 zR<7N8WJg6>jbekU7(>}vMuCsqw?FZ|kgsxS<2v8^j zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ulI$i7{Ld+J1SBB@#{mOXxj~Mf7WT~U%x*Ss zKPpwJdS=H08AQ_!vNz1X{#@Y?TpUXdNv-6XbHtTus@za1@w`q;G41=l_Me}i9N23WfM{m~!nxZ;#65XFb7#b@^VxIkWkgik+R?NF})Ex%gM_2c6T zdt261I~m9rig?0-r;x;b=W`|j3aQdy{mw$@=%v9=xF^xK{DnJp?+|#eJ@FTB$mE5N zGtg~W`H82?Px|DS`!xK3i1>;_K@be`}4h);w3&682F|`C8O%DZ7S_9dybb zmQf5pMcsC(C?&RdK(&FT_7FQ7l^BdKN;Ig^qPgus2OuV%Y_QA+cz0hB6TTFbXNQ7m_^fQx;90fsB* zcl3fFv@T9{^Go40@%eIL1q$k>xnO}U_A^9Rdf8jDb(W|BT~j>I3)#2=fFjJT0E4}p zC}t9+OwpK)2s{?((}0{Mafbq=L3scrCy@+s3j5p`W3>CS^65r;@uMMG4AS7}K&+HB zWt_KyE!2XFCRNR9TC{4*l2g{4vt`dy&BT(aWiu;QtraP$XvxJ&DYdl9RglIs)LgBW zT5D^Vw55hv4gDJ&oxAkZwdZcV^xE5j?Q^6?Za%sSh`UR$!#(v_F3vg&Gg)h<;ZReM(MW7X(Vjki$V&t6o6+w2yCJe{a(2E{lL z6gO7@8=76SSSTfSd~zX`u$!-pNLbhVy_ zTYS*=rdD}a8*0dgkq%YTwh|tOoOWH0IsDV?=)-gy3>;BCqWZV%zuEAs9WSesht45x z0cp;vqhjV6&Nbu+z*vG-e@d!IoaRGjclreXAMk?H&HH?Y?-2YL=!wulLpw-98h1WH zcmr)UIcPjK)roh?Akgh#XEmLK^@R`6e#(YVsxP1qG&|8p+tl_p(3!$!c8rZVn}f~u zE1MvEO8hsQU`g9p%Ltpxql@AViT@dv!#(eNf6j3Y1v+5gXAx=OZB7Y4k!J6KWLom9 z)JHqh5oM&KTca-6)nY5JQ`2)M2|tjEeh2zb0xf)WRh<040f2DbM7(@o761SNg=s@W zP)S2WAaHVTW@&6?004NLeUUv#!$25@-=>N`R2|G9;*g;_Sr8R*lqwd%LTM|s>R@u| zA2ex5Qd}Gb*MfsTi&X~~XI&j!1wrr!#KqM~(M3x9E-AE#@!;+r-uvE{yYB#@US^ur zF#%}0Z6;$;DU)55x?a%(5&g7=Wo8-i)M6UGu?K@}yGVIxAjPKt#jokxBA!>&I; zE`?krFmf!Q0u8e32mgcLy|waFlU`CN3Ut0W&c`UwwF@+Aj`Mx&IE@n^_zYa>Eq|pB z%zlzyYiZ#lU|<`#xNd369&ot>3_TgLDZ5gTrjXAA?`QN)Szz!M=w0*r);!1Q1CXX( zE#CkKhrn2Yve$jy-QC`|e`}ik`vGICa-j=2JoEqn00v@9M??Vs0RI60puMM)00009 za7bBm001r{001r{0eGc9b^rhX2XskIMF-;v6b=h7%+#o@00046Nkl(P-4Y2e#X-Y5%jP(;kvFV tR8 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cmgP1G{MRb71PcU6%R#SmvV$x?h3$KL`jJWZ zOn>FX?zU`Q836?aPV28fclrYdaidhksy5XFM`@*zrvOe-Z3vPFIc(f`|J5+mdqMm1s7;vK)6wzJGQp2KmprrQo!2>zJfLEsMTU`R!0$0v*{IPt zK`C+OO_qSneE-y ziz2?DMj#hgtO5#o-#(Sozd2pQ@%9K{8L-Le<_ZJ-=$D8t`6aga#F-CCSXz!NU$V_x z09=H<1+-DrE8DBsX}7tuDV0-6iDJ3A?4S zDW|R(Z&YNa!wyHL_F)j5ed}C;ms%}*g90{ooSSBc51-?YRZQhrF0h<~?x;h?u?jCmXH&sZL&Dio*S_h9E8ai+d^)}~rk^eVUG{zr zm@t9o$K(Zy-Mer{z!vX5eRNN?79WNp0^Wvp3hoCMx~fk*!JKWkCJ^0C+7=kV+5Lh&==76U=2;J5DGhy86$L>8A^1*hFDGhZ6oabPSF{aRF&rrbH|qvm}?{ zR#1V~G$52w@j6OTq+9KX0|f7|)+S(8ls;FKNaV5=NF^B?_MFD07#51!LOJ~%8`I|& z{)>%nlGFvMCC$)dv<#D}>GUdQGi;aajv6eos?Lf2S`f}qR!YQks|bGI9VInQ?vdc| zo482p0(&b`bF3WOZ|x(f0e8rSJ8oBIc;hv{q;KHa9_f(AHCFh!;7fqZ?m5EnSc^KX zE(CoBf^g>Muw@3U6Frj8b~d!!jPufDf`|pfS@?s|>u7d?^#fd_06nfIAl)_xe&s&S z1nOfWZ+ka~%Nv(yk;_5c6@g=s@WP)S2WAaHVTW@&6?004NLeUUv#!$25@-=>N`R2|G9;*g;_ zSr8R*lqwd%LTM|s>R@u|A2ex5Qd}Gb*MfsTi&X~~XI&j!1wrr!#KqM~(M3x9E-AE# z@!;+r-uvE{yYB#@US^urF#%}0Z6;$;DU)55x?a%(5&g7=Wo8-i)M6UGu?K@}yG zVIxAjPKt#jokxBA!>&I;E`?krFmf!Q0u8e32mgcLy|waFlU`CN3Ut0W&c`UwwF@+A zj`Mx&IE@n^_zYa>Eq|pB%zlzyYiZ#lU|<`#xNd369&ot>3_TgLDZ5gTrjXAA?`QN) zSzz!M=w0*r);!1Q1CXX(E#CkKhrn2Yve$jy-QC`|e`}ik`vGICa-j=2JoEqn00v@9 zM??Vs0RI60puMM)00009a7bBm001r{001r{0eGc9b^rhX2XskIMF-;v6b=e9w#oH1 z0004UNklKWoB37{;HJ8Z?5zAz-FL11=#$aHxYzL9&Qj7ne>B{T8)rq2C~T zmf})e4#%w0Ap}~XLb2i?4i~5p6|Reh+D@^}Wy!le4;=50yZ6rtFPerl;{+*329N<{ z0I36<9&^Z{l>PKNvMg``a42ORSw_(?4gm;ZwyMU45aNtthf-E66i^jKIFtea_PS^o z=n#Uq5V32(tkt5#-{W~SO1=iB+bwL@MYqv_3BcU>pPq;N=j;ds67IYDsn_WR^s7-Gd(FVSTL0NwfgwknEIqL1AztQhOrs(P0= hK=vie05X98jxWbtc-&;x$;$u$002ovPDHLkV1j8efS>>X literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mob/UI/Thirst/Thirsty.png b/Resources/Textures/Mob/UI/Thirst/Thirsty.png new file mode 100644 index 0000000000000000000000000000000000000000..bed9947f902ba0fe41b38205df14874802b0663a GIT binary patch literal 2447 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 N002ovPDHLkV1lu0l@$O0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ed79bdae6cee058c9344a8dd196b81a95e152f9a GIT binary patch literal 945 zcmV;i15W&jP)orNw;$$^$vm4e<*jm_|4OE!32)^0g3`WX8K{gfNIDO#@ebbjy zrs#&O6b3R83PYpn=w*RR0pODp2Bd+$gQ0|U@^9>f)SxEPByo1G>E zD9$-oHMsqYmE5L7KjQwj%|h8`;OEQdD&*NHjP=5=UqQ#~G6PksT%D$BC_xcdQd?^JPi}3h+QcR#kYAnL+PY@ZE*?#@G zOybG?7P*b1WVRNh`frKT;p3crBTx5kKlmzd1lcG&@uJMiAFAzV+2;?zU*E|D%C^yj^Zq^M8aEfUNShDpvE|0iq;XbSiT+QVjt T+ra%900000NkvXXu0mjfi;2Z& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/meta.json new file mode 100644 index 0000000000..e76eafc94d --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/apple_cake.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", + "states": [ + { + "name": "icon", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/bananabread.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/bananabread.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..49696a7726e43e018cffd5ac10d31a64f60a7710 GIT binary patch literal 767 zcmV6dnk#$N!o5Nx`!SJ=jPsA~uNRln4M=THe9@G>7Drh^6HnJkKU94*=T7WzRnW zF!2l-;RQ<6?o9~smKP)8Q5=^Q3pT$k;da=IgK`4}S;ym94v^lsLO8Y{r=`io1;MXc z3#_QyVBb(2f+m`cQ|a9%6NU4+U9AC@P>J>sVYENA6P{p}DNA*{AOK+P?Fr_mITU2w66$27N(0aCe5L>#TfqBSN}O%! zfMr^jIL28~sn(hR;3~ejFmAOcVuJvH2=8@3vG$IlqFbwD8Ng`L-UPC*%x?K@$!eQm zrAh+`(erv1qL{$JXkPliHA=LLQ2^~>0{|h);ZUt3CUB4s>)?hN2+>wfsK*9^J_e>UAC*Y_L~ObBk6K`=0c>gl;PR;@J=;n}Vt?GbQ;9dMg$CRaOzDIN?AbrrGq zn{b`xIFhho5O`S+Qih6+O(2m7P~#h$Kaet16xqwK$u80!k#^w-?~tPbl9OS)|5C=I zln+HkM`~0Bw&+rw!ev$bx_{vsR=3rjo&UzY*(hL3WXD;s!#pARZ)MvH4T`>3;@K_2 xvq(;ck!ZeloCh6G!>h9Y`-h|t&t)GAnQ0+k_&cb%iDJr%n{=?yIt>R*cawEJe(;Ak+X58}f> zh63#GE;_Dp+E*9}A_9oM_}ao6=!z`>^bm-^CUnikB^T}tjKnJ5d$}!gjlm`Fqfh`@ zqVK-Kt{i!1C{Z|#bM^floW>uXNeB0iPoqzPVuRan`*Kh?EH+A(&p3)}tB1#q0+3VF zicJ<9M;TeqlP&jO2VT$5j|RwS8tr0nBvhE%K4W*xXd0ACj{|J3TsuYUfi%@>@iCPW zYucCq!+^EpV?N#A3y-sJtKu|x0IX({lTL^CQet;~-2*a-+6!B!!>FoKGEGvgmYBP^xBy@|7JJfo zP^(cmKWD2@pk$gvRW%%7DVZdys$}bR_R3{S-EIJ6lF`lIE0=}2G56NEHfWJOlVI0Dc2SW*=zM#qFQ~0000F>D~({Af`BfOj`zmz>on+poTw~wyDhMX8y<}TM~x4)>undT(7#-Tw66u z9kyiEv@u<-^-m@$AtJ)PA_AL^xzbrG7eoc&o_o%D`vdNc>%Euwqeg%D{B?HrywCUZ ze4lg9`yO%U;2lOYlu=cG0`PwTFpV_PZp)P;&9&L9#lHeDRJ6FjO7fC5+&=#k_fK6w z0*N2)2Ebw8PUfNgw0u(@uY zHX)`)@$AwUacde0WqW8WDgh}`r9o>|CE@eaun2|NCD~YnLSMCmxP`9-g?sR;GbDsE zRJ^#r3P58~35`W1xT@-qbuAzz;q%jIt*Rs}Cza%Ng(NLrjYTLtvt|RSj+h*YSy5=;{0<0# zSy7O;9t4F0kaaC2FMbVx8;(z9P=MTBpHN*^iv05-rrH*AzB)+C8%3DTUqP83!|fB5 zgqcjZ&o^^*%e(YtCvn%)PfJBPeJ><|lsMkrhENoGvl4N9y&vh(2s4>{jTGju;_#0r zf;&)MR!VqwYRK-USl7~D(}YDRB$VyJt!aKE@!F4+1EU*stG}kn=b-m~P=MoIzmxUS zhLGJg7L^cVvJhjk1c->qkpUoHw_;2dlo{i>zO9ssj`q+1%VMT->6atJb~kqMTs(#m zAkuo|Fei)NLbpiY8n0V%2R}#N?B<@PvN1L;G=Mj@mRLz&_B!SZZQMA1l$PBeVANhF zId2WBuAxdJKqPs|YMu*^!aVtDu5T+vnK9nymb}@G!@ix0j&|yMIzj_Xn3s;KYvhlg zj`Qd5P^CdfRUN7{h{(;L{p@j6UB@Gh01<>B?!adtB_6{7DSd8j-SR5x+(gzdUqO6$ zv>$-qr?|7$i9`Sc^R4J;r}$+n_iLQoJyY+?%eH+?+v!S-8~2#GV<&B=D{<_6AK>p9 zuUblB{wiE*FYA}D#8vC?)eZ?@&P<}`Vhd4oQ|NSDW!>@>xOI)AuIs*>jj?e!ckKXR z+YiS8D9m5QZ|)wV=BBXlVh;d!JbiT5I8ddITl4tU=F}g-0aRVXl97n3zM1H!%(%`u z341u4Jk7YHO1veIzt9v(Kf1<05*HI zsC#&q$jlV(X)3qtoABr!%yZ)LNCVTHc-+#!t?QWP#G@Jp-Hz6fIUYmDoR)|sEdf>2 zY3%I`I2QyQNNo0M;oY%jM~p+&b$XkxApp4);T+39Ai>v`GmaJ0N$!&QfKj~`5I$VXW^)C@M|iR#;^dPU`7%nJ(!Ld;J=Dd g|1Wp~FzNt*0dMrxOS^UlV*mgE07*qoM6N<$g1!Wl(f|Me literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/braincake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/braincake.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/braincake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/bread.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/bread.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9a8f900c007c83d0ecc7c2186930d3ef6ffe89e0 GIT binary patch literal 736 zcmV<60w4W}P)NUE?bCbOqf4rV8INd zR62){G>DkW9%>5(iaw1OPSPBDZtwYi?zyMEc#7|f^wYe3RUZHh00sa90N`1#!JXYi zV{KLfAeAe#HY<_Jl@V2q#T6ODFY#?JOYjyJS7f%2G&bg&-tbF!UVQZQ((t%_iVLTk z4J9DpyD0-OIwn!nVO)eyKbjB#+eex!1i<~|S67IxThRFXwlOJG85hCuOAhg(4qHnS zx*~J1uVMHlUd~PP`pp~w8}nv-eRYn5eT`(n%=ct~o!vyk5(ZE!b%(bg)@DtJWquc zIi+FjzDVWD#6uve=E~zCNEVv+-74V#NEUFcb|#jC(5mB_iREmFttGQcqN<@QvMr=5 zvLl~$|7|b(_!bm(SPlzR!Y2?~Mc49X5-o53et-b8LY9C9VOc!X%qglG079@i?h0V7 z-Vzn%i0!RdyVXlhae#w;t(oUxtX|S+w?{ujzL6@T9I^dVt(T}PKx^3m0#jpD&i>#V zsbbWg6A-QmOpO8X<#U$hus~kD>nYH!?5+S-({zIf2-oP|VZ{4edn|oXC!!4X6ltwM zH&}1Chppyng|NhR?{H6%_P7P-_Dn|)ln#FbP|HLyPLC1qZ|w`fI6bD8i4t6xw&%2p zv-VvcwwB7c8-LSbH>xg$8 zMnBW<8dsNxj#ys3bI?E5crf~Aai00>#1U@6u}Ve0s@W*p&cqsoJNlzm^k#n zq-qE_Q2|n=LB*+IV?tXaSb#;OUDIq*4#p9$5?WckCg$+sEUulblP2|&|HaRKpTGa_ z`=0&mkolR(ek#1L?p=T`KoG4#4L6qGvvm%+Oz}u-y}9)BKCj zZ*PYl2|(Y#lw+q}BceZrxxNVG0*%ckP!8Rg!Q_IY6u;))){h-QLhW`!XXuQhRIW3S zKI^Nt)x6ytfSxcASLU(f6NJ`23$2Kol3oJcZ*9iIp^h$J(BTn2aS)13{>at=E_ zfo{yuH!$S{h50(*44rY@%63=in)TNznC099JJ2dUVPKYXzE1c$u-n`q4*FnY$Cf&WXDYK=%Ek zh?RvV$hKH(jytK{8>3hyvY))?@dyOC{{1`v<9Z!L0rBamToQE%s#&&s;^+w@aLpsh z40=pMk7*v`tuI~zQII)XJY0Ep!ds;hPrE07S0NUK;w40J6#LklD61c^rH){0gXqQ# zRI{*k3jlL{5ydKjD8TSEzkGC3n#Q6sSBr;{Y}0}Csng6|8zXOqL63ntA`_(2D61E- zho_sdV(A^k$^zoXRm6>}&Fl8?G|K8l#?!~-z3K?)G4f`ZxocyjPo4I3zyqL0HD=Gx zbMA5qtg5U=9RX30iLDa0HhABxF}AhA=A2@cBxuXMSXItlPBD9a9yO|Y0DL>)&Wry! zqH6K($(K2MqQdx54I-)g30urPrj4U)Pa}4-Nd9+=*&pJ}efu41RHJw4@lZzqSJrd4 zo#OJBeE!uklP`?&?9Kw?V^4Y@0woIM|M-VrdtYVwr$2e?^+{5bZ=kIl3j7$g1!(O? z>B={R`yOL$^(IG>hY0ud5>fvp9F{rjb%#xHka}&0o9nk38a_h(-dzTteMQYTy3}y8vB){{hZjoJpVyPX7P^002ovPDHLkV1hwnxs?C_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/carrotcake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/carrotcake.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/carrotcake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/cheesecake.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/cheesecake.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..870796109a132af6ae1a5156087da519db823403 GIT binary patch literal 904 zcmV;319$w1P)kj{HIbIRkB@3Wo1c%OovbiG@(NwWb07q(4|YD&`EoT?w$gnQ-);g zU`QckN*xUb;h}01x3eecgjikI-GRUS*KVj1uy!-f$qKE`+YyZpWeMY zsqsUDv((&~y3YV+05bqUo;J|V6-D!?MRfHd5lst>d1aay`!6{EZXD&ekEQ)0Z!t?=H(RkUaffOzTxt@^GnR*S}nXc~rT(#bp(@tArlh&1UWv~xuv;;SsBGIZL( zF{W|s0fiTmfpMmBjMUnn2oksl>|9Z3D{E-c7%%G;Z(M}t2&*cDWF%Q3viJ^?tRTq> z9YcqZj0m|Y!>S6vQYwSCvWA^2im3nw=0Z{cP@^$KKcVCZUg}4PUKgip`!3PzBAgzQ zBM2`fdEMLo&z;iPQxEEXzU&f!c35;LQzNBoIPiwHq#& zZG-IQI;YK}rB_bxz^Kf>|3W{p(MF}$cTxMT9+hPr51G0)03FK;%rOQ~E^HEBNFqs+ zuUa73EFkg8b&@0@fW2qWP6t>IZBZ_4a#Y=$%4|?=5ZvG|I;!rmU)p9pwDo2H>!u|J z5S_M8>#zoZ9@)B1>t6F7Qi62Wr3SLKdtQtwyJK3dJZ5gDvm}~j-@T`1iSK{8#Ky*L*clG{j$-Sk zC3IaUpU?B%N56CRt8atLd`s;-xYIY^AdyI*K32WmGWISw332^O5_A2F|75KF`Xhzs zjfv)g00SLdJrI@cN8H`~*#lvIp^^E(1ux^ eCY%Ax0R9DNWq~?g>^6A-0000-V-I^f}P!WkG%EW8%C>=UfeS*FK88T&wK%!Dwsgc^H zNbrTw;BX_%KBftHEnT$t2*!!e% zZ4>6S59j+AE(muEb`I-Ya{#O+6%n$q(`BSyzIGD<>>SqJ(5Q8m?`| z0#L(&B&H%ELI9m_*T|QS|CryM2BryvcyeunZ!V=k4F`ht6I541YeE2*4T{diiFc6h zPC?QD2!If~8-O8#xcn8U;UJe!fl@C4sw=o`(0Bkv&O&PI=rrFVSFFOd7UnC@a!_>U znNG&uEs1!zwi#%tj8I`2O5t=1OMD1>jyp{tx_Wi!!9Piow^8 zHzhhttIMEp0F(g$PZl%Tq6`IUpx0j~;F}AE3R{%94M3s~hb_v1UWovjS6YDDHx~?* z@8WXr7XW}@1QTdpY4HHHN{cK*#3ryp%L#N<6SYb!6c=|3YLyo0s%EkTV&qSLuz!~P zSpWbB`)4eP$0pF%=8=>8ihLSA)ThsHT>m23Eo9Kw=Ik|KqOTG5c~>*g=(cPyica1003PxP$=e5t<;fBM{(oM_kf?cfwL~6=P%P% zJ`?uKQ!qtkc=}iyNTe@;S~+VeDg%M*ngO7jv7)kpz=D@gOJSrG|?@t(>)JZCAj{>`L_WbCPx{;c7zrfkco2=mmBHdV!LU zy$pktbB$r4m=pFpyB)}KN&qEbMP>YFCr03OZcy1=3REj~6pA@)Z#Vft8ogGhmoX7> zX4fSX1~kLwP0&EQX`>6(GLcn~+Q z&hkBtu${ae18|g}vDM&f8bL(`)=HbmXS#t%4Jy&a@nZnM`sum#ulqvA-55;3xSs7{ z3MFXgo7S@j_i^Q~hS>=T(#dZm(^1bca;o6;qqVLXFhddSADQ?zmd4WZ3Svr%mq6@+ z1!n#F*#?pD>hkm4hUBZLjDt_j#2}Tz-aR0d!hxxo7?ze-uyHsEMP)EU5g}X3%BcYD z?N2ilfub^O98P+IyA-fnJKwa_>MGv6{fOeNYiL#8xfJQAj-oOoiuX|Y^aYO|-bSXd zD9G-M0MILmT3v+{x`4)31M`>W0RYp}M}qIc!2|$sAM@l7GKEFYtbG%3lJVtuYJ)%p lzyBTZyf*Z2!V!THfq&!QfC(Ef%B=tZ002ovPDHLkV1fb|X3zit literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/chocolatecake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/chocolatecake.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/chocolatecake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4f90c75a6888d7c8389235304f1d667306ccc64e GIT binary patch literal 917 zcmV;G18V$`0%mGY?NW z{mjEta@^GpL{oMnjX=FR5ZUau#bOboDDyBzQ`cc~ z%-glM_jPSm!3}690=irAi=sAZN7{vG_ z!Sb3H!m|ZS3uo-`;tj~n%Ynj%>MIb2(S{fpWY?q)7W{SZE?6KYGN6MP7<9bRl|cNO zA<{YI*$yQGk5W=r)T+o2djtdLzP5^LLy(b0;?ZA!6;O#OaMCX@__iHs@^ zq-QkJzps&=(RjYTE+>|CIj3Sy@Qzkh%%`9JaZ1U6<~abam8WMkl9%To4*UkhA>I2C z$rB+c>lhzeWLLZ)oCW1JeZAYfuVEc zO1wI36#mvrw~Iw~2{N!{;6V_a79|S2QRDl?-H8ioU`9tak2ylw#NBJ05<1 zQhFniMu6Tes95sz56Ile`9gelRD<@t&}@;nRy{#$_qn!T7eLv9!Ul=;WzxOV9*8>+ zOgX2lb5K9v5%}L3a3)p@Py1e3%fJ4^5g+Y-#-%TgD0QHbK($cSo96(G)f)oD0Yv_ z)B|F%h;dlwm-#=veJLWg{&Tt-)CuiBcX5e|p>@^};X z$8S18-9mmMwPJ&xwlh3k03a9)qG=kYX;LbcxN`i8a~b)554b_zhWQCM1gHhkwE7oL rBP*3kb%kFG;9c1J{Z+gJ@Gk6MNp$IcAu}T500000NkvXXu0mjfG}x>w literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/creamcheesebread.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-0.png b/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-0.png new file mode 100644 index 0000000000000000000000000000000000000000..478eb2e5606369ad8c04906d790449abbfbe4497 GIT binary patch literal 356 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-2.png b/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-2.png new file mode 100644 index 0000000000000000000000000000000000000000..a5810dbe92ae9c0c18a540c54714d1d8df13a056 GIT binary patch literal 2522 zcmV<02_^Q4P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ua_lM&{m&|934joSEluQlRVdg*yUXz}`8ZHndG&oAGP(0>{a zj|Uk;gqE&u)qDQHIKRIjA^>AE^id93DN#K4e62*Vf;tVfeos{MH9Clh&%OPMUwA&4M=PmFbK%lHBt; zq!hoBWeH$rQv)jt%n^q3!gM46a*x-osQZYHb`xYIZDRRKn60dkkvTp@| z2x~KpNdyLBO~k3DC^<_?z_Ed!0n0O$Ji$QXz7wN|N~r-qOeVW}e0q|0d3O5;|WwAOkX zJ$FJHOE+uz5asjaoiz-Lys1c@ zPS`mEW4RF!w8OpRl&aNw;(e@+btR$dH8aQ>|^}HmpVy*zU3)QQvRFPha@w zDzdKHhLVkK9lmC)rufT9F&zcRGAWGFX*mLSF%e6ot%Q-M%7mixYLqS0=CszWWKL|f zcPg^0twuVx?Tt9Gksga;RJ5e z`B@u2eNYj5y4^Zn(xx_?jx=@ITCi&_xTy}6I@{7ndtryc;)1z%?|)9?{V(7v4lN@y;rOctFsH39mB#dd^h#qG>g-`naae-9q}`7( zRL6oqgGFogOYnkLhpY+u+vVC=Ab)W7@TvEMugRYIPD(mLMfo@SwwC-+zWi>^sCJ3r zYwrgoetLrAfn6-Ht{J_Ga~Y8^P&Nq8^pLcn)=1ltIq;~!Lt;}WPTBKP&JYmi86NGY zvbzw<)orj%48Y@~WCeVb#f$3&Cme>N2|2}2})gKhrjwckqT$uz#{tUnG=P~kS@&js~)Om~Hl55+HP04X-EICo4xeeZaMf}BY_=@<8btIk- z^dmzkbfFCNNyGK_@Uioke%zVi`$8;OK{XyJcZTKYaGvXc4IvzXS?4XEr z?0v+i{MrkDdiaxGxVq78Aij-3?(VH1+C`&yF>xQnNgNw7S4z7YA_yOYL>ZIr*CH^ld zw21ZKxF7HCJ?`ECLaoG9vtt5KHOojuBVszUD*9g0jXwA>f_{madMvq^Lfi3m4-a4O z!aS?}xj#pbk~JCN5sBxRZdk+{#50?g&Uv3W$O@7|d`>)W&;^Mfxh}i>#yRh>z%zqJ zDltzSBo^~6EVnQ#7%K5JaY#`$$`{fuE1b7DtECES+>^gBkkwX_T&FpVD3%aI93o^? zP(%q9!nA6nm`Komq>X>b@yE#}ldA|ujs=vVLUR1zfAG6oGdDHqCIuou=ZkHBi~_!0 zpkB4@?_=App8(!x;7V)y%Qay3lk{p+3mpNy+rY(jQ0Y zqi@Op1Gj*G&F!tRkJASrMO`i500)P_Se~-i+q}E0wYPuIH2V7iVK{Q2chkya00006 zVoOIv0RI600RN!9r;`8x010qNS#tmYE+YT{E+YYWr9XB6000McNliru;|UN7BPfT4 ztS*D)K+rvl zkRA@LgL6Acpgn|85uxeeVx=HL9D>oIO_NJ)2J=DS<#G4!=6`(`jNOCiXzM8%e<4 zK)}sDFrEWf1B&zO+tdUM!^lyBwslhAex41Lq!)r_Zg@*qQGfjSr#-+%O^ypX)g53vK-r< z=l$I@+^N+T`hOp~Y|YzjmS2d5qtQ}g-(Qw}T(cl;u(g(eQVPacuHcNZNI_ei8Bi3Z kxLHuXic10|fqz5b3pD?Cxn909DgXcg07*qoM6N<$f=oow`Tzg` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-3.png b/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-3.png new file mode 100644 index 0000000000000000000000000000000000000000..78c3319ace9d5991c5c25521d5052fb13a77eb0c GIT binary patch literal 2650 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-4.png b/Resources/Textures/Objects/DrinkFoodContainers/donutbox.rsi/donutbox-4.png new file mode 100644 index 0000000000000000000000000000000000000000..19d7fbd9db7e1c15bb9112b397b89a87be661084 GIT binary patch literal 2753 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 Eg3CI#=Kufz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-3.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-3.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d051cabac90701e6c21bbb30d300b3fec2d8d3 GIT binary patch literal 413 zcmV;O0b>4%P)e!R);g14G8hQmANzgqp3w z43(|?jY}$F=;E7lcH;YN|FImb9#%M|&Q6-{0X%>Q@Bkjb0|02*8u^kd*Fp3CJU9w~ zFS!~F2CnnL1y?qRpn4zB;c1#W2k3UY5JJ>ef~-K6We`F*4+nre&yi&r(5LMLfHAgv z>5s%1tF;CDSF+Lb$aw*3Ep8S+*TB=qkJRBr|(ouZh>^iEZXuqzGp(Gi9T6B`GDQ*Hco2WD9z6 zY-pvFh@y!2^LG1J{rlm7XE-) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-4.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-4.png new file mode 100644 index 0000000000000000000000000000000000000000..8959a9d9648cf64cb998040954c354923a9acf01 GIT binary patch literal 442 zcmV;r0Y(0aP)UMLhy=Ods2*FiXw_W=t<8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-5.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-5.png new file mode 100644 index 0000000000000000000000000000000000000000..3582ecc62f013f0a0cfb0b92bd7a2b3bef39e108 GIT binary patch literal 437 zcmV;m0ZRUfP)qCX19aS~(3WJ^}Lttcq<1pKIXq?IP1W3`3Y^>Q6J(d=$q^C)qXd zDFlcp)|O>qFc>J)jIjie^bkenXQu}M5O1DUN5qQQF^XwZIqy5rHv=@^U%*3IJe5JjLI>|BU_8d#pc(Lur0ezx4Zw z{aGhZ%|NYF6KVIPDu@WxVpYn3R0FGpLQG3Uux(q?i@DrP^ONR4$~ypzGBLhbwf+_0 fKV$CwfCl&i*G}jT2mk@I00000NkvXXu0mjf#OKB} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-6.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-6.png new file mode 100644 index 0000000000000000000000000000000000000000..988b00352e4b135345ea0b04a717f692c0e38b3c GIT binary patch literal 429 zcmV;e0aE^nP)5_|cm1y8fwGv&Dto?qVg63*zK^pU0JGELV28bAYR01co40GLUGPS+8t zgIblAF%y8(b%br(s`KGcMU)}bwy-`lxe|~w7+F~ue1pu%lp2BC>ea3F(J@g;Lp)?=$FN49<{YjE4(Cjru zQlC_bbB;#2Ayq&+1IwjS*eA|8EX$Jod@lE^`Di$h@E-uim6%+t+W!dfpUV6`paH%B XMTF$Uu-$+L00000NkvXXu0mjfw8p?W literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-7.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-7.png new file mode 100644 index 0000000000000000000000000000000000000000..aa4659f900e08bb82f8366fc08557df914ee36ba GIT binary patch literal 461 zcmV;;0W$uHP)_N4?&G;@!mohkF2Mb)xgIZ2c?1f7;OB0}9|9WZ&>Qj`lkT00000NkvXXu0mjf D%NEPC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-8.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/eggbox-8.png new file mode 100644 index 0000000000000000000000000000000000000000..71138a692540699b2b9185c70ff85f096cd0135a GIT binary patch literal 462 zcmV;<0WtoGP)9o)GtDqCadiAu5|o z#=;5-VN(l-AUk&bU5oFwG~b-?3M}1HR8>Xgpa@k}`S9{j$Iv@){Cvc=*A_XSR&U_t zu;}%Ah{XaQl@PmAd*OHBjWNuyd(NG1*T=5wa!w=?BXKgB^a%+qpp>FeZlJBqp-^tX zbzL6=KyiN)07hm?sZT&?LFK8!cGj0TU)@nG&wpBQhufDMcw;5-K3vf!R!k_lZ)9 zR4OI#WIX<>b#HROQ-OY%b(0Nlj+%!G{AY~)KOhC(0ofJwG4Xj{6#xJL07*qoM6N<$ Eg0S_)eECk^b78i6dI*O~Coz%!gfg9Z-n&aqX`i$)&6t^Lb}1kQq<|EV0#X1#ENIfG z8#L-fmToB%2^e*Q=5o2H^TV(W8YH0%{|5%i9mk1WAe~ObwryV}xC*$g3){9MPYwXB zRtv7{0y;m>322)3z3Goa(=^{4_X;fCQdCt%^|%C8RoM{nq(gWI&fZSxUVfGFMeQCU z9z?(2M=TcjsJJ+oI}E=ApOj*OJ~8h0dP4R*k8vWA7|Y3I(kH~VfDnRWrHPKRgkq%$ z&+~)~0HvcH01z@E#3#VDp!!;+`&(;_ZyyQPmw&7;uOG0xxf05?n+Eb5+0gUnS9d7P z7s6WrfGe@%JY!pbXZ+Faa_gh~(&>yn9~4{#%!WyW`V>_VLQu|@xe9Q1U@?T literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/meta.json new file mode 100644 index 0000000000..2fcfceb081 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/eggbox.rsi/meta.json @@ -0,0 +1,63 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", + "states": [ + { + "name": "eggbox-0", + "directions": 1 + }, + { + "name": "eggbox-1", + "directions": 1 + }, + { + "name": "eggbox-2", + "directions": 1 + }, + { + "name": "eggbox-3", + "directions": 1 + }, + { + "name": "eggbox-4", + "directions": 1 + }, + { + "name": "eggbox-5", + "directions": 1 + }, + { + "name": "eggbox-6", + "directions": 1 + }, + { + "name": "eggbox-7", + "directions": 1 + }, + { + "name": "eggbox-8", + "directions": 1 + }, + { + "name": "eggbox-9", + "directions": 1 + }, + { + "name": "eggbox-10", + "directions": 1 + }, + { + "name": "eggbox-11", + "directions": 1 + }, + { + "name": "eggbox-12", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/eggbox_shut.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/eggbox_shut.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..57b8918ee93348b87162e28fb2b774270f566522 GIT binary patch literal 368 zcmV-$0gwKPP)5dr6on6{VoBFV2!scsh)$idH3RR(5M{_a^nubXV(3z#s2PwkWQ`D!nt=`#R{fKt zRcTp#r+d!5^8GNf!P-CVF=W_-PB#DszyKHk17H9QfB^t-qcf9D()K-QHCtIa-;#gH zl1h7<=@c&kZreG2w?}h;jZTiO{}T_0IugDO;bG1=e%}J%j?S! z+E-99Cg@|+U=oI?7{jq?P%*}zQr4d9;(5JRcHmqn0EfC(n%++*yk;4E-^bl}%=1HC zE4nBOp8psi&vR{)ZGRq?vMjmoa#_nYW&PO&07A%Fh(3Z4qId#;<2Z=p_|E_+rHUt9 zME6m|n<%9SfqtUPGi-(1B43&ET0G2Py_G@$B`YOPG#^B!q1MmSPWWG=i2-C*^ O0000yw^lS#~i(3cztH}~Fi&-ZiB zJ#%NInR7ENr`eWOy#`PNr~v?uY8{pR13I1tNK62*6czV}-6abLmj^uSv-7KnUh9#n zi7S2XB2u;<(pj?~v`DqAS)g`!eU0eQ#fl(h0hHd;I?-pKe2bpZ$)p#s`v%3N`b4y? zJM#V39l7y&If$##jbxKBVnqM=$r8j8K-qdoH-xq1JnthfP=2^y)y55rJw41yeU`eG zuf#y~nPoOg0F>U-I)I+hi4BD-3y&21-(u~Oy4Op?rjA_SoQcvRba_BaAlW2r-*o~7 z0A@ie(UF3A;NzOFksVIz7Sp0GOjZiuSr6JU0A7bFV`f3C448cC)9hDoG(5@s6qzju{zySHs z1*^KC{*f4u8w;M~p9Wx|c{eLQrEyCD1>((}sG+MkO?pK|xVYzo{^{=b0JLt~1|8=? z|5IEpTEb$x#ir{Znd{u;fj6V5;V=Lzc0a&zr#|OZbQS;g`)@+rzXZt$-26ryNz*ZC z?i9g{)@&{hl3xLzk{5pW8Xo=v$%u$qpkWCx`EoMfiN6EC7hXLTAk)L}&lLfrC1CZ> z0>+mW)eNG`5QXYq!Hx2->>y&VL^f zFyn*bXINV|OohY|`n@7XAb=XT6YP`Ob?`)afF^%{Q7iDPJN7j0X&NGaso zLMxnW>n>g!ixKRTId!R@CV!wjfMdWZ84z8^7f{FMAT=QZO@&HD%h^;&tVvCvj?K|^ zd?6?97;qMqY03A1W56i|hFYYvw{A0<+Q;6b8fPvbV3Jk55t9+ru{q9MfW1dGMpOGZ zd+RoVp%%$34xf1)FZQJMf8#O6A6~{GyO?}A$-0f}0Py+di+pEi-2geC#g7^rb{??Y xb=3f7n5rDJR!OwT?@I^#zqah(gf)N~z<&{-N6sTSVQl~a002ovPDHLkV1f`Bu>t@9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/lemoncake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/lemoncake.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/lemoncake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/limecake.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/limecake.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2bbbd550e4ada68937c9ddae86766495136fe538 GIT binary patch literal 947 zcmV;k15EshP)cL2#tX26GTdoO3w57@81FN zOIq@vKrZdPk?DYvP-`SGC=Hk?T);2b2 zW4S9~dxoeWMtX@bOY}7DrLF*~O_AlVo6D^loOwr-Js2wuZ2#jYy zg^BNSQ;~{*y)H9pdViDz02_Digr@H$NOTMmQI-oKFdAEJ@N$^o&=3HtJ{!RF z>l&>}cLx6W`I*KW&5OccAKP*w8G+)HXM)HWY^os$Ci5=?Qpr8DascndOle zVEn~+rW2V4haLVNlpwF3z@N7yP$CK+o|Q1wY12d$Mjyk|J^+GuugbX&yVT0(kqfZ* z*lFB7W`dD&a5|x~K?-bYg-I{ewq=T+oscl2kL5>=+BTT<$}M!*rH0cbEFPUyai1xyNw)5bd1_ zy00T)Vnw_WV*!Hx8M?1SduM{-_#t{d_i*}Zlw5OI=5@TVFDc$c!i+xp5tG@<_=|Ds zKdJ|yy85lIc512uK&x4Jmtf1MNAv#bq5*PYiYiRUQl`4P|6B0C#)|(ZECG}N{sl6v Vd-9N^u7m&p002ovPDHLkV1n6$)~|UP!JJcqz_{+GWz16 zbs)<0DGVP}WYjt71Qp^+S!%K^kgZ)y+caI$o0cYRu3R6ooZXw;#6O7jp+5+}dveY_ z-_QB|&iUOVr9V!yoA$)6s_y~p0sJ2TeYurmxf66Xed_1n*vXlf?^D zbi6mn`^P@w!>ezzcwvf*Kg4+J)q?=y`TFmEjvc%t)zgsb)q&r>dS08!mI#M}6ii-4pUJU~EFz~v=!Z-dN636JAR z`kXTHyh=C}Boa;3ZC6La5P?WEVGswnIB#L{K|y$++^3YmHAxba_c>*Qm|6SB=~&|w z=vRItwLv;w;PCw->3D(uxoy6i-x3hvr?+Ze*IPWVn)=27E-wK|;ZmxJ`DBUX_Hwk2 z@Ao5lyc~K^GDhOj#FbU*g~SO0`kdtx-`;FI`38V+DEN4@fe@$NhitLJ>I!(gqCX%h zHLKNIB${a0Ujv|j0l@uCmk?KXipU-N0m$Wz5m?=fiEaqwW-i z2XH%We@mnhU`+}tHqdF|%iDKw`@FcVc5=n?hHKkrBbP4_Xt5HI6cG)*Rp+_7T^B%~ zf`Fv(TEE7%l^AZH7n+-KTkY6=J~1Y#xo|seH3I)Q0+oTH;Ivp7=(MnHi__KSA-iy& z%c-9j9Uc&M;LikBH&p>>HckLctW0R~>35jPmL5YWX#y=)I-l$1Ui25bkG#lcb|0)Q zh*|*{1oVP>h>CbFUtnToLX>1f1S}Q{ZHI?yAeLfHbcJ5x)7w9D=9Q;Nt``YN3Xz9) za`}QmKrg5lt^AIj95%oS)J!IW-|uIx{ROr*Cz+{qw7U4@*J+wtw|Tw46`%~*>f-KF zw&p~bZOWr3hncl?<8U}wlw~r@%kXF`89qkmX3uG|EaUNb=vcZ*;>M(yR4-&EQZ06% zkYd)>4S>VpK$c}PnGC9`GJ0TCe2h%*1A35u!_0&m0#t*@a>JWjT~k%HuJB(1_%CeN fZ^e56yAJRNnSTkaz!OW700000NkvXXu0mjfOz7l` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/meatbread.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/meatbread.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/meatbread.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4ce070396b683453462b42033b9f3732ee72050d GIT binary patch literal 906 zcmV;519kj~P)A#elXGfI?MTeOMro}Rf?ilcC#InZY$?n^D0s1(Y$KZ!gyGG)h_EZKgrReH zV;kxyrM+{41U5!X$1-yonGA2#vTC)uHYW`U?TT&A$;sJ8FebLL(wpAoy*h{UzVGk( z-rx7}9YOt0WhcY3qv}n7CO{LQ3D5*+0sz*nB)Osqb34s*$xFhv0qRB5BL?@9DO_@O zU@MYIhc1vR=!EPNE7D884qYIpRX7|C5sbg=@j4h`v;P5CG-1|@md$FdQq*cW&cQAY z-pQgAH6p`d3R#t1KhM>2LUyStT!Rreg=p9VrM^ki6-}5|-v14KO2ICPqzXDpQNt5D zhCk-RIoL&HILy+-JO$mTu6ov_GWn3}*>!r|R{Sv^Ijw^HaX)rRM4wXN@29w;3A5BU z*LG9c9EG?gMOP#K{v2VB5j`p zXdTOtR7?2UMGAqvEKSVgkNFxV((ATz;Ozl|agm49MRw<}3Q)HPin)IPTg~HgD#MAP z5I4R~0nl%gneFqy#5{Xs0i|f*9Ndd{ERExXApWe1-Q$KIZeed1`D=UzfD=O@^vrFR z^$PV`yDhI+;68em%V$Oj#zj875CPy(M!_HR0kHmF4+Cx8^t!Di)e@26F#BAs+*Qlu z$I?8@t?~TFX=YXpT(X78a2V%c7kcJ4Nwvh##diqCMJ}Hi#eMYbMhh&*m(8`MKN&wC zr?OlNHINO|$S^uF$4gP>LG;HW`5H*>$`vmfHIsSseNt{eA&}{9-GCfvTV0j^1iQ z`@s!00Ibdeu&{C$fayPcI6Bt==m~#G%bm!EW4I~6i)rMa%^@v*Lj{S&`N!lJcOhC^ zaCq{FVq-7EFv({f808X<&UHGw_G3Xu@BAFczMh6vZwcU4nEy@MBwi<4A6vQ$w$f<3 gvE#R46QBw3AFi)ypX!B#82|tP07*qoM6N<$f{i_}5C8xG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/meatpizza.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/monkeycubebox.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/monkeycubebox.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f28094b59c1e33e0dcb9190937f00cac10f41691 GIT binary patch literal 433 zcmV;i0Z#sjP)1wm2Z=ypXwkxI)zSoAbOBw5d#^w+!9@^(-GJM0(Y3TND9KF_Ol=fIM2LuK zW?DFBI+8j+N6}#3)y#L`yw7<*zE2yp25eG^jk?DGF~GkE7}ko;uvTjy3DU8$(Xdc6Ua^7P>FWD4S*hXDx$u+X^G{{2QuBm{_W3p&-jbC%5l zpufL(#-ppt*_r?Xcr_T^-Eu#fP-=FULIg@c^jJhKYvk7CWO{lIfU#ry-t9XDPnJ0Y z;=#Dm>y2p&l`^#2^zHxCwJdnQoV%d04OU(Q$11tkEEc1_X7=;2@1QNwqNNE)pQW+(4Wq?&^`vFSLt|sO> zsK$=X*s(dkc~)P=vO3kg18|&7do>wMOhXXkNC5LdiB~3sL{y+&#VWGUF4?=}BqFUA-5#%~j*^?YXoS-|n2s6qdP XlFdDV3?FZxn;AS^{an^LB{Ts5|2b7L literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/monkeycubewrap.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/monkeycubewrap.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/monkeycubewrap.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..939950a32adf0ef1f6be4d6871f4ccdd2be09400 GIT binary patch literal 767 zcmVSbZzJE*p;|Q0DArpnV){X`#7Q*9SIRgnojeTJ{atDk90GtfRxnX_B8T>uo7)YIHE zNnhJvh@;Vlf&o-T7O`ixBC}ngV1UuFFp|rSe`rvc_qC1F+%rj0Nqz1iG*fdVi^UM;{15Eb zO=~M3UjUFy6mhE|3V`j(O_|Go@e44GsV%-6t^7iwr>HjalVH(NU z3WbT698gGN^()E5MG8z8u#_h$D9Ao*e_tcHZec&Yi^cjI>(%QR*<;VziN#)-RrRR= xj>4QM%CU|!&0MFt3r=&;S=YJWhIxQIz#nCQMn*t(p2z?I002ovPDHLkV1i&SVg>*J literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/mushroompizza.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bf0c25877a8e0bd1225ca949e3825ac4751c462c GIT binary patch literal 887 zcmV--1Bm>IP)I>d`Mt+_c@OFdn@bK5y*(*=Pydtf}<`~2VM|2yw{&U+?(zw@2t z4AZi@X92PRSpdM2sZcrArXuG;UHBWspl^^)>if4ojKzm6ke)l-(y) z)*pkgCsWoKP$`VG;Ol<4C`eiWrTV6duOF11sPiiGktpVl8yR^|?{#C(%Rw?pEcEcb zypR$kC4jQ~q`F`n4o)-U`GVql3%x*@PMm5C@JCOvTAgHN@m4Y5>rc5F1^}h{rV60W ztN6RSP$u7M4U!Felg86%LO-j?-LfNI(yxT^DX`0e%p_sjRc>sYoXd1Mh35DAZA2}$ zSnpDUoe@ATiGMAyNTN|XLp_jQ(+jI2GpwAA7;Mr5e0l;!<)Uad!I8_%AG)Lk$zTPh zt!~(JoE$kfQ5$PF*ctADh`CZ-ce)?cH)3GCM?2%ywX|0Q5Ush&ia!w~{q0s%j`zVu zY;*556%D}bkzeYc*9QPtS5W~w?hBB>5QGDZ8Uv^*Mq|4SV|{qLx&T;l=pB|dJ(E0A0t|m0PW+ho z0geLr_FjOD_rT}J0w^4SwO0g8VazlffWc1aZ3e*m^sboeC=k6;dFTNS*4E)}u;QIC zgVPClrJ})xN*HYiS5-p%@r-~O>=d7ca8u*Bf N002ovPDHLkV1nN>ru6^- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/orangecake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..62170fc5737304237ef186653b91a21f91115ff9 GIT binary patch literal 278 zcmV+x0qOpUP)M&nx$3=iMwZ)}OaCh=dXTJnQKlIRKW_RdlFhiy zF!Mj-kzGv#;(HiiVPNNB5D`=!5X;}ZxCluD{Gtj2=70gu1)~lab-<_t2HXKGs@J0# zZ~q+N%1Bwwe<18(p7}Qw<+r**>cr; z>5PmoXS`(CkRkrx_YwY{&1N|>yz=OP81n*Vykum734HqS9IpoZOB)#u>Je9K+F#m8 c&^#Cb08E-gD4g)NF#rGn07*qoM6N<$f}(D8Y5)KL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_open.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..72be64fe62cc0370beea32b183181b84a5071e42 GIT binary patch literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJa!(h>kcv5PuN~w(puod=VM)nG zy(x({rL)gG7J0c+;Sz`LMTejNpSb>0?mF>x&6JtCTV;W|pr9d=An`1MAi6jx-$=GBnt1i?4MNf&qY`-G5SW5jmIy+Kc5wu9{B3%`s?p~ S@*({>$Rtl!KbLh*2~7a8CPIJ! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/pizzabox_tag.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..96deef8a0806dd280d9ecab33e4100a092a81e5f GIT binary patch literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFtT~NIEGZrNv^Scta{jiX&K|z z+AEAaJUlu;%(LBe`oHD7&)V-dSaHugJ!R+GonQWk{#M#``}_eQ*wFpZp4;gDw?AIH zZdBhekU7_8eE`T|V@!12WdUOCP>#5uDj9h*GwbL7`}To9nCEf3$r`+3=!t2V=k@Yg z!{N4v%+Uf1y)UqC_-tSxXL-Xt%(Y|*_tt+KG+!&9ZI~Y~0R#$sJF?=BJox=WB<}0% zr)NBj=1Y9uQf{ia=)vXo=M|hhIO|JVO_dB|U( z2e!qah_Om*>1<{`={Eix#}++D@dM`$A6QgnJ8R-Y1?H1eFHY3E^6T)jHT@>cb#;jW zd*#la_)&DsyNy@!(f?ZcxrbKQZJs0P`Aj%D?m*A%t+?SXZ2G> gzrCe7XR$LgRMXEr>mdKI;Vst04AM#&Hw-a literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-1.png b/Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-1.png new file mode 100644 index 0000000000000000000000000000000000000000..70f72099472c24354eda337ace39a8b058c38b69 GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJubwWBAr*6yYb+nD9(G__#<;ci z3gcoviP8frnB8OzBxDX8I&k1XL3HuU`dzpGeCBR`wYS7=+U;51|KqpnFWUW=2LyIY z{M)SXIrsefCEa`5c@IC#*}ygxv;K!Cfq|4A%V2-LJl8xV1I&sD!(@?+SR$KYNqiC7vHYTOGev znJ7O#EvYYQmeTS6du<8V`d?>@(o|;p_f#?(#~B@3{NQr?^9s`&@wZMC1e~9*ar&)( wu1ba+kHNkCBIW@dL#Fw0|S7;)78&qol`;+0AAr*6yYb+nD9(G__#<;ci z3gcoviP8frm?b16B7j&TFI(@gfBEeCy2OCJ)6bnKiY|WnfAu%llI`;wfgn-*aJ^W{ zzPCT8mTdgKA<<$EZ+Qcd!^3o_tE3RbDsbPhz}slkrps48{oh}|=mWcrc#l=W6-J4j z47O7*on>t2Jxk3lH(Ezlp)u+-EV`?>ATx*PoUG zc4ZsS$N&5K{T_zyk383-^10JcKjE0STZKr?uMaZo*?xOVOY*(?DV)0V@6ukDv(1dh urW?mix+=H8OXQBXd~ef54T&Eb3=HKqZA-j+Q!Ri&z~JfX=d#Wzp$PzIp@NA3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-3.png b/Resources/Textures/Objects/DrinkFoodContainers/pizzaboxstack.rsi/pizzaboxstack-3.png new file mode 100644 index 0000000000000000000000000000000000000000..9bbc5a971aa99893eeb33a36b9ab7e0fec96556f GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJubwWBAr*6yYb+nD9(G__#<;ci z3gcov2_C+L#Ds)|9cy=fvA>)9?`Nyy*ElQX)46At{$GDf{Nmj@HXvw=<@p~u;pevJ z;g^oyJKXlL!0ZkqkYmKbp?&Enh;>NzV3Xd-6Q}%wPyhe_uk(=nhZuub4T0HuQ<>BHzQg8HgQ!G|I_n-3g+jKJ_6Mi;{ u_;VGWVbu*#5uDj9h*GwbL7`}To9nCEf3$r`+3=!t2V=k@Yg z!{N4v%+Uf1y)UqC_-tSxXL-Xt%(Y|*_tt+KG+!&9ZI~Y~0R#$sJF?=BJox=WB<}0% zr)NBj=1Y9uQf{ia=)vXo=M|B+G1|q~(QKK#b39{g1mTNYUGPVwWtc!O$^UP_(8*k2Yb3WeZJpbSSc^`O>C4MK) zR)%#;)lC2szyvS>OaK!AC@m(bvb8(Cnc{O#2P~TgFo;G{L~lKzMk-EtItj|G714dgo4C1BMeSkK?nnY)-aK- zc8tNN85n#nUXF|ckW_t0VHrZfoDhiTOkPs;39x|Q2nj^zL3!NHOzafp?^<*aeFzt1 zuMm%?dzc`5ONC8mWeAO`h z8vXJ{lssdklLv$ zJ#8b>kDN2ve+E+Fc3De6qwx4P@tMzd1!)POpS)rcp9B36X3?aW&au55CZj$}aU&xp zXI23)y9bamtC-yb!h5(6wbzLxOO$KGzk9DKNK*j)$T_oYoJu}nJNzeRzaLyKFpN5F ze_()EWYtnbRuo+3I{W-Di4*a;rrodr=qIn30A|r7F%uHTtqhHPHR0-Ns(B`ppy$Q0 zO0KaJ)~7(#1eq)$zk0YnXXJ^^{Z%z~bHavm*`G!vu`JDv1twP`&Te1u3T1R)FC(C^mSCt*}MZo z1#1VE6;#cM{`ZGCwVrBjIcTx7>;utIh~cptFjzXV@&H+pacVs{wH}IvB3b=?^2SHx zQW;|NE68pIN%!D&d&p(8bmh}X5vfA-%{&?bj-S2A#H5|*ngTu_^p1)G&%XwdAOyy%;@{p8 zFbns^uN;AKhy=wFdflRi&qs7kVPewG@v|3O1N3=)T)s8M#H1Y(39$^lqhbt8*jv9nCQI0)thkYe2Uqv(_FiA z7vGFuYBYzZypDHHq|JZU5-i;N9GhKb>ERLwMh*br@jR*1uCF@*Dw>^aiWgpgyXjT8 w4bTYFmar7Nnbzt4?}Gm|_WYZ$1JD8Z7YE#O6U5xAYybcN07*qoM6N<$f)&r#2><{9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/plaincake.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/plaincake.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/plaincake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/pumpkinpie.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/pumpkinpie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..22a72463e7e2638f57add33a11f34395ac5bd2d5 GIT binary patch literal 785 zcmV+s1Md8ZP)A#oY=KrATHS)d1f#W*c#tT=v~5?y9IV3!uQP!9$VeUnLcXMQ{HGw=L%XSLMb6k8c$ zOS9JiY5+BW8o>VmpjRtYhwmxv%R4-JLq*LmdkM9t1MU4~t=f6D&CUW9=~vo9&Pia)oq0^ykJ^XmZWmuDSuv9x~^rTXG^ARME9dA2%$%=loLSV#*YE!S1L z^}&i6OU+upJWFPLaC3ks$!jVR9|a>yQ%4ltyIKJ^2wV7^Rtj8ar;x&r?)B5u5d|Yk zB0kEKBItq0ES70B_ZR+S7HGmgk+&WWYBQ+Ik!ifcf}C$Kh*%TDs4y-26$*RNR?o z?({fc#-4IiyIL6lz&=q>88gk`?NjsyOxh2HAkYSx4+IZggIIEsfosHu8rPH|g^h2qJg>7md=3GvbfdkdaK zaK*9;Dx$dr7Y{)UmWsHo5+{^GDG|d4%Wh_pY-!qV>Zar2+nLU{vpZCgwud|z-uKPC zdH>({zL_@@seD}FQQD?Qs=fiR0r1!ZXu}^m5k2oj^t^L@?x2&5jtM_(I?3KKCpm07 z#Y_F(ym+Z!ocE0*dfo}sh_vei$+g!VbD@SYkP#=Y{s7T5R7;riJ22iKhv`WG3SXUP zF#iEePX@_I0U~*EJE-FfVy(i!9b+Uikie_!jtAUYM;CAL`@zQwN9- z^>HKnB8Azi2VwNA25y%YR9`v$l`1e*480xz@ZaEyc6Ijvc-{p9yb6?- zYb}$vvgX*(PT1Am!;O`B$pifONBv)kgaHP(pkafrK1p%nJGxSD1|VM9qdlWpAAwd%G z3;H2k@ru1duAK8)vQ&Z2&Q6|s>5U-76_Y3WKjU0>FN4oU#jDz3W6tlOVy{R7enG#e zdt{HDl;9M1U|ANruJh6FcX`g2%-E&zg?*1&cCRQsU@p`!c4_>2?N3n=pS5}@v&T*{ zeqjk!Rr%!dJuJ(Dl(;5+jLu#@>nMssB9Y*o{hRpZ+t0nEexX((&0?c3#~Ht{1c0il zD2jq*S=8%w&g?(qeT-WE5BNd;4{IeH3eXIqC`#LyFss+=ZG|5Q;9=O~{a3sJ@G$Hj X@0az%w49i|00000NkvXXu0mjfuRg?k literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/tofubread.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/tofubread.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/tofubread.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/DrinkFoodContainers/vegetablepizza.rsi/icon.png b/Resources/Textures/Objects/DrinkFoodContainers/vegetablepizza.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..45ba98ba84c4460a516efd58c47c647fbf487c2d GIT binary patch literal 892 zcmV-?1B3jDP)Mi0BQh0-Excq(YV}C@cb8tT}#=x7JH7XlIBC$ zdyk-c-Ok(#SU{5rW12Ishy}J)LOrq<0#}!WS@0JGqH!S~!rpZnP7Xo$r>Lq2BiF*f zM+4)aO8)+QYzmCWK9lTniukV#C`<;gvH^jC^R(U919_X&jM2G%oh8({Qj4 zHDX~5$4E?=@aAjiMiBu0!WI(i6>PhRF&u+$gqPpdNPME8H=JkV`7*Xug0p*2RS$gq zKK%M8foNQ28b_)?Zl3|u|Drq^d=T;>)QAOL7DhORo>rk%gYh2hb6(tL4B9_r-)1jr z#6s^%L3=%fP4*SMFl^!u$54$TMEfvqG^3M(W8=`hjSa!C_}!lrtuW}S+JS%a*Y04Y zHE8vrr&AbVn}ObG81*r9%p#LL1L=B_X2h{O1PuSpz;;mmZtUm1=V_AL>? z(dX8VUzwY~pos{MPg}jSc5%1JRHyXrL?$mKrIPn{7buZwxpgB=a(@S1pLfFbI(R1q zO4&JRqdr(uhMNkB36ld)Y5Yv9)B8&iqlT{5S;x1c5HRVAIIQ{CdaX&SHA7oddJ68 z=IT!uF#1M#>2P)Oc>s5JLuTwC0EO&op4s*@0PEI1HCN?h^Lzlf`5OS&|GNyp_up>8 zAG`%XLsK`a#+&Ee1&dxpN@Q9JQyDzjk169JJNXBNtctsC75;|{xZTyUN+qH2m!Hz? z4E~@^aN{NviWGxy;D4l{s_JC{+zYd$(E_qq(z|6@Z^3c`-LI_pYghxQ0sIfGje9r7 S71X}~0000kYNsK!s{^xPRct2&<54Z(&VClBSE009 zVSNb$LKibbSOHy*{b&hcnSy!Gw0J%+NN^JNySEy|onD3DB&;sZQFKf(|7e%UOn~aG zBmj|_0F@u^P;^WY9t~1-OtBox^3l+!cr1V`oD`2C8Geqvu;78d7jGdR~}UdytoKsiL6;aH#^P zS0QnuLOBNxKlG2l{UnS>11!g~ZTq32An#s&EkMtyzbDcOuq6e$JvAnA=hh}3&q;hfJH?_V?(y0=+yVcv4VNm6-7s5o zo}2q^0n90Ise&h7|AVFPHgLOD6xoi?XUE-Bk9Lrk=sDFY@Q-&uAE@WnKWwA>oZ#D9 ziv9tWUw?bZ`=73Hc|JgCx6(4t%Jf3jZkz$IkY5llSKnhhQNLoP-3tC;8-vddl3Yu1 zdL%?|ReK-wS^lN?JfdV5TKKwY%@Y@o( zjVdlxu)c)l8E9UqdCch81Z3)c1E5eS;P?AEkvT_M#EqR82umz{lIEce&b+0iW;-Dm z2ul=x7A-fz3TSj}g6c{Lm&=8`DU&PYK-GK=kJ0tD>q3@g`uh4PJ$IL%HsVH5vyhcY zvzYCrG}V<5fF>-<6bc1uwHnu6ykgUE8nFSoWE!(Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/DrinkFoodContainers/xenomeatbread.rsi/meta.json b/Resources/Textures/Objects/DrinkFoodContainers/xenomeatbread.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/DrinkFoodContainers/xenomeatbread.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/(mdr)grapejuice.rsi/icon.png b/Resources/Textures/Objects/Drinks/(mdr)grapejuice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9ae3ed95994f790c8f6a78a156237ad4fbb49ede GIT binary patch literal 842 zcmV-Q1GW5#P)g*a3>f9j+h^O+s8aaRO;$2ZVqLu_1mOkhmZY zNL)B_;)DR@fSAPSD235QrAkSgR%?EcHfbE!er*o?1%9)o@7<3ceZHUf>sP5(tDNRZ zjPvnpZ@(Fp7nb;^+2qq}*OZA1h(nL{-`6=ga-|vSI06rq&T{GEMXXHfbOc)6HjS-1 zVNxD5)(Cv>gkNv1;*aD&~fuUGMarl0?IkT`!9XWPisF&Gsfybx_E~9LWv8N z6)t~uHJYfv2jAR?rY(m^2nyM0oTZEuN0HrxU*7#9a%>wN3ojgS*dNf`*yo)W-i@`8 zVt3$;&)J5=(X8x?{hTlGxUZ`nHp=G zYq7c@bqfx5S|qY6pFLTj*B#*G(pp-lEekzsB1A-GW`=`12Sic4eI%8DnY7sYv(BBL|6*<-kD{q)X@l9v z=VG&@63~nUY8Y|udctM;Fksq`|0g2)G|?^@a&7PbG7;$PBDXL=#vp}{Slp;Ho0edD6UT9y9T4qfPgSIOR9uw5Yk%s zk<7AAu9(4zN^Gp}0`dRIQUX4L+58!7LuY669*UwMe4nJAn~cD2dyn&rGn8j-mY-N; z=tcC00bhT+8k;56fz7=dzM|51Lw4@D1cBhlOOUeDtZu}UkV>G|{F@I&2V2Xd1S+PL z!g5jw+mFqXO5o5P(Cl`=P%$zFu71q%sE2!eLT$SiizSu7ygtjx(4%&98&yOkH66uN zF^fr-mLHDAik-kGuU=O!I4k`7i%+<(p^h>HJ(KQTkH+_1R?1JsT8Gk)())G(1Hd#Z U@j1_mp#T5?07*qoM6N<$f&0WbcEP)f0{c08LZKEFrFZ& zW=x406gl86zbgZ$W;`WEke>({7#J81pF7WR=*(FL1|9OvpeO`vjSLy8(^4ogf`O5g zW;rYYE)X#`e)8-YhP?l_g$yDx@(iTp2C|}{Xyro&I}>9_@I%3kTelb(BuO`m>?oME zY&nCSi7|tn2}PNJybzEK5@L9Ci}mc1A8Q~2It&b4I;;!~#~Da=&44#Z$Z`Oz1f&Ka zDGI*7`^3P^%wWvUgIVH!zVn?yL`I%u2auEvX#oa24FCX~7=Kt|QV(AM00006vuyewM3gMoYoYI9F#f;xk1xNaR~}t#HA(D&35VLS}4WEK@jOw5xbO5PFZf0 zE`=Oz7sZG|Qd~OpFa(kGD6v9m?mCzYXHfC`NVp|`IPQ3N_ulV&_wKz<$>;M#DK*mQ zU4Sk?7ogn$rfK?-0?4RGaG( z3BZVJGxq_*>m6rcaKRSMf@}sfpvqbL2LSqR=m5V&9mxXJfH-G`SWU!+)2DS8pueL4 zS>01!YLu3j{1B4)q z#RqFfx-emE6{c8!HYejs4#09%KlgMBD>eqe^M8jdefus2AT*AH;H!^rH-iVt<=z1Z ze+FTI03x`qly{nTnHmt3T}WMN^S)N+SpO5B+wcc5NeV#sB~S07*qoM6N<$ Eg0&^}hX4Qo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/absintheglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/absintheglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/absintheglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/acidspitglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/acidspitglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b5f02a51a18dad9c44736ae9942a1532def98af5 GIT binary patch literal 803 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV0z{0;uumf=k2V6*}{$@$M$c( zJ>%HctxqWj$ zTvAeFH%xMI&Yhhm%Rg&^knrzAKJw1r%5Nr?-+2G@^qX^U-ns9L;k(R-2q@c6;0T zkhWB&(+%zN^{ZAs;F)74es1#g{3)EmAO)!p)5?@2a#!~+y{U7YWg6qhM!TM$%sakT ztWA~wK7&1>y*P^b7khgugW$pL;|7&wTTC-Te9vup z?Xl~yMl0)-3F)21h6~RdC0ts4;p7`a{H;%jpmAKYEtZBbux{6wt5b}RGx^rW<3 z^}n_sU+-5e=JbX;OtUp0aB{^Z*=O@sDVMz7%&V|ySHj|owYgGvf8{X8v={6zSo@Fv zip3hi1<~{W8o2N+yl>fP#N~VVgTaNh=gkf%vd3#z@*MMTOv<`%@aIyYWD!W)^ammC z0+$p{RnNcpxNpJzj~^FDy>Xb=pI7_p$>|G4ol~w$=ikcD;>uA0#*=aXyR`pH&(CFQ z}s^)yMA^ZQwR0f|3M~34!amKkHmMgJ1VTY|5aH5%vWMw!aYF^!92FArh#+K zN%k3sz>HJuGY+h)X<%FfV(hAE$OALrYQQ3=*W@j8=E@Vx-0zj$*jixjkkU}Xc&TJB<9^14jF-}!;!e~76F-BetDnm{r-UW| DLTq*X literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/acidspitglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/acidspitglass.rsi/meta.json new file mode 100644 index 0000000000..79f46abb6d --- /dev/null +++ b/Resources/Textures/Objects/Drinks/acidspitglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[30.0, 1.0, 1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/alco-blue.rsi/icon.png b/Resources/Textures/Objects/Drinks/alco-blue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a26c9cbc2bdc912573ddbdd446ed7dc230f47aa4 GIT binary patch literal 276 zcmV+v0qg#WP)ANFfZHjo#Pq(9Y7^Oo&%u1pT)rN<}3q4grbM}IdVgRqHLIcmVpb#t{~HlAsPiR za2AcGy911&mKzV00|qh#7-unjBi~voIDmnHVSv*BB`R%xp$166a^tD6i>i<4XX68x>+xm#t<#XJlaTLs~h*i1FvukCQj^@c1X> zu(7def9jEZ^z=Zq$*gsJ6{imzQ0Q^Fe3#L{UEy*``2kaq=#FCt4lHPeiKZ}ol2YN} x;dyb^ph!xYhet%jx(xYHC15x(c)I$ztaD0e0su&1b)f(N literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/alco-green.rsi/meta.json b/Resources/Textures/Objects/Drinks/alco-green.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/alco-green.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/alco-red.rsi/icon.png b/Resources/Textures/Objects/Drinks/alco-red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1a070d379f1b2180e5f75211e791971f191910 GIT binary patch literal 316 zcmV-C0mJ@@P)ANFfZHjo#Pq(9Y7_(NLEP*^*zJUqr5Po%Fir<9-Kd{E0Vs07Ni>?S4miocz+jF<)7=4Y1qL_-gg-DaT!OMM;ZsN}2V7!c zV9-ON>FxlSBamrw0D0|!yVs?DY(Ih03?rv8LcRkiun-*#?Sg1nH~;{y{!G&EI&{4N O0000e<;%>QSAcG3@O1TaS?83{1OU1FUQ+-7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/alco-white.rsi/meta.json b/Resources/Textures/Objects/Drinks/alco-white.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/alco-white.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/alebottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/alebottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8ac129f2ec8df2e8f9b210196e8395109dfba7b8 GIT binary patch literal 464 zcmV;>0WbcEP)GgK%oAp&vsKQBGD%4MCGbMN>yX;1!C7 z9@UawbfU;$VFMgYo5 zUUkSp)gcGfa*|i6Iz80JsZa|U(Wd2fq7K;s<~Z5yvq#ZqkK*Qe=9;QQcHq5yy5o1t z0Dz2Wn+4Xo3jhGGtDPiF*DwSya@2li#4ZCo9UrO{p`x`n7>C-|rW#7@b9%K5?Ez0L zVx-+Tz+Z%JfVTZ2Jh2EKFD?N91B!|_sf4TT4c!aLbO*>&;2e^{zvKV_xvc)P^btxT!(=#x^U-##R3DJN>&38FzZThnVw!ifQ^ZlgCgJ86@$n zQ!(0fhdEP)QbMiPJz{ZUzR1A4Ho;k^>kS85y|QSwH(&>NMa|v;ERt zoN`of00YC%&!743Hr4mwR1_Hhg=P+5U|?imWME)mWME+U4;MjGfhU1b>;Pn=sg-|8 zGKY~7;`6^$vYccGFpwC$RCj<6_b;i+{TE+EcX#k$lfN01@Wq4k2T27H$x-?L|NjAu z0tV7kIn^D&#K_37q_mu*yiQ#QFflSP{zsGp^mhOwL<_YXKyr1=#Kg$(T}p-dFEb+p z*Y7|7f3mVrlqeX<>6om2&-jdsogJfCAT%|? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/aleglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/aleglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/aleglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/alliescocktail.rsi/icon.png b/Resources/Textures/Objects/Drinks/alliescocktail.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7c31cfb240b53da82c3b906f104e16e1b1c93a2f GIT binary patch literal 287 zcmV+)0pR|LP)*#z+!^c8#-pP>(sF>8l=jY1clL~(KosEa18WXV4r zf!zObxw|CB7(!|k)I9=3fC%spfU2t6pa8BK51DMU-9C&l6PG)Q>nhf_wB4zaS~qX! z*UNc1n`a$>n%?tY^Lba`tV#;t1Rx*_x_trJ2iP|S?*V53HNEGxZrB4NAb=baK*)6C zRDSU20V{n=+x4OZ;2>~ZxtsR_un;!(F^8T#U`>6^djkxi2oM2+19<-huRFlTKI7;O l&}a5v75oVzKm-U5@C0nILN}01t#SYW002ovPDHLkV1hE-bMpWI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/alliescocktail.rsi/meta.json b/Resources/Textures/Objects/Drinks/alliescocktail.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/alliescocktail.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/aloe.rsi/icon.png b/Resources/Textures/Objects/Drinks/aloe.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..69dbd0157e50586f5cfc9609d7a9a40e4fff4c17 GIT binary patch literal 296 zcmV+@0oVSCP)^pb&rfx(0GhZM2qkre{$tpAwWJuD<){Ih2n7#Ktu7>tb>BrA8E zcutC01D*y(9YC@JJUD+yHSW3e{O8}V5P`D@xyl_Uo|BRQ$#MX-0a*_4;QS%gu=_G3 zwHrgk*1RU&_Y4eVlmp0M$9E2Ru}hBS3=9-T0nAczEvMK4)BvLn7#;9LO`NmWwCuE zLn7E(BpTPXSPT{>A_x(HIiKeG&KsMDzNDnQ1s6x#G`l~GxLymlX9bd0 zhyehWUe3|E zj4|u40TR06^1e*MgzD`+2@{f*4ag@!4AAWMsoa)1E7XUpU20Rg*^`z6rtrY-YLd-D zeJE%jH&Is^FzQqv4*woNsZ(YWgeU(J{}yh~3LHT_aSH-H?6rN|MAh=xr8XEg_zGt$ z`!xj{k<3V(f(X=AtBJ%%03=jiE4)6)K(|yW-jYRSQ0000U9hNyfJ8AB_KeUaD{M(sKzWnpvOeBtDlqpr}+be(ypaS?005$f3-m@`z@y?RgQv*19 z{4l#4>xoEaN~1TpF$@F+&}fBNTb%a~Px@(Q!7u=jj9rrg5D^4k9j9BHP7k_IxAyM- zg(=Ab0I7M!6+&lxZ+S%y9xg3Yle`52rCa$KIS0fg&H(_{zM+j~W=>rzihy!poR9l9 z=@eTa0uguri;4p11YdgpxStN2*6BqwxUkV&LJcB%6kAIa4q7bp?b-mfhj zMn^LNPy(3MjOdUCpj)71vKzdR18tZ8vjW)mNBZ;Z-1wgNYcR1_un+(M>?~N#tlT`6 e{!3N?Q~*C(O&SX9DL64OZsLLFRcG)-y~Mrk?{Sxh>solNZHkAHwPC2?$OM+O=P zb#f_jVQNWS2$t8u7z`kCZ3l}1qj>K1UTzBa+j#GCzwcuZmyiIdvWqo-o^e+kq5<$CJ{iqEO??hD9h-TZ z6&1n8TLzOB%ZDdM^G(P0Grq9b;S&jf2l2^h*1whT+{B-Y#7ZI}aAiQ!V)@nCDbM?_ zJHf`|8*7V&g{AepN)hT8e=9!{o_Hk6oeAU&NLq}o&Q28_9@nb ziw{uvbCK8~j|e5yF>iLj+diqzZbsKAoNLq}wTEmO_ zuTSOoZzTfPt3)eE?E^lBWbW1;e(IlK0l*NEK*epKjKAwUL6QJrufwQ^^+o=#--vo6)QVrE8|=6Y-~~AY z8XkZO+ppg>oqMspGU%)g08sZ}q>7(Z22*7hn;8up06;2p7{s+w_J8Dpem9k#29^9mFGTv?&h*&IT&UM(htt)Q7TM!IkjYOL;IvY`Y(&`w0HDw9 zOuKA${4SM4XEr-d&ujIi7xxLM-TY($9=dwdz-0;oK;=(!AaGn&)Zk6uzb{nrif<^${0qBMiKz9JTVFb_}fNmH8bO)dtLQjJ-=kvP3Er9I# zya;6a6S&?AtC-L8LbgAFoB^ul^E^=DPatK0%K1DMs{9GYA8^+K)$@4@RQeN)KY+N- z_yal>cM70-K2L#4e}eQ3_}|)Mawn*2KF0}!D!K6o7=M8A2VBAU17Q3C t#vgDSj6XmTj6XmTi~za=(2cGa;4c>clJGi;^F#mu002ovPDHLkV1jHjjbZ=* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/atomicbombglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/atomicbombglass.rsi/meta.json new file mode 100644 index 0000000000..eac9b60db8 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/atomicbombglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[1.0, 1.0, 1.0, 1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/b&p.rsi/icon.png b/Resources/Textures/Objects/Drinks/b&p.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..02a271aa27430f2650ce21e17c05141002f66c35 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ>z*!-Ar*6yZ3-SR9Clz*%aVTa z;K7F+2U!QLgoVoz|2aDD=aaEG;MOJQ7IgVQ-+P(!QaL3@r21kiTXp_@{cByA=eTe> z4-m-Bv0u_*+W$r%V|`+)Bu>Vi4oy*({LsgvFkjS#l?X3=~8G%u-GUPIxHL)d4U|DY2Y^fy^ji z;pJv<-Hxr;C9NJH+X3WcH(X%A8ziF+7A!t0@c#iG!5~qMo>WrLXCo#YO|n7LBZ0CSkRNF3dQsy{sV%ckfxv)@l*r@ zvM6{cJ#9U=h#&!>S{rN{ONmPh1<`ao?1xRI&CXaG@OOEaW%vC(^Ul1pvzlp|G*W?v zy6*;nrR$<00IA8BBBkphY?|7R01WkRKaxN6V3gT?^&gY2fFBS`*Ts}+Y74KnA3Z=w z7GNu-rZ<3%z?9GTd{!qkR(b>YU%=9TttDn|!!V-3(w0BoiBq-`EK_?1X!l}Mr! zR_3X+cl&~nngad#8w?9^?A{256%YXB&MbTfK0}^I07MdJsT98W%IO=xumU1??E+nU zHD@|{#Mp$X5l&(`?RLFzM+_#CTI$p|@kw12FW2t^DS(X-p-VA>C)cQcXlD5SM2)$Olow$zW}63NYpN;! z4xqZ^n6E?|0}za@QC(_=w&lhEuoB(<3V2;`zQrE-ax1hglY4l@+ZX;RfTu2?2t-$H zi0G=f0Lm!shQ0y%!|U3u@h2>H*bsY;{El;**KibN5wy(t1|_0000< KMNUMnLSTZRZ8Kp2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/bahama_mama.rsi/meta.json b/Resources/Textures/Objects/Drinks/bahama_mama.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/bahama_mama.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/banana.rsi/icon.png b/Resources/Textures/Objects/Drinks/banana.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f47d9dcd9b988087953acba65ec1e8cf19df5392 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ=bkQ(Ar*6yZ3-SR9Clz@#<;ci z3gcoviP8fJ1q|Glv&w3oSG4)wY5v?Ua#nW3)2sK>?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2r#h3y^?O=@gxJQ!E|yS`+n zZhMZTghi!?QU8;e5AuhjG%9K(x68;ml!+MZ*>~oE!iv)eKKwJf>1JRM5X5&tNBoMc z0{b3$-o}GMOd?F1iWqFoo%>l#0rHDB7%z@B8rQ2%5A+NL;nhgE`psL6zQN6P;gWPcUSuZDd-gn zBH~a<2ZIGAf~JP1!I)f5-g_Nlk`r2b?<=J!`7ZB!ckeyl&-2`K_nruXfTNUkr0zq2 zA;1veFad&Fp7K0T9klLP+JMPmK@f=j*5$MFYG=H}`NtW&&(HT=rwx!a^*m4Q1(DCr ztJ>6C-1ZFar&_AGsR4Rg+LkIg0>mmtw%g=$kO_Ul#!KEb56)g2U};;b!gP*8rAq$v zBx{u_07@yMC}M{acV8@1Jo_zmOf3LAJI1AnaTcDfGxzW*i?2$5Twi4wJ3FQmQvVS+ znGp)pIRNflyUO+Z57=mB0Jz|GSb4X_TJv72@`J%^7|S1=42zWOyA*GqqFmp_=~Qt# zRkrF46sf%dg9-q=ZeQt-mz_rgI5k39%pN{K()4eo4IltVL1alrV;dOEV*>!APjSyM zvLrws#6(&Ez8i`gtDBrVvw%P{+O!c!Xn{cT@P)9NxYNYBDfC<0^VC(@J z^?Go5)eaiCTT1}G2UxGOO9&&ebTfb^`ZnQ8+*nQxW)I? zpSK3TL#zp#{(7BVep&+8UU$_!ehB8>Ghm#&g6bK>*wB zdH7saC8z))+~Wh3)mMH|fY#IacbC9;z3r0(sTAzMY{3{PODOU)d49&2{bjv`NsU4UzXGPla_!rkt7Mm7}^#npgCxS5C|dYx{j{v$g&gLZT~qbrORBM_*DmK z`ZM2Z3V%`n-w)U{8Yv}Ot1pnQ>o}bhZQG)hLTlx6cqe|Ah2cBh3b$>G5CW|=TK6HC zwgvXo^&X5NNfOdDMM;S<#^vx{d^ob-ADsD40oc<_DK!|9>K%ZhND-=~GX^092oXGh zYy7%q@ZidKei$;wAf@af^cS7F24jvGb3{lvjE4^38h^8SobMDsRaL95>o}j!NGVB@ z1bAVy>Bl86NGY-Jsp~rE^TIX0)g%17_W?g?yWL)tQlx1*d=tO`KAlcfRW;kgQb_(o z0gR1U@Yu+llMl`J3gG{swmYwL_5+^5_wEOP-~RkPUE{xY{f?AxKf${nP!xXq^N;dN@wK0D zI(_nud161{?agn0-j{Ft0dH@=tRE1HAEX~p*L&a?u^(_8`0ww{^ZNlskpe{P2UrQ! zl5bv|_)bdz`u%yW^>Fb1-*Fh1GVQ+^V`l3IgyaY52Mq9~AF%WTfTbVspVIP+P;3LS owFD5`Kx{1m#5NFHzdnG!0Um;DPj2w6!vFvP07*qoM6N<$f{OsRSO5S3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/beepskysmashglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/beepskysmashglass.rsi/meta.json new file mode 100644 index 0000000000..7c4fff623d --- /dev/null +++ b/Resources/Textures/Objects/Drinks/beepskysmashglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[2.0, 2.0, 2.0, 2.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/beer.rsi/icon.png b/Resources/Textures/Objects/Drinks/beer.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..31e283867aafb836609d3cd77025d77824fb4866 GIT binary patch literal 520 zcmV+j0{8uiP)ArkD&3n%yj|_YtA9&uM7jHhF&%>i7lS$4~mUFFs z0dN6O(Ey(1{;bpKG&QTm^ep#hMSZG7FDAY5##?W^hX6A-o;NB77&*M3XuYe&0iJG! z+CMQTICZK8ny(J%~5`XJl&ou_@vu)dQ)5l}z3P=)xZVoj}a+nVouxRKbedW&q&r$WdGa zkrXO-75C@?+_taWu3N!XGo%*4RWpVq_k;)EJam2WlmBrKr{PuyaJ6a_|3NQHFYAeg zb_pbcILtP60A>ArHOt@dq>P357+wkAWMF?702d9=q8Q+JaE;gY1vb|=2qc1{HevvK zr6@D@1^frS>=Z9E-5uuh_qXZ*(nk?oI()RR@XNl>?(saC%@nn&000(q)3|LBGWqg} zF61LT1?4p?D^28Y7&CmQJHJqb<7_3{Xu4$;XR7ERRL>aUb^ zIWd5f+Kacfw&IZkhfG{t-+3kwMgZAj0n1ZkO9$sy^??Zsc>r(U&S?Zd5_#KdRaO`G z2aUPBy&u^33jjdiH;a?4y<-7DRc7FOA^?=0C4xr*w;PE80EE)TW-fstIqmdXzAMn55WQ!|4_*@k z012|t3c9`0N5w<1qyQ@Uc6s;g>Sb=`Q1^)gIJ()Wujk&3jL6uEMFc)n5EYLz`&aBwTk#`qn&V1&j|Pr3g_D0ayB#;ZFdl&}r91+4Hn4;HP^aRt28A3$!^6 z)oCE37f4ltbd4N14958}Ien%#V%vziuIVQT#HauOY>rFWp!u2~ T7*n~*00000NkvXXu0mjfmCVhQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/beerglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/beerglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/beerglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/berryjuice.rsi/icon.png b/Resources/Textures/Objects/Drinks/berryjuice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4486bafdf69dfbd07538fd6c4e0d1a3c6274f507 GIT binary patch literal 349 zcmV-j0iyniP)oW5{;^Jm~*HLgF9O8?wwHI|_K2ZZR-0Fu*PU zOlByM9Ri>KsWI>~yn}?qKOy?2frY$9aLZvKKyEr9%K>N8jIoOI(!&A15fZo@@i>l2zHQrJhPtlNG|gvkS(ZZ!k_8xs0mc|u zYje`%3;;OivRZWurfGtRB)P8ZZuQn$kUVl#P!AzV?E4OqpPcvpQXBFjQsrjn>sLVX z1QCPWLES~R1B7!H6!tmgshapIHrPAS_!45rStQ5Ss z+dvR1ErJqZS3$5$7;b`tgm#B9P@8JgcnXND%^N7nB+n%YdA{fS<^7WP3zKCT_bJ!C z&h7v>01kiy&`N+vB%<89*6$SHA1YByZfaVttSim#`?|UX)ARB5gdoc@*D`=ySy!Sj z`kMk|Ip#M#S&sR0WnGB|xR6ygqwI!-idR_{2ZOU;cGX6ni@$#aUsrd@Ji0qOAo7|e z0C@=jAo{#-5sVqf70)OD^t4sB0D!q%Mmn*u8cQuD({JPNW2vQNp?H#{WZD7An9}`j%Jyz3^3|ZoYaul;`b6ZlkjQJH tz}m!P^W1Kp?FzJ759g1_0r+nLt^v|%qMtMMxvl^J002ovPDHLkV1kYP{qz6; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/blackrussianglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/blackrussianglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/blackrussianglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d9902e2e9a8c8d931b22187ee228b078d2dac266 GIT binary patch literal 623 zcmV-#0+9WQP)~wH$<>V5hdA6x~CT**n<%L2VJ5L!D_5R9_BERMk=xdLARi5 zx0VRJy!}8nQ0TA+Tk6;gh9#}Fj4;!5n0Cc@M|VbT+31&FJ=zen2l24Z=uCg8{bo+mMVX9>1?PXGWPHYqFI-xs20fVZ2RUebbZ z&6X{}FPjvno54OU`1?*7U?1iLE6fJwg=#{*DLBTHCItZAJwc%=U?MBv{sOig@PWIO z73ZW7p#Zc!005v`a#aDRY0A4MD4JqE;KfNQ%TZ;EL3;g_(?rKL*D5|+Pjs9-n_G7T z2&u+1XC}c!R`7Fa%0yOR+Xe5NqU__m;1@Cn2grSKMY5B)V+JkZEJzu^EsY-zI@`9`dHa=3cC)zf$JM;TMGaiZ0&*I zL(_rAkpKXoS<}AX8G2#>C>4$Q>B{=T+SA3QZ!2UR<7EKgeN+3IM*?tumRnaJbqfLl z4-YK@zXxstTesr<nw)@!xk2 zUxUVZjsYNL*wkEF`7vzCr`n6rE3uSe*VO%y04gFRO1m8*fG2y4|0O`)l)r3I6#6d! zfX%M+dO*lIa)6X!)0h3d(h7uaz(@d5je^uzbKn@@7~sDI_zf~Vq}$&NA8G&q002ov JPDHLkV1fpJ6gvO_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/bloodymaryglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/booger.rsi/icon.png b/Resources/Textures/Objects/Drinks/booger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..76d93084112831b2eece9216256e836e46e2aad9 GIT binary patch literal 371 zcmV-(0gV2MP)y?@?=QAJTOW=uv^4*&rm0Q?7lxX+^H{)y{)eo;QD!2uTa%w-#d z7WK?!@k#_C28a(5&d*NW&D~??JIa+TpA?{tu1c3Aom(>qz-4yz0-&+vqySvs--`2y z0jl?B;0Uk)P#4Dod9^i$2=sAre$Q_W6q5E#G?H15Z0(^LPBq4S{ zO(J$5l2@Gq#*6z#+-ei9x4`&*Fc3vkaURv@SU&3Cu&>aj82vyJ00KY&_yG|>QkUqw R60HCL002ovPDHLkV1lZTooN67 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/booger.rsi/meta.json b/Resources/Textures/Objects/Drinks/booger.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/booger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/bottleofnothing.rsi/icon.png b/Resources/Textures/Objects/Drinks/bottleofnothing.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6d5ebb5ad4e7f9764b9c10eba2aa5f2103a0cab9 GIT binary patch literal 684 zcmV;d0#p5oP)6dR=HfLP2QpWGNUexh$w4_G~-^6;bfePayOp zmcaBHHXf|dLZg^UDrT!Tsdn?XyPg_pPu+>#;(OX*m}h_Uyfg1RfyKo|jxtVkvUujf zJ@>--i>$4$lb)Ro_ztjBsk8KciN;n{TH{zJ0Fmf0*T=_E`+`RUu<`RdUp{@tQRHPh zNd@xO%R+X*}w$YITb8~a(x{eS+T0`0a%d%WmRdE~#UDq)T!}S#) zl}hayClU!M9Vr0IvRuP35JF&@CfRHjK+1)H*HSz+HRbmA_hT3anx>&B3XMjCN~JDkci8?rVU@fT>WV2axU2p$<_ZIAjIW&OL z(NO?w+uk!4LU_KCQYk1D3Y1DEa=9GobQ*wUGD$2J^QEA(P4Y0{~E5%k%2lOU|4-OQmM>{OJ?M#>V^u*o|Z|+5Xmb-Sc{>Ga!UuWn~4c zQN`(T=n1IwwWJ4GJ4C%z<3ak7zX0WO zneHxykQ$^{2{O;_-O9{zs!xhK7a?A7Fpio1B~^91a6e zDwRBGd47-p%rCrk-z;QMgFPsxg3xsNRoP;v+2qCJl&6X$1@JGU<6iLJ1N;GH)#p1D SSy6NV0000&xIC28t6<~vdPf- zfGnl86NYXQJnrnh%`RjH`nCN*=q5&+5Mb~Igk?=eevKJSrlFYtp_>F9RAT_U05Uy2 zVE8lo4b2>G3|M9r0IfyX89Q;>vFUoy0xVwrhc7to=Fw0000< KMNUMnLSTY%IJJHN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/bravebullglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/bravebullglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/bravebullglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/britmug.rsi/icon.png b/Resources/Textures/Objects/Drinks/britmug.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b4908472cbe7ee9ff2055d200d8586cd3f2f8a37 GIT binary patch literal 420 zcmV;V0bBlwP)MpfA1OVp+r3#qSSv90PSvU?S_;BbdnY9{R5(b06XXB0K6CO zvF|2yk`>xrA$=1RnLnbjHzK0(5GM_TY5frZ|K&B7o~HjYB)Awz1EhK&xELtqa0p9J zFLRcjrW_7ADh`r6@D*ckMD%WT;IlEE7IzHz&Di*3qnExpk_ zZJyJz>1TXX5>6~qICWlg#@mVVXU@zilggdT2h;!oeM~FXc09i;wLHHmY{5+N6RHQZ zZtyKI?c>{YV%rxE<#MNbY@7BuJmNH-a>YlP@t;e)4KJu4(=6)7rWMH_?w1?rj U@#*NmY;}-%p00i_>zopr05d~CT>t<8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/broken.rsi/meta.json b/Resources/Textures/Objects/Drinks/broken.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/broken.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/brownstar.rsi/icon.png b/Resources/Textures/Objects/Drinks/brownstar.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ee430d95ad6b8fa99578846ba1867502c3711c37 GIT binary patch literal 242 zcmV8&II$+cR0H7HvBmY^s5dZ)H07*qoM6N<$g4~2(n*aa+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/brownstar.rsi/meta.json b/Resources/Textures/Objects/Drinks/brownstar.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/brownstar.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/cafe_latte.rsi/icon.png b/Resources/Textures/Objects/Drinks/cafe_latte.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c5d52da5d391119b79ff0649f89e2c94d16ab9d1 GIT binary patch literal 299 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 B#MuA< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/carafe.rsi/icon-10.png b/Resources/Textures/Objects/Drinks/carafe.rsi/icon-10.png new file mode 100644 index 0000000000000000000000000000000000000000..7b9d66fe5bce6b71b2fd693166d28595c44a8d09 GIT binary patch literal 2412 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 A6#xJL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/carafe.rsi/icon-4.png b/Resources/Textures/Objects/Drinks/carafe.rsi/icon-4.png new file mode 100644 index 0000000000000000000000000000000000000000..9ab44b2132d299f4197b4c1b3bbfbbbd48fc7ab4 GIT binary patch literal 2553 zcmV zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cmgOc4{AU$e0s@54auA4fvV$x?1@^uDnx0J0 z<1g3U#>N;VRjGu7|MT|>f8m!(s-dv7s$=WXOYQBGGs-Sm^f5x?(Lvgg&;{a+Cu3CtO8>NJZFDf*t(;`3ZpaBz0@+4?e8Y!Q?mL+K# z2b8i8T1f(snYjUp0p#+==fz3dWPna7V?9r|%jOm42`QV%*2MjIo$`_J( zPk<0%ZH6(Ffk3R3nJPs|Nr(`~27Ed!Pq`!m0>pvSgq5k}Tmeo?du_ZUbjBu5S2yGZ zKya>E01Z+HV3oq9BHtP))B|TO%v@Qxv2w4umddqOsavPIWGTW@MWl&JZ@HDmtu|?` zY3rIaL&i90RnexZy<^c{I_Bya-_c>ovK3>iCe}=?571|n!J`ftZRqGT%{(CiVb&?L zO`YAzK_xHFUR}JodSBq$%Bw71b;)W=SAU{*qxu%L_sD%8HM&tt2dF(xUQk1~$YToH za>5%kAeIUNaoGrf&}m~98$BgO!2~-H+--?L`5_U0o9|;Vjv)i=heEmhnp0nx@UyN4vuBaV%4)X1RM#rx{&m zT&cFj_wpz%&%sUlTz%l)xNBMJvunf1g%`u>>`vI*qV!O)X`%!I$c9Zf#I-{M7-T>V zI75h>L@zL*LHt1kRK^R*F=o52V*FYgUOIr954Sc>W2sBYLqV;wxdKLQ zQL6}oPKKKaC>G#UAf<6}@TTk{1u)?$Hb9_v7tkACU>NEvSMs?=b5ItzYlJ2%k20lB zNHlP56U^>{x(-oq#D?4e5k^&PrNryfd(nZFu1l1gPulR^0X5C4I|1{=A`$s#Q;~l* z$AP(nb#8q}A!L*pFd2&PyYFh$RVRSzw@KIr`VItamTqA5tSCM%fVAea%K`;+WVPDb zW-uzC8zGp}c)PqCW}q!8j4-b9h)uqxZU5JX((;@+5p^4;idwN%2R}xH~%r?s3?uI z9r*7Q=CW6-ptg6~vNz!$H*g%e5)6rec4xwj&YOQL+nrQ6b8Ft%qxeK!y_KwH8}A4n zemE1pL;MYPcz}*l4@jb)J;PS0IJ1tW1&TU>bXGqqfOLEsgRR+Ch)KyLoWXEOwk$xl z4+}sdgmq^Ok|6Djv2q+uC+$H9P^e)+Y=a;nt4|MpFvKnfAFDr!KQ&_ymf5i(akTi- zKwu#-(OySZvVAHoC{NwJTC3rdCnf+fKo(FG{vOYf2oD!CS98!RU@P!C2Lj6E4t!_)T$rKCAY&CV;xvTg@M2Y7$Mn=z?P*`jq z!9;^g$UAH)y%KsBbQfQ!eO)g>RYH*!1yP~p7yxV3Z)$Bi`VZp}z6jX=6a9gS1Rn|- z{sl3wo(0I@h8+L^0flKpLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ#a~mUDisGih&W`Z z;$T6nh@(`o2o_3Pp;ZTyOTVB=Lz3d+D7Y3J{8+3yxH#+T;3^1$A0RHSPKqv4;{TFD zix>}%`|X zc$W9MKS#fkHyPj)iRYMZSi~E|Gnw3Vu9k0rgF|4fNZIQi@9ydB?cX!4{(b<_U2@G;{tEH{000JJ zOGiWi{{a60|De66lK=n!32;bRa{vG?BLDy{BLR4&KXw2B00(qQO+^Re2^0(}9Q+>$ zHUIztlSxEDR9M4fJaFIu!$1Nih5-hn4j6R+3n_}Xy!!hLpS+J4vlPu7u;UxY|Gyl6 zo(CAJO5#$p`S_J*q&k9;lyYFlH;(^5|NME5OWvRFj}%R#z=P`t+fy3ys% zUb_-Q^E3bhGVDJWV>p0;A%=m0fnnn(mS+qM3=Cr2oD2*M3=EdcpQWho09;_>CzfYP zR@$3kd_GpD56jNnd4|ssRCPd-mG7w<7KFfcIiadLXwsY!08Svg=MEqWMTY~Hb} zzLw0NQ!SZ4r+)hWeJcY41H-GY-|1Hnk&_EZasaLzz`(%3V63IH1eO44S`=f;0r${ z)D&$#`kd6#kdf4m$=dgf&sdn52c|*7z`(!|EcjoFf#J_+vwYM6!^Z&tEXk2#eGBkr P00000NkvXXu0mjf66UI4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/carafe.rsi/icon-5.png b/Resources/Textures/Objects/Drinks/carafe.rsi/icon-5.png new file mode 100644 index 0000000000000000000000000000000000000000..a307e2fd031f6ef9ffa6405de75f241a72b584bc GIT binary patch literal 2580 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 RkRkv8002ovPDHLkV1j}fj)edK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/carafe.rsi/icon-9.png b/Resources/Textures/Objects/Drinks/carafe.rsi/icon-9.png new file mode 100644 index 0000000000000000000000000000000000000000..44fd1c7910c38ade4fd2615e318081f77c1eac34 GIT binary patch literal 2402 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/changelingsting.rsi/meta.json b/Resources/Textures/Objects/Drinks/changelingsting.rsi/meta.json new file mode 100644 index 0000000000..4663691714 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/changelingsting.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[10.0, 10.0, 10.0, 10.0, 10.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/chocolateglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/chocolateglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d908c6d00b5cb609cd2b4e95e954ce64e55358da GIT binary patch literal 281 zcmV+!0p|XRP)abG$Oz+-E06N0uhM^4wI$+5m{?Pp65~5G!4qKoc}H8 zGvx}10Arr{Frt%?nL$KgW-#;r0RZ5=A2qm7@+Jgc$MHKrx&g(2DYN+3Pyq^1z!SmS VNSbLo+Xnyu002ovPDHLkV1j`_Y}Nn( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/coffee.rsi/meta.json b/Resources/Textures/Objects/Drinks/coffee.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/coffee.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/cognacbottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/cognacbottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b204debdbe2e8546e5061af1d7922f370920a61f GIT binary patch literal 507 zcmV|otpwae!9^Fv|DaGz2M5ijZHF#W z^g-$3q6l$OL0@8_G(0bPQh)Otq9WA6cdU7XIn(7_?)iQ=_j~Wm}U-hKTE2)!~j$M^+Y<}T%UqdX&E^{TYLmH86&p`=g}cCfae}~6u@T_ z49f$6u>Z_a(=kGC<1G8aR2j2mzoea#0NjZCTe?ZDRua&I7#3m(S0=nGzMWnmd2u~a zQ{0NEG0PA8*m>PM@ZgtG?1A4GaG8j6nTP`rt&#abbPRjG9ig-cEZW6{76G7%pHB~v zv^xof>i)?qE6=hoOy5%j+(iGoRtnZZQT)#@mR4kSTmyX6zmhaNSpiHlR|K%~6l_K8 zECV#UswXnxe7m2`jSZBQM_G9QX8ajRDft$RJMIm4Ux+%eonH7a;^49anIoT8+cM;w x9=_zn{(GC>vyTCIRSgY^hhIVf+Oz*1UjfQ_n?Eujr#%1w002ovPDHLkV1fh}+L8bO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/cognacbottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/cognacbottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/cognacbottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/cognacglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/cognacglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c8199d28d5fcf3a139ac591e40d7595b4db25e GIT binary patch literal 434 zcmV;j0ZsmiP)YE9LK+xOSMVU#z6%Y-=Gg*C#BfZp@WXThNBNqaB=nt1Sgk5i-Qyt>H~BX9E2N6 z1xwYYCU@sxEz&>n&Qi1F2U&8zeD0IW@9r1UXfzOI7?I8%3&aAkKr8^j)P11Z<}7Ty zyiPY4CQxm2R?cNZ1***!(~-~;I4f2G6(~4z<+Sb^$7$FAtgY#KbrJgMhF4V2L_2uM~6vt{|Rq;{H^HSS_T1@=JouE+jqhJSXx;$+G04O+c0pRjkGS{~7b?5|tLCv`h zB_QQ^N&ce%A;6sT&nJ*DDTvy3pBY*;aMd-Yw&L3R^60+j`#5yPV%qU^@IVJK5s~+T cSRitNPq(*kVMlbL4FCWD07*qoM6N<$g7%8Oz5oCK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/cognacglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/cognacglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/cognacglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/cola.rsi/icon.png b/Resources/Textures/Objects/Drinks/cola.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf320f5b5826e88bbbb54cf46b2aeb3131b9189 GIT binary patch literal 462 zcmV;<0WtoGP)k#^HAIU(3|02dk=o^efa*~`~7h#ib6H5rmEE)00+PU_zwVX zkwtQ@p#O|b40gI~0g!VAePp1Aj-dZrJkryz%jtw=2ulERuAqlQJ^&Vyy8whkKK#CB zl=Hk0gykL>i1(U>zuMvPnblN)MFrX}4_QdU>e3_~LB9!equ#Q!zDKxn|F-}D2krF? z8S;O%l}d>tfu0tcg0;62kD6xs+QWlL8bI(IkTO{s0|CZv51uUXvEJ^v~3Lc^@fyOD1P62qxcbSu07tARREXOf5F7` za&p-9WEQ%6c?RIx<4wuw#L}Mw{I*s7MdScD096Ng2XEGQI>U~z2mk;807*qoM6N<$ Eg3LV75C8xG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/cola.rsi/meta.json b/Resources/Textures/Objects/Drinks/cola.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/cola.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/colabottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/colabottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5e2f97beb6c63f17c8a10bf56dc8315fa79e4e GIT binary patch literal 563 zcmV-30?hr1P)BjE6vuz+RU$~Tp$Q0V`W^BCGUU7qLWkgwU^10{oX#0CcJWpy%FrQWv*ZJ$Rb9I= zB$k8|aa9IeqVW)Thhul>f6<+!d+&Ge-rbX&BuUt&UTxL;zX0&scHrUhag|OcTmYAV zP7-IM0G}oku5Aae1K{(?3B6vA(P+f4tE6W57Q~TNy1d?#f_EzrO=)j;9XfkH-d68(bRS59vnhhk-Cl;K%4{TU(X>Ole&v@ zr@M4)D{%y-T9Yo@e>+ZHhl`g6I15AGWElXvD^+x=HP_2`w7{k#Eysg6u6(5kl_E2S zP$>X1V%rj$%JdZ&fi;9s5U}u@}p;GKeQPbY&HhgZaGh-Ua7Xg?rL%;elGAjz}C|I2X z-^Sx659;fzC>ltKtZKn?&!x3M46tr({nzY2z$40h-kFSeBn1Ef002ovPDHLkV1m~> B{uclM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/colabottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/colabottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/colabottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/cream.rsi/icon.png b/Resources/Textures/Objects/Drinks/cream.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0ae7de873ba12ae7aba8c2780317133924ab475d GIT binary patch literal 477 zcmV<30V4j1P)gWgx8UzC&u&K$Qf|h70nwlDFh?cg-6buAi4y8$y zti>8C3Zl6P!Hm47J184^uPhS3;~T!8&)xm*y*o=XndC3i@Tc^;KwY3NP%{G0fuQ~z z2}A#@M+qopzcsEUWn>pQemhQ?A6 zRq;@0vGO8>mv{?Q#RKq8q|jm&tuZ4!gt7QBbMqUf$afI-abE;Bd3@or59Y(#hnJ3HFh-(9a*e|UTXAQIK8ClHBh_*1H8@3x!)@Z~;N+knl|)dHsUx?2Fam={`9>!A0(^Iu4T729afuN zt6tM}@;J}ZPaW*+q7IKXzXzA-$**i!KAOv6#jp;6UG8vjD0kfUE{)H~;_u07*qoM6N<$f~ksR A1^@s6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/cup.rsi/icon-1.png b/Resources/Textures/Objects/Drinks/cup.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..c920c213773188ba77ada88b83874e3de0cc6634 GIT binary patch literal 1669 zcmV;027394P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U=KZa^xrshW~SlJpz&t635}QYHl#c-xu56Np~`{ z*-8FPRqV6{GM0oMP?0cy{#fB3TpT%uq~^Kg9C4+R3Rg5dp4TZUrsH{Be7!>dK_Bif z7%G93vzzBNzCy1rA6UBd?NJ}BUv~U5MDfA3Y|pzrt{^W%!l$0Dekj)mHNTq9_2Yh- zy-n+>pA5+u3VXtVr;x8BJJ?WEP?r!)YBI3JeejQQocNcH+x7P5r<~h5XazMKBHL2TFjur+sq*IR1 zGH%09(YE6*xINa`L2Y2FEyRXSAx6d*B^p#|(L7|Qjt~=1Hb~}&mGf`K54*_ zF_S1|ipFe2$fJW#MdU1r8wijF<$)+UiDbZW-oEjT(J_{lPc_O5K&WIfput7~tdulm z>^H{}szF7Qs%ABHEn2hWlr`sUdDp3GV#(C9nYk6KE}mRHySaPuTDS?Z) zXPI?jtu0w;>B`HNud?c$+C}w|+B3P|Q=^L-AE5R)d!Yuk+06v)a-y3Vh;bqiw@m;G znm4oPloD@pn^`O@K|~o*>V`9D69d6CiFMJP-3z&2atp}r|K-N-kqaB$SC9)E-79i$ zxxGVe)T7+W0ch_+Dqwl^uWaPi6S5fp0_KhW-Cv)ND|~R^8JE@B>t6etEnYQ0U*biWy!R9$`igb* zWef7#&|he1;lxwIzq&5S1`tLJ*Z=?lg=s@WP)S2WAaHVTW@&6?004NLeUUv#!$2Ix zUq7TO6+tVAIAo|!7DS6UN)?M>p|llRbuhW~3z{?}DK3tJYr(;f#j1mgv#t)Vf*|+- z;^OM0=prTlFDbN$@!+^0@9sVB-T~f5g(-%A5>QlAPsL+GHn%DSUeSXg_%VQ}$P6u! zUd+ICeBHyt*SiSMazFRy=#%pX13Uup9Mg1@c!PLm)6_Wc6Ngwyl!?!YCv>_X@gvtI zhu=6CZT9lake*4+6NiX}Vh2kd%u2dK93>9Ric0z3tiv+rEzU}%##;B}FAV0@l{D9B zjv|gFB#?vv2{n{afr$vMDk%n1v>$WvkJ$bsxg>Ix!N{?IDinyeAN&t~cWV@;r<|l< z4Cs2XtdB7uunRQnmi2vXS3_oe2 zF4~fhrngW4-p}Zpa=_p%(7WdJ*4oGE1CXJvmT!QALtwl}+3POv?(XdE-!rZLegKPW zau?+(u3`I?J8+aVHU<>9rrAU(^isUUAAWA{Q zFcjXv5~)r~6dJe-NReF{Sv>jMA54r9X2uC7hXN>o0w{n2EUg70gi^~p=giLmh^X9e zm+IMizLp+{W(gk8RL$j_$4J1;Ul7bZZU$=%2~^2vK=%!9r_uu(7PY`~cdKue!rqAOODT4sYlr zAEG5tCjSMmtt&ka0&yV%!!#TRfys0;fNVM5EX_Ly@M=x{aCt^M@>RP0QV63nkeZsD k0i$YYVw|e*J7M7fb5Fr!tq+inx&QzG07*qoM6N<$g5lbyV*mgE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/curacaoglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/curacaoglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/curacaoglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/demonsblood.rsi/icon.png b/Resources/Textures/Objects/Drinks/demonsblood.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..198b52dbbc79f7b7241a913f135c2c68f25b7260 GIT binary patch literal 1234 zcmV;@1TFiCP)QKmWV>bAL`BFPL=-%@2M@t`kqsD;ToiH$ih}W!Q&=*(UREY7bLxd9 zaYdqn0lkDk7W9^b*Bth^=m=4C5Hh2IagvGaln3qDb~=gmF;&ym{UBt9BK3P!uU=Jm z<^9Rr+#JGY4Fgwbb!wcLz$al0fZucnM8q1n|8U?6mFb9x>6m<3d+e=9;S2oPRy4V(KMS?zCVYF z&y@jNO}^teYb!xz2I%1Xvw)S)oB^3!X?dfzH-BDDIF7RxoSEK!dgjrz)D@V?m6osl zHj=pUdv-+^f1@@YK2re3p1-F*@BMM~m-B;TkMGh)(&%rel+tu6*}~!gi)8GGR0Tx+ET5_FYOgpADH>MatUc`&o_Rk=KGD8 z&-4^jEEE#n?`dn#rtPxL+rM}6T|ZRvdD?@F>oGLdngsB565Q{q%;mWgAG96T()fQvW2 zz7O5LHU z(#s^i(EkH6xzchvmE6wVfuNbd7dith+pg(zcNF+S0Voy#l@VnhAWN z0K6?0Yj*P(6~0gaez2_C-F!uaAD;o5`J!ilume%&$7g_MKJS}wrC2DSfsk!gN>?r0 z#!!1j*<_f+XU>33u2ktee9#%}>2{V@Rx#Mq?erZ!=wxywB?qEue69?*S!|}>1IV&% zT(&+ayNfZ2&wUqEFD2o+{E)?!QXQ?cRNeJMwGXn!FZ2}Tg6p9^UuQN}r^X3y5V!)c z*~EvfKA*>es-sr zfmd0lG6F^7;VX85rvWYJBA#cTD_4HCJ{LZU2`@)6y} znDIG_6x_q5dK8ZY0&jM&>N;n~2ZR^G zgyt6k&?+nF?(20q0x%K?m;*!oByUr+wzQGFPC_Qb^HUnbFaSv2rU=i?+lH_W(AiXH zcGTwT_yhPn`E~3bG_S}fcQCb}e+yCY5c)hq6kzLIWGS9V+wY?UAO&Uid4#y;g~_03 zwKAi&C#BU^%ONKoyBGCju#7_ks@x6%SV7_sLL5YHY|nCNK#xDG^a+&D0Xb|^SUxAx z(A=8^gaaop4gpAEYb4V7wmas496q`0_u^96Q3tHzQtUGjJE1&;nl~q4%^!i-2_*-% zFGQ|#=Y*`;`tH{OTyBl<#`0UewzR~}RSJOCu8zFB0Kh*uY_G4%Wwf)oZUXG??SHv0 rc6r6<*y!(GMoz`w{wFK}{0o3rgWtZIw6*s(00000NkvXXu0mjfKpf{Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/detflask.rsi/meta.json b/Resources/Textures/Objects/Drinks/detflask.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/detflask.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/devilskiss.rsi/icon.png b/Resources/Textures/Objects/Drinks/devilskiss.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b4838da427e3fcda1bd5daed468cacd4897c4d5a GIT binary patch literal 292 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/driestmartiniglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/driestmartiniglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/driestmartiniglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/emeraldglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/emeraldglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cabe64b7f006a0cff4ffa65c362bcd32e5313546 GIT binary patch literal 393 zcmV;40e1e0P)YE9LK-c#A=g(*jWmSgAX7m1PSN^_&i+&2Oq%qNrwzBZf@Ek6w<|HXs#iD+Fyry zCG8;ej$Rz{TSCI!eLlInAHO^1`#zeCPNVczpcQBZT7mx{V9It3>;cu^T^=%R0;8%= z-VSh7^~p2iy(Ods%u@$<*O&DAKHmBU9`8SvjDU#x9|v&gueJvfc!-}i&}ZvIY7D6? z$dd^Gz)WVK$pU6F11ocV0>@|P0DzKPII`y`xrHSb`UFG>IL%XlNoAp&0MUBs1>EWO z0A}bD04>*#UwB$%C~~e(fOQO&aG?Ar00000NkvXXu0mjfc^9Xj literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/emeraldglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/emeraldglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/emeraldglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/energy_drink.rsi/icon.png b/Resources/Textures/Objects/Drinks/energy_drink.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6e909d96387b57ad338068e61f1a7591113e42 GIT binary patch literal 516 zcmV+f0{i`mP)=HI3ZMeG34m(Rg>p2ZTzvLEzNb+QAV(9*Q%?u>mZtMwd&eV1jsy!v6g&bsno!yt zjR5owzh)-3L^8cW{PQec|EO}s^5Ovi9(NZ2ZH`91e$N0f6I&9ADtrXrRzG3s-XisJ z40}rx9(NbX^afKCZ`j#CynX?c-0F)emp3YBQ%0> zsS`4at$#2Y{S(LDM&)RlZ9#)^-Z; z{5FrSFUl+Z^>#P9I?+WCA^_dCsJFXo{V*vBTW z0#i8zv%wPL`*?S@Xi|+%Z{u7L19*cGPN6`wKmQ>f3xg~X<$WMuLZ1|QpY+jlCawp1 z&cxP_Ae2{uCjA$rdKo1ZS!b!g2Qq*RAa#H*au9zfmJ7^o00000NkvXXu0mjf;(Dr@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/erikasurprise.rsi/meta.json b/Resources/Textures/Objects/Drinks/erikasurprise.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/erikasurprise.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/flask.rsi/icon.png b/Resources/Textures/Objects/Drinks/flask.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d318895fcb452a2059c95e943f5a69c909bda105 GIT binary patch literal 838 zcmV-M1G)T(P)5#65CQMJ`PkKlx0Wb>|=@X|zLxetpu7iJ;yAOBKm}myTbzK1bNe=)a1e$IjY%BOa z41`h=HYS?i{xwh-drozvI@r^61K+mLbVJ3Z8h|-&60eIhGBk*$8?+>oSWXd5H)u<> z0^q+>Agn1>LA)*=DA1N_<%ezGW5jA`OSQ6j%O(mhU*b6q@mho2SU!}`87Uy8B%d4Q z#Mv}cQ`6*gqx4@Gz;hhTf`wTKuR>@5*LA3lR5LO(NXhf*Ins%5yO`#SU>%Lcub9e#w(ZkMV66%l)6W)INOM zrT@(NK!G^{sI=RPRg$pd;P1Gu%d&((*K3rjAao8)m}by!OP-HojRSB!bD5sUhXEKK zk{CkFT@_S%eI%*@b@UwRWT3Z~l{B%a-e4kcDJ!6K1Qq#9o=+sI@z0gZ0739Y^#-W0JoprVWz9`&-@1|a_d5RQ2sIHY&xEsWpZ3G#Gr(-v8;cOg#Z8m literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/flask.rsi/meta.json b/Resources/Textures/Objects/Drinks/flask.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/flask.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/flask_old.rsi/icon.png b/Resources/Textures/Objects/Drinks/flask_old.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..68a2b8a3647df1b8b7d0c3a246cdf377fc98e9cc GIT binary patch literal 847 zcmV-V1F-ywP)qu0UQ2GLZkU~=sSAkbRf&jN%^$FmPR{;r$G)Rz&5~4~7 z(kjGuQ<}z&k~#@ZTz_S~>z$9?9j>_Ff=h*zb3Hoq)0{bTMy#!^@gl={p}U^}&H!hC ze*+M)vSWC*T*}za{(YN?mHp2EJKGKW)z{x}_-BV3->=|KU*e$ErdTRHGa~yeiyQUd zZEPbp>JO>cx43roDxWTXLZh+EPq$X7RjcH4uAQB|!llcXMVg!kyM9go7U0`~)!$tyVh~Aaw~Mn-C=yV+@1S4w=Ld8ABL)grOvx z5g4h_VL;&fY15_$Seqb~!t;EL)-;cfSo(IEZa+W>%k5t_xYuYB;}H6T(F249r42(r zK*oaFy=}_prw011}B_dsiM=W=v9ZM2NY<<6m`rhnSU zlA!f4H6V2tXsL-!3<=nbgH#e3N(RG#OeTXL1Sq4?Mk2K$KWe~G21G_fln``#yz%;L zSh8dypQ09nLn3-dlARApIrOiby2LD5BRo=IyyT_Vyq1_(7fdx89`R?(*ot z7RCy+QKryJ@ zX+1sR=E^FYwQcf67p)E6smDRH$>wI2T6HTmAax1$_V;NWAJOmhY3w{=5Dd9kxyb6; zZIYiI`rRH%X$E1yg$tF@1OB+b&7I%Y@rR0{n`idQs|-DlCx<7DPrk%dd6I(bk}Hgn zbKTT{)Z_T?_;_*A`oWN~Vu5b2$2)WLeDKkS{P5ipQYt>Xem&I~{>Ok($N%?JdIlI( Z`~{5AwL~#iuV4TG002ovPDHLkV1fj0n%n>Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/flask_old.rsi/meta.json b/Resources/Textures/Objects/Drinks/flask_old.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/flask_old.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/gargleblasterglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/gargleblasterglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5ccd0db9ef4a5d0f27fc18b647c357d5acf65502 GIT binary patch literal 1172 zcmV;F1Z(?=P)*DG`i5SO_IXs#PmY6(v%u^#_DL+xDTLLM!5fAP5!mqRRyCbOHJ-MK!r4Ncw6?){m)PB!Op=5o)s zXU{kH&fG)N=`>myhVBA%V_5**1?Wbb>It_#^K9j__)Si!R6@loqhPin3cw%TXQ}2= z!LLjJ+qUV+zJ7cXi8;>~F846T@TJ-A#27=Kkie}b%CAg-bUJMf+BOA%$-aIE03Myq z^?V(PIX(ba6_H|o!n+K9d!a(>jrs7EZC%HFmWcycKa=eNfW7;_if|D%iJ!{>`zQ1C zsSRtXVbnJC)Qb! zb?VF;z?I(Q;b=BL*E8Tij?f*C^ml&be{-(hSog?KbU0pAy7V2$5xVW3!QOX&xa8Fv z8|`*3Hp0*U5S(W8rH3BqeS3`7E+RQ)KACg_S^2)ZK>Sx9UWZ>7;ZG;0%nc3l^Dl#p zAqim9B0~;E{qx-OHV8K{Q+8M8*^iqK)^wqJe6&&K_o>j$g00gwFw z!JQ!U{hDoXNMu4z%qA|^Yy%$q1A+qhl``Im?)@8^tK1CG{?|YXW@cpHOegT)HsG;8 zAlL!`kSes((o|394dj8_{~E?~3E$3jFK7W?`vVd$L$RXKb>A)R3%qtrbTR?VnU(WL zA3JR>xOO60cYkmrgdG4}aY4oNU>F8SB!XuB`zraRHY>yNqUFuxQJyO_{l}}~m;N5$ zxw9aKp<*g6{L2O`vWpBLyTeW@YAanT#KBYk}as&5EfuK zF=wR;XSL=7R3Oy(02K&*K0p?s&j-jN{P_S$gg+l3iBRSPR6!VbN^ZA0jH`u~6MzP}H@|M&O)e@i41p_XB- zY4!gAz#-8OU%$Ac`+Thc$a0LUH||@i3gGj#BFnMTS~P?K0B+sBOL{TELNZx>0Q>Wo z*ya@uD+%mttMKqzbpbBF{ru7CboRRdEf(ukRaHpmU`~P8>z!Trx_k+iV^iS}UEMuM z5~!+r&#ac|4(t>+qN}@ysc;C3{pheHNtFd?ZaJqHi#rwCde2ex`U(cEqvyK)YU4gj2N_mG>LH6tl@ z1h$D8(s^)OK@0e?zcIYXd9>w0Km`Tacp3C zARZN!5d$cmKkW5D#Z9>Q?R(k${M;u1)Bga|0Nb1EWpBBbX7O35`4s#CEeyhA23!X- P00000NkvXXu0mjft?wgg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/ginbottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/ginbottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/ginbottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/ginfizzglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/ginfizzglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..69a9920e7d208dc338ba1cddb922a3481539e861 GIT binary patch literal 403 zcmV;E0c`$>P)#~_2i zz`+0O*RLnZaYTmz#PV5iddGK;XQWs}1qVPZFIoBic~3Zlq=$~;CuG?`Jq`8bnQNYt z>HtP!>jGG?SMEr9{^#>o4Eb*#-%IjJOF#GI`YA<<1Bea*q=fg($5N*XS#EM|<^0^{ z_Qdt)ZncqOIRgU;ApiqAzH>Z#Cz>sZO^)m7gy#YLe`yl}$Y7?iF#{||AcKOZ-$*u# z%z_Bn@>x*K!0?}>A_xM=3IUjf=-@vYE+EqZ3=G(!fE))K2Qy~o?0s4gi zBH!j#{xi@$4ZtcV1_lO(G{(S3k<(j@u&kx1posMXlh&=0U-bY002ovPDHLkV1k&~pz{C# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/ginfizzglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/ginfizzglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/ginfizzglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/gintonicglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/gintonicglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7b916030236421133f3132fbdef2c4fe0d171c72 GIT binary patch literal 589 zcmV-T06ypaNCW_-dh0O*+N83SmB#T{vZ>*Sa#6$rzCI8IEZECEK%)$6Ay z1!#pgQ24%Y1z`LX>k+}NE3;IxLk8J^-!exOg;oF-4h#X}B%xR;k_m@`>!MSm+WQ;E z4ye%@3YQ=VNR&bVDqlDqfTJStq`+|;q97njGn`z`3c$Ju3+WIy5H zFs0&oTq}8}1K>(YH&qBEk#>;fS#TV7yLK<3@oxxY<^kYdF}ZH4Wi^o4BpMgzYbw3~ b_#g2Hq-VRoA(2My00000NkvXXu0mjf;Aasg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/gintonicglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/gintonicglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/gintonicglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9951fafb6387e4603e3062ede5332fb2f038ef9a GIT binary patch literal 419 zcmV;U0bKrxP)#fBA)mv^)xoV(M>ju(qd_uB77@onp<}lwEiRfi zNiRtqN*57(7nG{xZIAoE_kQ=@<2Vuo0d{G7JFQ*;Q~(vgZvbGjLT{RfDv8}DwZ9F( zo93b0X)6JE52H{9LJEM@_t9%LaejR#b*oJbkZjk_=1DfjrNT#tZGLM%I3q)-JmTw78uX z1^_q~BF?x8VD=*b&x@3u)JeMWIb-_$i%0;123@88jF^rkB9)v((}8!||)^`~k%dd}fCx(?llTxV{EbjaLSES`=}OYmL=%RfvpI zEQ=VRloy1Ej8fHnN+ST)WBBS^rTsvO4yYE`W`E-)tN<#23gBM@yaU5pcvP$lI-39h N002ovPDHLkV1hGCwB-N* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/ginvodkaglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/glass_brown.rsi/icon.png b/Resources/Textures/Objects/Drinks/glass_brown.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5d354b572ce59aeffabfce07fff9aa59522accd8 GIT binary patch literal 277 zcmV+w0qXvVP)?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2r#h3yV1P%+C96t1MNlADmxqK8Xhic2|9R zo_r$msDVMjrwi8@|NnP>v3`HRQAtTji5dSVXGyUJ9ysB#&M(B^!P5gPnB8O@rZH=s z3SRMyVbdnX**#)mANPMLXjsp}|2U0Jd5voykacn?bEKj}pX-hT7kpa4uHR6^z)%yY WdGKx9A0ePO89ZJ6T-G@yGywny$Z`Y# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/glass_brown2.rsi/meta.json b/Resources/Textures/Objects/Drinks/glass_brown2.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/glass_brown2.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/glass_clear.rsi/icon.png b/Resources/Textures/Objects/Drinks/glass_clear.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7eaeb2668c7d3edf3f42c69d501bd62ba2a5f8dc GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ?Vc`?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2@%J-+_K!%4{rKOAROF0pE8Y-~JuJZL%B>>qvF-*0=EcBioaN&RuW`pw(L2{A<` z&}7n!-4EQRtZ-aQ>M1euix0sGlTigjeVcr?W%omtYY>gLiwBs{q6qfC;$V54J!OcqJ=Pmd$Li zT=wMxu=4f_04e~!tUO8uC;+)2vYI^rS5LQ&+IKcTgOs%|tlrfKdkwD+d4o7UwH{^v?wU00000 LNkvXXu0mjfz-VWa literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/glass_orange.rsi/meta.json b/Resources/Textures/Objects/Drinks/glass_orange.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/glass_orange.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/glass_red.rsi/icon.png b/Resources/Textures/Objects/Drinks/glass_red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4a7c4795ddd20ba67976a70c864d0aebd40e9f04 GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ8=fwXAr*6yZ3-SR9Clz@#<;ci z3gcoviP8fJ1q|Glv&w3oSG4)wY5v?Ua#nW3)2sK>?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2@%J-+_K!%4{rKOAROF0pE8Y-~JuJZL%B>>qvF-*0=EcI&Vggk16abN;}A5Az?| zAFfa7obhCRNg;zUGc&U?5CcgYX~Rj$0z3I0C|owmNjPx2F_3-2(}sE;o)s(S-{bq? zs(Sil*@1etPn%_}6tt!H1z$->TRe$b;$-GD{)}9Yb*?)OTsYGPcKU`Q1_r4=+Iojq S3mOCc$l&Sf=d#Wzp$Py3v2S+( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/glass_red.rsi/meta.json b/Resources/Textures/Objects/Drinks/glass_red.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/glass_red.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/glass_white.rsi/icon.png b/Resources/Textures/Objects/Drinks/glass_white.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d456a0ff9e04fc0c0e5074fa49d39705c028469c GIT binary patch literal 236 zcmVHxAz!s}lL&;iy=pBZ;vx$z&D9L*g- mu0^=OfTw{`2aGyk)Byle0U-!|mK{3)00000vSe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/glass_white.rsi/meta.json b/Resources/Textures/Objects/Drinks/glass_white.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/glass_white.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/glass_yellow.rsi/icon.png b/Resources/Textures/Objects/Drinks/glass_yellow.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..88ae2d7b9dfa6c329e54c495dcf62e518d433427 GIT binary patch literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ!=5gVAr*6yZ3-SR9Clz@#<;ci z3gcoviP8fJ1q|Glv&w3oSG4)wY5v?Ua#nW3)2sK>?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2@%J-+_K!%4{rKOAROF0pE8Y-~JuJZL%B>>qvF-*0=EcBilxY^)Oxdlnzs7whLf zqp@+~Hok_8iD?J6ys!^>r@vOVAxH6P!hzF`f$Tk22?t~y!pv$uIrm8K=6M-8Ifebk x#y_d|Yde3c>sijSZiwkFXk_$f20L>FGefA4nzch%Yz)vl44$rjF6*2UngD#zX2$>k literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/glass_yellow.rsi/meta.json b/Resources/Textures/Objects/Drinks/glass_yellow.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/glass_yellow.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/golden_cup.rsi/icon.png b/Resources/Textures/Objects/Drinks/golden_cup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..dfde52e40ba70b886e49a3d30e5434a25abf614c GIT binary patch literal 1066 zcmV+_1l9YAP)^C58bBMI=IOXu4`TosuR^>I#?C7&pe$jr|)~ciA;*=uTa* zY$lUix-cY##9FY4$S_I@V!}AiIQR3M)5S2B%78OtQ+-!A_v3kf_j%7bIY-#G&D$*b zR^8uOfP6M(+|}#mzcO)GubX@}Rafr-Kt7u?Qx_+Bysgm>Z@e*tet5$?-quWAoTMH^ z+p9Nno2LO7O8+2|`g=3?<7ESI?p&N=;eJD=UGI-@@16s|^z;~V@H+uBCbxN-mp)TLRmy`umyp$4rH zF@@Eo5mFJcB538I0w1lw$ZA)&cND2hvtn+pfaB=HYz_w~KJTS7Q5DPO{3?J}5GsTS z5p4#9!HPzSwnwXC5lD2r_pfg{6Kxcq_cjMmYs2*30JP)-Jl98ux|%|*gn>vKLPin7 zAW=kwgXj8K@&Qnt1&76dWCAsaT9wL%zz_CPcx5`v4wTY>i&14t<$s zOfqeYOy(|O7@|WBfx;+2OGMN`T0MwJb(EJY2{M_xB-6H-=$?7)LUtrTGHr`nH#1Ch z&zOoogzE)_N@0Q!5lYYk?RFBXs!v2XQ2LFEKg2}$jJb6)bL8JQlt2w)^lY3L&LEDX z@m+&)HG~GwjRRo9BBhch7LPG{HclhvP-i7P3?i3JncUj%Oiqp?rG^J6?PS|4xh5; z0pRU!;nUuVRP!5>WZD)>i_5s>@}BuRKJ6?mE;s%6EdlI@0B{|*W%HH+YSk58qi-Pk zCK9aysxsqw3u}8~&g5H@u+X`IpAtyZ`_I07*qoM6N<$f-KA3v;Y7A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/golden_cup.rsi/meta.json b/Resources/Textures/Objects/Drinks/golden_cup.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/golden_cup.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/goldschlagerbottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/goldschlagerbottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ee3256b12ee5e3353bcb1ca98a27f76ec78b4aed GIT binary patch literal 500 zcmVPX>e$WAapPy@{ed}t09|&guFtT zUubg>X0jtO~v7!nXdr(SAbeY13+~Eau>K4b}sZr|_m61CcU>Eu|zt!aSKyhmu#V7+tMP*N#G@*OIg^_3s zM@|=)9yfq~X%Sklx1s{+-DLp4Sy!1?t~S5oua?yJjQtNlwe$bpl03n61h+TWRrh13 q2~u)y0I5)@>TbKxPX?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2r#h3yV1P%+C96t1MNlADmxqK8XhiPBUda zUwr!G)Sre11)nZlWBmXBaKy0{Lg^EqX1riX;aN$RnQL78fGp*+vJUH9cO1Cj(*kz!h9U-rk~tcy@(cD91HH!J>FVdQ I&MBb@0FWJQB>(^b literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/grapejuice.rsi/meta.json b/Resources/Textures/Objects/Drinks/grapejuice.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/grapejuice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/grapesoda.rsi/icon.png b/Resources/Textures/Objects/Drinks/grapesoda.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6b247b3fc7d0693a82cf09a4efe45c19d731f28d GIT binary patch literal 365 zcmV-z0h0cSP)q;0Klu}ClP7;p0zg9%oSY$5oxWp7-QJ)_ZVZa z)?S6WJ3to>;Jv4+D!lgqYKW*U2z8Di7-MkGv0krn&av5S2q6&a9P9%DItZqL5CVCg z)7>SZ&SR(20gMJ?LVevooVJe#D9Rx;UqlHY0VIGQWfgCOx5(#!00000 LNkvXXu0mjfR`8!u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/grapesoda.rsi/meta.json b/Resources/Textures/Objects/Drinks/grapesoda.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/grapesoda.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/grenadinebottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/grenadinebottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..71c357e129340f4f8ff0d6240716f66666c257a6 GIT binary patch literal 425 zcmV;a0apHrP)2?oncVyYhK;y5in9wiv7xIIn>q`@ftT4u@=0+E!1`05X6KAOpw%fShz=_v$*1q9{aZ z`bpzhZ5*I^(Vj4JD}#Aq48Amsumm-G%*d?()Qf%sA(J=*2d!32xDWa>gR}NT8b_u6 z57g}O$DUQzO@nYcqhuOybKThgJzmgUpbqONRE9XpuJWw(Xf@EF)crT}o1#6Tb z0K(}E5)i3G0Ef*PakYoabs(?6bvYLTh+Gg?dtlqdFGmo>i}@x2)LR1_2W9t(zfQrn zHwyru>^=lBYWETxM+}hq4QQ4X-F6KvoVvdjyfZt5HxH4dBZ@MRPsXJMmu`?q0^qG4 zTrv&xg$+FkfXIfg0Bd-ERq0zXFqjv<`Ma?Nc#<{@!VJ`l{*Gkdf7<$wCE1?^FYTORj0hXsHF-)rrkd4~Oe+6hxWwdIxj2CkG-S2~goppet>j%9uDq$-PV@o@6}pYP6RTf^ayCQUV}ZU78`0Wbi7Bi#_sJiW^o`E%=_0E20+?{B-i z{i8(RcWe=a2*5cG7>ts=ewa%_%1iL_aKr0lyGWd*#4}GzN+AXSIQx9YQWvc92^vuL zC9KB4BT>IgoTQZ@YTbgM9dhJNXa{g|dPU%k@%_RVCusq(r&%|xRt8*^fg3`eLD_S5 z2>jlJO5#u>16uEhooCWe^#Fk4w54FVt}}3OfGm4jr#{>&T($P4iF-h+5Xk-@HrA+L z45>ItD^Eo+z~cKI)w;%Y`46!c2H8j!1AHudw5)T~Vv1w;Sbl+H_pnq)EG`C!{J9ms o-8J_Z)fL%ijsFJ>fB`T7Kb#+I5H4B=CIA2c07*qoM6N<$g82NX!~g&Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/grogglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/grogglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/grogglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/gsodaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/gsodaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..debcfdc2c48b16e80a0afd74125fb663b4fda06a GIT binary patch literal 280 zcmV+z0q6dSP)Hq+MJTJ{p0bqat00003{NkBv3jk`=L4DKrNWg&yj`Ls2hc!HV>v&_huWtQUI{X{}zA6v=4?@du_?h``P79`!HLa2LQaT|AgIB50u@VQREBH0I%G;;n=e$)@*Se z-OZcv^v7H5TxqY|2`Z$D@6JH~Ocdb@&47Pxdc(uRY$n@|+2TAJrqjyT=P2=oX28D& z-*KGEouG0CQ1Jb;fS1ob15%m7;%aT5uV0Kgj#Ej_RBt~!_UuWhcVH@0SRA`_K6dp= zdWnj^TAK);D*@y0zOlXAw~QP%+tU4BrTYQA?2 zWcXYONM#Bo%d#xS*otLY_5OCo7#mH-n|K1?k&gTZ-XLywwKu*$I?(uNY2mN7H|aae zyw?-qrw<)z3~GxapDO_g+b#n@D*y4Xwq$esS9^&!25x?)Siopv+aGbL=KCee=Q;)D zbGexJ{b*v_n(blBdwuWVyK$)Gi?jzx=op%8jsy5T2=04Ta(V8+2Q7!yl>f$)=|A@# z;0;1`$Gu86$MI-sL3#24{J}jDYmpiU?gVVCZ@~T*8(9GRn`{8UM0O6R+B)z?I1GM% zkSO@>I80>cgsvy`ENCJ-hrS)1IMvo6a~UD7Uwu0|mB!$YLv##8{u5>oyF2irf1vWW zyJO=3fYD^U>d#&L{E6%w$~PvJ^JC}6F#X{j0J;7PJ&e2cwTS^hK9^fg*!DUA7-}sk zd+4PTU+VjSTVIao`Px27n%XL^Nq~A0VQl3XA<9)9RqdZYf%{&Wrb3fVk9n;0AiU05X&ThSdp)e zri!Dcs-r2B;l`mlhOqiCwFJ4~TBy&bG-#A3Z(5>B5K6#W10S{ed=UjzN4xQm_yb%~ z)#pdqpAhOPh{_*8+^N;Cva`T-un0xu@+>C zh04p@UM+e330}5pewh6i_6O8LeZCI<1Sx+2Reior{sduv0A+nXppQR6*dGuimG$|$ z_!ESdpjxWWkGelW+8;nwpRbEQ!T1A+`NkhW%s2i3V!rVQ5c7>cfS7Om0mOXc47w>P)x=1cP}6*a|(l~!Xg0{vZtM64j9n{I;sf{^eoFud!w?t~zS5TmH{ zN+^DUQCMJ-7|{#aD%-4_FH@&&rweshQS2<6Bt3B8aGrCX=fm?o&*AqIhGDRorfq8W zEeDWqe=OJLEiH!p-QG1bZzMpYe-1F@$WSgLL%C_4*{}+hI@bu~jRD zQw9h+mqgp0K{|?C0dVhm$hCkKxxQogDy82%dCwQ9hGH(d-h-)+l!SE_y9RSpv`m z%OyTMo=Kd}I3H#uj~1(V-cUgukt_fRjoU9{Y|kmg@pYbe`Grhwb5Xgk492nnpb5+k z9%c*N#7bQ_zQm~Yl@c?*VL>^41^|a0adD$e$b?NI7Ng(*#y$fmw_rv90LKfYfW=IX j{$yM0$K*f2KMC*+xV7Z6WA#le00000NkvXXu0mjfT+mqC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/hippiesdelightglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/hippiesdelightglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/hippiesdelightglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/hot_coco.rsi/icon.png b/Resources/Textures/Objects/Drinks/hot_coco.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9b9bfe86d23167849cc559b4e9c53b5f81570faf GIT binary patch literal 305 zcmV-10nYx3P)3-b7{>8`tT;p{chf;3E-j@~mv%}&PCrBip+mubu3MU+Tz3aun#oBK%-|9ihiW}A zQF|2fZ1+MgKX@M^%Ce-%v>LrV0TLhq5&&q&98%KwpWoJL@n--fjnA`!&gBgNtHl^F zJ{A!KP}2DB#ghK*^Va;s5|e?}<)V0kB%yO%dVoPI!Q7bbW9aq5yTNM*jRIJavKq)@iYC z*R%OF`Y{S#fpuE&{n6Y@c8`kua3R+)bC5ltp8lTy(0llOKbR!K@#K-Tf9jm~&@<#ZF8R5<0Myg+Y)@ zXaO%KeYSg(UVq8^q@pZKnoO(F+Y=xG5+DJ9cFZ9qjsN*=ofdxvP}2B3E9hL_0I*t& z0pnv4K>#IPop2B;1yV>1>Yady@bbJxSRjgfdoi^1W15$WDS9^O);GKh5G;i002ovPDHLk FV1kMLfx!R( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/hot_coffee.rsi/meta.json b/Resources/Textures/Objects/Drinks/hot_coffee.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/hot_coffee.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/ice_tea_can.rsi/icon.png b/Resources/Textures/Objects/Drinks/ice_tea_can.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2b54ae98519479a65e815d1dfacab0b51d3f667e GIT binary patch literal 507 zcmVv`Cc^_WRcQ`J?Feqh}mDJq< zZ~ze2jMfRiy!h638CJwfMpeJKuj_X_q@-|Er1OPHLh6F441m;MM!#`!!9r x(c$IxQ`|{S9~pdGbb$X|CBKLq00+PUI0s7@i?1OH(Zc`$002ovPDHLkV1l6{;>Q30 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/ice_tea_can.rsi/meta.json b/Resources/Textures/Objects/Drinks/ice_tea_can.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/ice_tea_can.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/iced_beerglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/iced_beerglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..250c45a712f044a148eaea198a67563104a192f2 GIT binary patch literal 455 zcmV;&0XY7NP)YU6o_i>Y$?7Y~2JwCvnhGq)y^%IQR;_fQ#=Sf*@LO?a(4Pi8#23kPb>W z5k+m&>!5AbYVlOsF8M7v+$87saqhW)B%jaIPno{D#{e-v3=jhV3GENLa%9`R&yG9N zHGuu_$!;vqBW)~lrZ%v6@ZA~doJ09nP0y-xwzJ( z)HR_9)S`RbmqQk(1{=@MaohR%LCPi+j5AE&!`aOqfe&}(J;FyCvB<0{qpkvgwGTi@ z;MYf+arg+Xqg&bPDR@@^Q4t8g#DNc$sMb9IL=Z_)s}`GMQ4yRpM5PZPom2o>|5dh* z3QSM#G))`kuzSA7%Fwf_3)Ne(wU!9eVvdv6rs@np>W%Q-ydHNOz=%*PZ8j@VSBDi) zA4bLq)}(<_>ooKPKn#`F5aR{7F8}UN!`Q!kq zlmo~PAr+9F2w_2w%*UEHY2^TzrIZ4S9KgUpe%w>+0GP$FP@rofoH4DBD#6ddKxPQM zfBPEF=HTE&;gbp&$!V7F`o;Mfo46a>cV1G>A}a*Qu?QC!@CM1K14bP%>Hq+b8%jXe SF}b1u00003_VV{LD!QZa+jZf-(BU7TD*I&|rxw3`Zrf|Iz44uXr5=u&W1bm?G*x+N}x zAR;)5SixdbQK)~drisIuY6PLVXhrDM2Bw=aKpsiyPm6tWh`+Idz_2Di!I5AT`uhsx~obnsXfT||RTeSee z(;XY?%UEr>?af4VEU~$&9H$)9!LtpGny3{^bNO_5UMrU721Z7E^Xc$B51dOtG^%)7 z7!dpmhXw?b003P&;@%kzF2WCC67%xjB$(~D%TLKo5+Ej#`~*}4%Flo(0J_1&2H^52 z4tNP%Ty#c2MJ7T;CUF*sa0@s;2LPPV2tc`+wjfTQ<+&%H?J7RKE&~9jLte*M uF~E_5sJ~(dh1~7Kzwsz-3A6%^ZMixzImWA88&=IG-GI zC@KeFmJ9u3^&!^`vJ;`uKUN>OubCJabh-F^&M-VBISr8Q00st#rBAB zV-_Ph&GKEpI6q?(cVqj`OR8C9g#bAg;Q|BRAQ^SQr~^hF002T!U$>eJ5P<*y002ov JPDHLkV1gYumZ|^% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/iceglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/iceglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/iceglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/irishcarbomb.rsi/icon.png b/Resources/Textures/Objects/Drinks/irishcarbomb.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..88beac108f048343a8ff591a6448a52e3f6c147f GIT binary patch literal 451 zcmV;!0X+VRP)Y5Qd-G%Xuat#Q25U+XS)DN^C4eVESrs`d8C6x{^G{iKv)3`q*Kg|4Y756-acU}2~_`_(+WUDNO~^0g_*WzPOk23 zQrZGQL%*{)nQ9MkZDj#l6AH>nb9;Hz{)9|~2Oxkk9~5>s(aOPdGib-h(JnQ=1c1A` zA0j}ry3Y?q20aHAD}tl&{W<`qQpeYg@Bk1&B*n{2|;Xs zM2Bz6Z0BZKo1Vh;0)AE30AzPgS&mo3dx!vx2_C}xQfsegZIg8aAWb7w>RqV)64t{= zi7=cTrQ`=!f3D#JsGtHFx6!kBcL35VnsMz~uQvcC--2IjFBPyh;Yy+=mAx~Q@Vu6> tY}0AH=BozX_5bX&umAceGri_H@3nNhq%%P# z#SGl~=FGcSEv&fwOj*D1q_M#tg{yUJZb4axbLA!Nu31Wd_Wd@|m9vxo=xj^d%Ku!G za;%vf8Z`q`)%=82IZ%%v2Q}H!-ged~+h5lQt=MFfW20Pg33^7>@+}Og^7A%Xbd9B zfpb|4)EEG7Mc-(5D+SF^x~`cj&>Duztzo!4i|dJI^%tohZ4Tl>Ob=dtTpR4hEah=^)dPWu#&5|1e12Dx?d}}_cpXik zg%BVFLV!SgfjO47IDmp?q)wj`I)IcCqy*&0A_3UnP%po00D!$!`7MD!wb`cG|9A;K d01sf1_6|Z7bDw*wo@oF8002ovPDHLkV1fx)xk3N{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/irishcreamglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/irishcreamglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/irishcreamglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/jar.rsi/icon.png b/Resources/Textures/Objects/Drinks/jar.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5daac2d49b4b45e43a2ff7f31ededc94370cb637 GIT binary patch literal 328 zcmV-O0k{5%P)gTOWt<$N2VT$C6H<|oin6NiZ9!Jmr0-d)z_%XYK(I_W#AK#$K8B+Lm|A2N;FCeE z0|==ojzXk)!Omrwuuoi@bK@`A`GYH<`~B-=3*`8)X0iKrGeQ0RO)Y)4Tw88*=^wV+8=>)R-;Eql zt+JGBEr1a01ptso!_^*oe8YXP2aaK(T&3EU0$7R;0O*>LXj`KAijZa@y^%xwdcm!o zY%u_yOu#R~I(-KGA^>1#^BhwX;|Oo3U`al=mND2*!IMcLhV^#=PifZ5sc3_vw3EGuE0+~{<*&cA9{4G{+fdkuV=G_&%6 z3Y%D@`(ZJxZ zb2Gh$0Fb@7BBLWC)Swyc?cE*LlJV9($6iL;U&9VS2jBy+JjD4Xtu?Ly0000YU7{yPjp>2jHU8E?+3>~Co5eKmp#iuBpd<7?QbrTm~A#N@{gGEXpLa9S24jqcc zD4p6O{R_PgHG-Pt=GKH-$XUO0bAI>U@5|-N^+~tG zg#us)SIj#0HrE|PjFv?TYL2jiaI_y0FG_@UXDn-|JuvBZI9`+pFG|E{S*}-Lv@Bx# zLOTJ!J-`CN)P(ai8BNPIhOhhy0RSbxotS6Gs;Q-jdY7x_jKfXrlH&#jHaXG{}PHc?H9P{N<~db>9Hg*AM`%@9xQVHj9FqqryHl o8aO^W2<|x!TMHk<2p|IZ00mHwzM6Ca5C8xG07*qoM6N<$g4IvOKL7v# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/jar_what.rsi/meta.json b/Resources/Textures/Objects/Drinks/jar_what.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/jar_what.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/kahluabottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/kahluabottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b51b3cd44aaa8217dda691c9171d6a4f558b912e GIT binary patch literal 517 zcmV+g0{Z=lP)%+O#*zt>Qu&a;f|al0U$O+1-?kl9vmz zt41>>lbvaHXP9Y7#>?zHE~a_PrQgvbFv?*Q)r zDgcYNK`pU2swMVDwME;YCiTgXPHg=ApQRsBeJqty3C71781BeXv5+S)v!+q$I^{YB zfsn@Xh|EVRf!g>LotI}S7HR-Z=?_YaivflP`n1ZDV*TA>u`o2yC+Y;H1P+5?mFY5o z)ZZ86=TT!#KDpUh$rO4zpPhoZ3jnMW{mH?MUF;z)!TeMgF^`>?$Ie*qCu0GctK(ey zx2ULVrJ}Btd#{J4(ztN|ZQbqME*ub?UIid?DM(9mnQ;JVJI4T6XS;QXbjKeNfM^pY z8mh>wH|r4RyE}v)%<${^ZK>1+C;RIF_}yVXl$DD-#9iQXsht7J0DiZRNa%)0=!U=l z?!*8}C2$@^0Vpao8w;?u`je4wllTJx0NlT~+1T_N2e9ePz&U5f>kH`LB3H67#e3lV zB23mtdGslnBzMEFUxuHYdbiOF0G3z2n+ySXNxj{R$xG=G(%q2-K&zAy00000NkvXX Hu0mjf_j2-o literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/kahluabottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/kahluabottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/kahluabottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/kahluaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/kahluaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0537d8f80e6c604f72a607b59c685db9486adf GIT binary patch literal 462 zcmV;<0WtoGP)b0S5tS$@$fFBBqz=4t~C5v4c zlQIoph;A%}rWOyc^X2cgG*TrffZ!Vk`~WflVm1R%3V0>=`})d!Vpvc1?lHl72TTJH z0#u$Ke1)^)qoGaVc!R|p_ysXE4X_o2dU|``-rn604yu>K@kT_})gJ=@0LYVXf++PR zL6#>%tj0Yt4Wfvwt0#pQZ8|s;(v4ab06dZ$c$!@+@$4R897H{3YaXrMY(W&pzQB0Q z0nSSpk#+UMFf5yM1K25U02g73yZr#v7JDn7fC7|S$KVDar1O8UDyBJbQ6*ZNQg|g1 zZlMW6I+5(vc@n_{uo<9TgL-$xVD;5LnaSW-L^LCbDzObRl@%iu9 ziH1gpCarKe(qa|1%7v|^Wy)6PnY%u4e&Ut*!BWFIh5vxlQK$Ap4VO3#?=-YX2zcl$ z3DR09rYI#e|7^(viTF=%KK~Rv`d@SBoIln7e&5{r#P-_z?};;~2CzGQZSdc7=%LsS0tg;NZFKN!lo`L2HTpg5N0iwh4O9uwCc*q-J3458E9@=-L1bp{owx?;nu4+A04`` zZZnlrtfq#|fKA?R|E%8|CiZl5s%X0Rzdmt(VR}qywB4Ni>S*LGmS$&X!VM&Zn%B(+!`ZATL#{1a_H!Y9x zdG%rKw=Bi*W8yDM*;orS8McM#ZI-F}u=mEJ9z(SyDVm@6|4;v@*ceswdj4Vk`gMG& z-pjs8OjcrMn4t5}cS-%^8vXz5I-A5k**nhfVgtok216;s6%^(VIfIaiN5qeNmqvuH zFq*l3)s*1e0R6T$o!*zLvUdR4?LpT$uC{KJU4HF+V%Me}`DtsNH)u^zGfuqsB=_dl zU(BoQxTlIP%S|{P_e)pcH}i%MH{^lTziZD|uiCUq;}>(x55M^4(9oL`t|kT-w{!=v zy;zuDTTzSVcpLJ4X&D`A6>#xc`SZo*X{@=B}VPnv4pTCU1;&^V# zCj?#i#}It0^##AiPc_!J{1xi+CVXL^@&|0utIx^x7@mTA^%rlHP{uiaqdlF#EW+UF L>gTe~DWM4fEjNfE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/kiraspecial.rsi/meta.json b/Resources/Textures/Objects/Drinks/kiraspecial.rsi/meta.json new file mode 100644 index 0000000000..eac9b60db8 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/kiraspecial.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[1.0, 1.0, 1.0, 1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/lemon-lime.rsi/icon.png b/Resources/Textures/Objects/Drinks/lemon-lime.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..18fee5f8b4bf9816b38118a149a320e347d1c8c0 GIT binary patch literal 444 zcmV;t0YmXv3B8d{7BI%u)B z5IHU^LW&Tg5=9(>Yp{P;)Aw2Da_{y&aL@bW`ySr!9IC3)%4%!rbQ{11umJ$4%tuN( zYy8w=vm*{m0F-prn2U@t?DLxR(XkmrNv#M&2mvVRtP${g09cA|0TA$e@Os>+r+ZQm z!WoE6O?(diUb_d!qE-MnMBaksjZp(&fBVIxU*>g^n?Y)2*j!bGPCz&V(M2EA^IgC6 zz9A@_iMmMu4E9elKKp9YG)*TQvxXQy&h>`ADBY)OAa>{p$(}cXB>WzXgHbG5|OC76are-KO5ME4aQt1R5F0 z6hA_!TNA>kt59NRJx{UtwFfj!2O2w|UJ4~d0fbgDKx|nrn81<%0000D|33a>N3%qX1@cw6Ze;1H)Mc z1_lO(^Jlh@Y!2Dw0K{ULV?K~;3?&88S(GRs7mytV3=C;-M^FMN2!UBpM=&7Kbag-) z0|P@kl%0-GA@v==&a;$(fx#HcJ4?3Z3=Cwa0a)VQ!Pj5+`STM0~)9u!P(00000NkvXXu0mjf+SG>d literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/lemonade.rsi/meta.json b/Resources/Textures/Objects/Drinks/lemonade.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/lemonade.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/lemonadeglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/lemonadeglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a2d88c583a52067d7167b760dc8ae35779f81cb5 GIT binary patch literal 435 zcmV;k0ZjghP)Z7S7At^?@4q3#PX7r@1OUCGe~;q zD1JhgwU-c6FI~R-xerO!6X}412csAv!9I(Dl|PArfng@YmgD>QkkzdE_@04RTAG1@ z;V1PS0CNPC`HbNY1A~vHP8Cd!?b(C*zoc{$*Ppx9Mw0EMH~<~k%hb+?b7UA87#JAl zZ#WnGoNf+)b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/lemonglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/lemonglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/lemonglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/lemonjuice.rsi/icon.png b/Resources/Textures/Objects/Drinks/lemonjuice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..01abf17a3634448791d7c35c2a9b8c7f0e35d526 GIT binary patch literal 282 zcmV+#0pmU49Pp0m_ZDnyx;X$D3`htdTRdPP zK#9dvaR37YWx-Fj1CTAHG!)1x2_ODpI>EreE<%aLWIMo(?K|(T+xI@>lB2l;$h8O; j81M$kr~^hFFzNsR9ArRslE=ya00000NkvXXu0mjfLuGda literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/lemonlime.rsi/meta.json b/Resources/Textures/Objects/Drinks/lemonlime.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/lemonlime.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/limejuice.rsi/icon.png b/Resources/Textures/Objects/Drinks/limejuice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..12ad86632debb66f9ffa9cb60f77e73e73e7c63d GIT binary patch literal 389 zcmV;00eb$4P)jyd>KUvK`>i;P5|G{UrmhmLP+1nlpn#gTsHiIl!U8;eSW34#UP5 zatsU%3=C}i>|{G)z;nUSb-?PI;wb!|PruR60S6imFrJ;Ym%(4+5d#AQ1H^A&$ufs*2W)&H2QP>i7#J8fGRTo-4kNieBW#5ZIVB<4 j4xknoy0zh`1E>W6ES+J8Cv*{(00000NkvXXu0mjf=7OAH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/limejuice.rsi/meta.json b/Resources/Textures/Objects/Drinks/limejuice.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/limejuice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/lithiumflask.rsi/icon.png b/Resources/Textures/Objects/Drinks/lithiumflask.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..74dddc6d9c4cd97e796963d2516dc5c23214dbd2 GIT binary patch literal 597 zcmV-b0;>IqP)G*tBq z0AR%Q#ii<-Af3xlU*G7BJ)e6O)AeHqV>JM7IH6$u_bdZJX2$|)$$7lW{%*Xa%vKRN#_ z(@Md1YmZwK*Zan03c~XaJx|G}7Qk52V!O4+Skj7&fA9Kz^Zp9}aB2hwr9s8Cw&9D? z+^NsPX?QR@t?bjd6_?88zOl-}0#k)NuJ0=QF=|9%amTWI*HeYOwlD1nl*;9ZsN=hl z`^R6Ke17*)*`IMMc6^s*_7Pc|W%hASgk7~Y8v)2wyMCPemjhfsj$_#o2-R(925>AU zvNrYlH$>Ksq~ct5ffRH7I8QAgR0ld{1P~6jj7IyQeGH_&1wk_fiXP@FFYXB|XRd}VD_>3cv6KtjmXC4?BbQdMyy jfPZa6|1r4$7&^dT+u79G%Viru00000NkvXXu0mjfP+$@v literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/lithiumflask.rsi/meta.json b/Resources/Textures/Objects/Drinks/lithiumflask.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/lithiumflask.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/longislandicedteaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/longislandicedteaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d9990cece9416e87fb08210ef45e071568d0581e GIT binary patch literal 420 zcmV;V0bBlwP)*mF|MB+&s33_m}A=Cj}CHIspXfq~&HRKgfa zrx`;OkpM`{1&j<>jYo0_BZ&?mEd;Pwh{7iWkQ4%pj0_AYB@D7d&XVU4(#iqk;H84^ z85l?m0Uz#PQkDBJzWCm?7i&>l894R12j>qdQp_Z|B>eyXKf_-J2F!FoCLp;kz)0m3 zMghqoz{JSNz*FXo>I#@6Uy6a@2RT|X!0>Gqk2+w;H~;|l{!N=I;UwGu O0000u9?>UD3|etSw^S+>+Ch5+^*EPb3^K z=c|~ee7uN_jcc>wnV=%wh@HjUyNPBETg{K60xr=aeUEFQG{lJ*jDpG3)S*ARiT9kbHvHveh7 zTlwaU&g+y&x7n|@%!*|caR8x)btQ+*xUw4_|1`Y!{$SE%%S)eK%s2ENx@G*JkLeHN z59Zkw7Mvf>@V-lDcyAK#7BiD?(?rZ&%Jib|9GFj7`8OCSmu&-?s)A@+_ zu(G{XE2HK!vHsY=IbXZ;Kf{Fe51+8_XlL5s`=W2n{PhaH%T4Ao{3zm_BoSD|;QmXu o{_CyUPa@rn`_^7t4tA2BV4sz8`UcPEK#wzcy85}Sb4q9e0I08Y{Qv*} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/manlydorfglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/manlydorfglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/manlydorfglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/margaritaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/margaritaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c945794a90437a7486f94bf98ec84fd02ae8808f GIT binary patch literal 314 zcmV-A0mc4_P)ji zn!X>eFMpDzDf*PttGflT02aUk0C4L*?9OYZ?(LW9qH6$BHHw8frJubx{trZL0>Yf) zju-@#J|Ti2_)11qmSx(Il?lj7c*(XaU-v#lImgC#v;nkA80B2+jLtb#KNAp2c=?WA zPDD0s^5;Ue9Z)4MmqAR7g&NNRG9C@vnsox;xb96}4`x#%0PQCb3cX@+IDr9}1Gt1< zVKf(7jpCQ7v3YBNE@c54mGF3-u)1~IJ~RU8qI9Zye*z0&0eS~`0Dpo=X?~bN1^@s6 M07*qoM6N<$f_toc3;+NC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/margaritaglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/margaritaglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/margaritaglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/martiniglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/martiniglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..54460955b61d43ed3c31f8ce79316a676417b935 GIT binary patch literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVF!Fo4IEGZrNwz6?z;M`sX&K|z z+AEBU`6NmYY$$1HZa%!3v6NwDL+h-zpX{uEt$>Q8HLD~%*K(KDJg*2#%vZQq_~DRu z%E$HZ?{^k+bL~w@NJ#kb;E$r~n#z<`2J6@M%QV)eFRK6dC;i9Q*ZPNdJ?Ecc=_)C) z=t_vo^w`N&zFm)D1+E=y1R@qd2e-^=W0u4&5~{`vi_Kk=sN%Iiyh z%xi4y(P(Ity>B_Maz(A+@BiriI7;j#5`;}WyG+)71Xm6{p*o1jt*4DE*D Ve%#uO`+y>H;i4gz* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/martiniglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/martiniglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/martiniglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/meadglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/meadglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..363a3763844a21d415b14f4b706c40c7322f53db GIT binary patch literal 399 zcmV;A0dW3_P)JaBs{=T*j>UANwkCjYL2xa zN5lx(TSKndX{MO${NL`(>~5~t>yf2dnW`HA17H9Q0ATAZ>dqaxD|TI6<_-$*{1(gG z%jV8_XE2mEr$QMbHGptSbOyt{aabzn(<;H!-39&0-y(hx(w#d}wG>(a0M(aAtil=b z#{>XTtg)JpfqUAmCVmhqL1<5bd)&ZTy;90cDkn9ZuQ5mVTF(zc+O6i^X8kvSwH#5X zc-R7%jj;td$8{jxBxnIhxxF#rdH}?;D0MFF6A-Sq5lnmna&UmC|3Ey8HiEx}RcfD@ z))ZLfIxM0M#82ODtuHA*2$gz43*d7)qTrsBx8;_2A`I${s0Fa_u5hO#-pdWDu;rPi tn}VFqw>;CwNJnI!W&R&900zJSd;>3Fde9?>_U-@x002ovPDHLkV1i$Vtd0Nx literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/meadglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/meadglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/meadglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/milk.rsi/icon.png b/Resources/Textures/Objects/Drinks/milk.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..64da076b922a422b7b6a64a85da6e02837bd35a3 GIT binary patch literal 410 zcmV;L0cHM)P)=uU1JON78dSrtKh|I(ic_Ldn zP$)qNat4tOImwDIcJ4m?xrrqt{eKn3t00B&s_dVG1vHuLE9vvzd=rXM@b z-8uQGNk2rZ)hau-Ua!|hiii}5<2dtu|L7jAbtZwZDni$F=?%NMuDcx@-}5};I6kV< z*#M5?0O0jox$9&y5yv{K4fS||*KeW63jmtUrZ|RG7o=$lfH8(yU@!)tWfRH{z;PVD z-o8nazk9P_j@DNK0O)i&Ip3^hxDG&?rq&7fO;m)#;S;ca1xb?R2EcN;%W3Sv-*fK`^@LKCn<=_B`K8e#jb)2GeQrcveNY-vPTOElv@DQVQSqPbN`H z(Qda3#S|aMVHln~Xa<8p;nPqIaA_<3pRfX`07?h=0ZdA9*PEspwg3PC07*qoM6N<$ Ef|>BMh5!Hn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/milk.rsi/meta.json b/Resources/Textures/Objects/Drinks/milk.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/milk.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/milkshake.rsi/icon.png b/Resources/Textures/Objects/Drinks/milkshake.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3330c8791fc7342170c952e001b2e9828246b126 GIT binary patch literal 464 zcmV;>0WbcEP)8X)Jls8DiMX^D0FJafE`_(#Kr%h9UUCHI2Ii&LS1xKh=WiUOI9gW zT2xR-s1`vSnvkY-XbV;Z$!kg|^qY>y-Mim?@A7i2SS-R%alY<80hj=c9Y7+H=*Y=r z$4dZ4=>zXC)y~ZPGV=m}r!3ms+Cf^?2AohtlLX`%;Ns2EWyYYq*4GB&rLvw12cjbd zP@5q=6<^34oL%puRK5Z*3!n}Fsdy}-mY;P+G+jZEO0a!?6j?ewfo(frj74~!!)^VO zlFI#OxIQK2XAg5|wb}><1K@cMw(TG>7tW6yKoQO8-p!pM2m*M%yR_#5(yC^-wI3js zz_Khf8egz13xXg(k|atR0OQsPfo>VHTGjX&%W74U{UiXdHJ$*9Xhw4t!vKI>#UR^H z2I%Yf@x%Ck)`$T5ryl0?LjiatQX^8EA-y+@^v6^uTmz`hkRFp)3IK5bRNGx$lnVf$ z)*f8{2?64Z=(5pve#bVZxq$0LAeMl-*5bo2lxg(H-l^H709gs0000ZNY literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/milkshake.rsi/meta.json b/Resources/Textures/Objects/Drinks/milkshake.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/milkshake.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mojito.rsi/icon.png b/Resources/Textures/Objects/Drinks/mojito.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d1d577cb289e86b35550a48661932233289c5278 GIT binary patch literal 605 zcmV-j0;2tiP)>gdifEKb)m98d3iUsVxmrbqrY1J^&LJjh9qb+U0+R3YdmOy)@AH25<9GK&I-RDT zl6B4A0B8VgB!KcLY}5@vSq&TX{)l!1D63(E9Aq6S0e`QAC4jzLeKk{$qSn^cWZ6BH zA6&RxH!c@)){T>O@&_vgviE7JfIr9!zsr~~kPsqpZ`z+P81 zo;Ai-%=$UZZrIY&<=Fb=;4;AE^kX-m0d7FkTU*}KY|hWpD>%OISX*1?ySq7O(DlH0 zI(j*O>P5~ObXoDT1h83m(!SI&P}I&x=igokd0dCav$MVl+W;0y3(S5PjArH{@txa_ z-mXU50Cse4Co>m``@MR#{H_G4v1$5)daVyO9zaN@VwEP$ zXc0mqFcpK)h^74In@~!@$@t)J&(t``;%-)!%>xK4H=}EX=1)>K6~&q_|NhpJ+pL%A r3IH5vFLyxM%GN*h|NfRY0M@JT2i?W|tD0?q00000NkvXXu0mjf7x5ul literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mojito.rsi/meta.json b/Resources/Textures/Objects/Drinks/mojito.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mojito.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..8207ac71fb16ad1910e0ea5097aaa181a1c6d141 GIT binary patch literal 299 zcmV+`0o4A9P)`H}h^ed;!4y*%+rb|+S=?bE zUpEJ4@{n`ph@vQHGo4mXPk;nSfCK=#F)t};eDm2lE&dFkr17S#=*TYs&TfOw@v(@Y z7AR?axtQP7%fFi<6IxVcz;^%YyG9q{e2K@}3Pa2gWgMP;T zunYZE8~`92<@7!j0QJdIA6EcOzJ&*(3$|r@oA9>>Ugv+!KmsH{0wlmYasjI3N94yHem(#I002ovPDHLkV1kNheJB6` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug.rsi/icon-1.png b/Resources/Textures/Objects/Drinks/mug.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e6b9039d73a965c983918cf2c1e1a04598b9b2 GIT binary patch literal 1984 zcmV;x2S50UP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-_bcH}4w{bv=k1SBB@%i*PSW(TwUxnQS~R43gt z>HdseWv~oFx>rbq_0QiP{=&r^V@PTx*PJ7+R8!@KPKnobwG`8No{R5Kcz-7kj}Huy zpq1-2uX}uhTwfOG<5H}2ej9=F;T zx1QdU0gS28CmeVQNjy)!RuWhtRT|p;WZ^v!vL<>YD)~qJ!UMVw0DSbG@QW{&$txU} zq8GRF6Hd3B^hqv{W%!*%#E+HvtwrY1;@j&De(tllugklZasXWUcIw5I)5E|HIOR;s zxD9_r-_Biem)PO}YZI>a5IbHfF%Wl3G^vr(I_;nV6B92sw9EsDZ&?xJ%Hxod_D#+f zz{8XRRtA_8i1}d)optM84~rG7JP9M2po}(~Z}0Fd`0D*mk^2sFqF5eS!LGd}Bh1*$ z?I%Wo5b_&SJ@`_%n)rNeVg(H9fw{oJ7W<{5E4{{+9G)d=z|a)0{X#Zx1%L=^D~url z12K~*Ws1gZM8L6tp9afW5_d2_8k8rja<`|u^tbB=)UO)skhZv~AMgdtV zY0B7d1tHXeiY8UfYFe~v%aT*poU`Sfr<#c+Q_E&ntXeBlQqhu&l~QVHm8&3)X{fnc zEw$FxuxLvSx*Ene2s(G^scX;Odg-;df$$k==*YuH8FjSDQzlYCn0eYPv(C0?A(U2H zy7IDBR$a{zYc8H#J-d1F>g~bW&FXvBo|*eOYjm^5hp0WyURi_K>_r9bbfTLxFvf|% zxNQay(7ZW|g;L_p+~zD+mLQ@GD|M4IX)^`}(;`-<2Y0W`eac$^y8o9q{)oA-srwVm zg-zWX=6>Yu1J-6c=~fOwdlv#zWJtmG^AsBw{Nh*J@Vg4W6@4rEnxalP3})I(u6fQ>A)nL25b99ZA2Cv)@sFU+gUmn zv`~ckcPQxCfdI7^oC+`u^$X6bw@TVu)I4UE{REaatJk8i38JuV*SYeqo%?wk{u2tY z9wC8Z1XF9Prjjbz37EDPjy81$V1wBy_mZ0@F%*-j-L)Lw(m;V&)>i{yC{+N?b&SI$ zI9=6I|5Rd40VV&Klp9Lb>Bjh#HoOy@Fx*rjtmtqs4+jPg#`bQ+Hc^ly;|M!edG*i3 zaq#jF-i+-Kf&jI9YedjjMHxSFG1rd!Wn+94r{TA#`asb|8BFrMxv)|8O*r8@*S*0m zk9{WbKE0R^9M(P0m2Nl!f`}4hF7<`#UhAjE|GW*q@6@-VZ$*DlkvR^R6`g+pA;1QE zs4CKL0004oX+uL$Nkc;*aB^>EX>4Tx0C=2zkv&MmKpe$iQ>A`X94sQDkfAzR5ET(z zq>4qbP}&NuI+$Gg1x*@~6c9#=a_C-#2duZo0iUbpE$tsl0tk=JZ8`Zi66NxyZpvE=di#t14c4FPaGf? zb4@HaG0Ph&@f2}TQ8mgJQZ6f;w>YcCGOOQ{ztEr2RuWvNIfMw75Je0kWRy`r5f(zU zYNVKm(|)*xf6(#A$R(4j07i}ll%PU#{NR7^yIV6mIpHSx!$A9sZGVgazFnYJvF-0; z+pe7e-e=%SYxql5VCIwbN<#}C0lnM6#dSlI_khbCVBkrY49StaG=*#yct4|WN&|hj zK-ZevTYVp=4?vQ-TD}1e4uR1eWv{n*cSmz?|DLJ$_XEt4a?3l((-Z&z00v@9M??Vs z0RI60puMM)00009a7bBm001r{001r{0eGc9b^rhX2XskIMF-;v77IH%(v5J{00030 zNklg*qpL?!^VMvp5XjlrM01BW0msKu#Zfy3?c@fCT z06aG~ag^Y=9RRk)J3$Xq6~eJKk0#?%J(`S5U8yw!fT!mn0I#D#DH@w@h|O>KYjErL zK`wrZX2WOp@@Ezv?lSW>^QD#!v~Jov!~NP~IX~SiXy5m^y7mBAuX5I3Qve>jVgQoV zm)d9GkdoBM*)1X~fV>FgP}Ym(yz(-#jvy}r;Uj8p6CP`*zo7ysfC4DMe|-bZU{mDW S<8>(j0000 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 S%v(MH0000 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_black.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_black.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_black.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..6fe2315039e08b84cc40c46e75233da05a177911 GIT binary patch literal 303 zcmV+~0nq-5P)Hc0Lnss_8sWD4gg4! z1QZUJMF?F1Wg(9|yHt-nyL2k80KSE?kc&cu0gLsavgTR_aV>*vj@Q}<;T{-G=g>?C zd9l`tT9(G5kCFobz;L$2c zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cmfR=|{bv=k1SBB@%i*PSW(TwUxnNgycO{ug zI{9qVZH$bCbgv|+u>Sem!(X_VYYIuNyNbGJr7^`h){7A&KYC*Gd8_q)J1-?<~A0qHT%bokl&cSD_~F$%mog%*e?}b=`FV8@GMaSrlxr13)#FC03xidFopyS z#7v@;DH^j80mlM<8Z2i?+`#~8P@b@olSl?Rh4 zW#n5y2(_T1Nma9&7OmQ{d`22N@~}}x9c}WIi4qWIo;J&@vn^T(rInVh zylj@5x)ShQ=tU+w{P(iz#=;jQJaUw8o zn*jtgZ_Z+&lz20@Ig6Dgh$zEK-Q-N#jDf+lh}G%I-5Ya1y-4$9KBtW3 zzE5nkEbK5=9aVfTB^^^K*|hz-ccg{ye2CuaezNXSkc^&t^P0K$(ZuHpj+}Fu1B2Pe zTGn+^g1%)m$9_t>&t?DDho7Bz_qw?1ns)VNMZsWn*C55HdbX8OYi4e!OZ#qhm=R!5 z2n}6)qch| z7*9X?iKQ;EWX4qn)FX!ALZxYKoj&MNkk*$X;G`_Sr(^XK%6)X1KNI%h7xLl+^X`*j z$G#UIQpR2#CpMp2T61iXeU7%nNjM)3wPLeW1*i)2H@?_lxf}Ng9NOx`8@4FiW)BHp z12F7;zBi>jvy1_ivW{bG04iUdGB&R)y+_|O<=}c5+{;)shCftApy=T}cl>DaQqFP= z8e^L%0&OBlv^aj#bka)5dj&{ohg@BZ?8yfRSky*gx0k}_Q{=LDsDgXchhG|1XP)S2WAaHVTW@&6?004NLeUUv#!$2IxUsI)iR2(cK zqL86FSr8QwT%?Lcuu$3xtvZ-o`UOoIk`xz5!L{Jv$70pN#aUMeS3wZ`0C913Qgo3L z|Cbb6#CmYtk9YSTckck9T4bu(HV&woWyB+4F_m5weXr<5Ke{oCVTqY~G_jaO%kgy& z4`1&>JgfD&KSz&}F&W?yiRYMZSi~E|)0>vgd7n7I@{&S)PCRDN1&JTIF1!53Ip?sz zGXq94K2IDV7IRH3H!;f_D)AI?P*F9?7g8=OoVPfu#WJhklfTfP(N+>%r#XZOmJme@ zB4m_NKoJ%~v}&Z7h|_+!g@4fT$H*m4qx>~*g4i16Q9A&S!cy~v0Z~vaD_xA(Lk#fsB$w5i2H?%sX1^L?Sr!0M6yY&4X(0+pAK%RTvHE7-kExQW1pq-10N^-I%$g)>Bp$+6 zZ;ICXm20hO^`@^`@LgLC7AKRL0+o7`&Ttv4T@Tye{ep6%O||qC?{d4tc?ZC7RWksS zE-LdG_!Q&LQT^Q_N(A7$w)*7t^{`F7j8vMN@SB@Z$x$i*0w4eakT<{sr?*W;25rm9 P00000NkvXXu0mjf9|hoe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-2.png b/Resources/Textures/Objects/Drinks/mug_blue.rsi/icon-2.png new file mode 100644 index 0000000000000000000000000000000000000000..5913371ac7ba0230968a71b5b224b4a6327ae565 GIT binary patch literal 2106 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 Qe*gdg07*qoM6N<$g7yW^wEzGB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_blue.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_blue.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_blue.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..1a2fafe53d5ff4d23bc039d1fb3895275c840539 GIT binary patch literal 301 zcmV+|0n+}7P)Q$bEL5WC zEJ_gecRR2$cjU0WHeaq63gFY*YXiJe-yMj5Lg7Iq0+NvfR#;vj;8lknU6FAo?117H9Qz%O(GwdhNgy<=dl00000NkvXXu0mjf=7@Ui literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-1.png b/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..a8186059b0c124c7629c36438f920334acd45ae4 GIT binary patch literal 1904 zcmV-$2aouPP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cawI7X{O1&V1SBB=#}TiHy}=%T6RNsx_jo5_ zJhOi;+&~FRNSPqvF#q{`g}?AH35TS)ST&1yQcaZ|of5C-YAL2upNH=uynm2~=Kw<_ zXytmfdCzyq_3eY4Zh8AC54qoZ%B_gvhoxn&y!+!e@>V2#$?1L%_5Q%^ojdoB`>poj z*2{a!0Anch0VAG55>L(7N&+jSilf~%3-5_2TcW5j`Xhef3Ed|EK6@|t#fN3`2FIo7 z;g-GNbjwL!F3%FtGtnIiDFy z#!u1Dr&N>@J$A4*;A#u8;iVEbXIzwMkkg`h+D;uNCZ3$pGIy3EE0Vc#Kcu8xXmJi; zW=H`i9n1;D{IrG6x^=II#R^s)gqciGMu*3DCAQeQdQHeMXS1rB~vrYw&Rp%$ti2LoO8)Fdy$fg7Av`wQj1rvf-t6`TFtf8 zTHUdzCxZG7M;Ueaq=~IG)6{7* z&ob-ug}t_9rKQVOUS-wgPu6Z$KeG19+|OB~n>9W}?Roi)HHdS5sGuEAbaMvAI1w1n zn*nTS-kilkDe-1*a~3O05K)Gey2%-|83Ti966>NTcW=!7CvO4h{wi<$8FOJ%_a~SO zo4R+*{m9!VtPMZmRt`b?6arI3NWt-2DLNPY#jm#EcNKgq`d0KcMT^wA;V|`uJ4|Al zBX zx%fCnptY>APtQpG!|;kYgBme`%h;}svJIN>VXR(O4DQ_>L#UD3kyqM4?C5F*@j{Ta zCgO#fKw1tw+o`cfs$(Eu*m(*5hiD5o4SSv4!W*h1%|f~m;4)f6Jl!F4r`<*?wSh4K z8Va|N5v5up zO|H7I&t+%tm4q}unBvr%tUls_+F{Y%`FgweN*iHskBXb^Ox=EX>4Tx0C=2zkv&MmKpe$iQ>A`X94sQDkfAzR5ET(zq>4qbP}&Nu zI+$Gg1x*@~6c9# z=a_C-#2duZo0iUbpE$tsl0tk=JZ8`Zi66NxyZpvE=di#t14c4FPaGf?b4@HaG0Ph& z@f2}TQ8mgJQZ6f;w>YcCGOOQ{ztEr2RuWvNIfMw75Je0kWRy`r5f(zUYNVKm(|)*x zf6(#A$R(4j07i}ll%PU#{NR7^yIV6mIpHSx!$A9sZGVgazFnYJvF-0;+pe7e-e=%S zYxql5VCIwbN<#}C0lnM6#dSlI_khbCVBkrY49StaG=*#yct4|WN&|hjK-ZevTYVp= z4?vQ-TD}1e4uR1eWv{n*cSmz?|DLJ$_XEt4a?3l((-Z&z00v@9M??Vs0RI60puMM) z00009a7bBm001r{001r{0eGc9b^rhX2XskIMF-;v77PUxO3`rQ0002%NklkrTt}_xW literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-2.png b/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-2.png new file mode 100644 index 0000000000000000000000000000000000000000..973550bfb49e4cfcc715678725736dcb426f784e GIT binary patch literal 1924 zcmV-~2YdL5P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U=KHb|fbZhTmC5mVhLLU^(J;PIi#x=Z7k{+dam`Zxw9Nu5#!4JKuP_xyqz zo7^s;1t7HUnCgiyg{z9M*9I#fs3*(?1N7J~6HV!TZpq;+Q3F&{yw(fZxD9Ob=nKw} zfI!S7N*R-Z*@zIw0zMAUSrRu8APvd`UUCx2fKzz)jc<&OE-PPRq!)lt$zni*r2|+g zY06k{1yjg_iY8UfYFf0aXUQpR&e`(LQ*L6()UufstL8;YDq3=}Qc5jexeC&lhMKF@ zQfqZbr=A?P9QqDH<0dUNZMj)1tv2tNK0S5qxmz#2b{{-sAO(bxhmA7o@JSO>X{M<& zPn%`d=?imh$x2ICUbf1r%OBKksvoJnlKVL|x~cI2we{?s8pLLACTOP<-ONCY6M?vG z0+`UenZ-gW@g}#K#mW*yl;NdrID=0nHuP=iYlar7bHifl3ul3H$ z-LRCfBv(>d*=Ejdp*0tEh?}a_HnvWiINa1O1M711mHk+5iHcHE3P?q#@vHR*Lsono zCs1e8*ryw|eyr#?61E#{YJ#0bCbAuL*ty~uK!zUKM?>=tMudF^ge|nR+y_m_*C*bq^0;??ODQ^|?PskCHJN;1P-Em~L3a z8^qI_md<&fIKc9fLVQjLere~bXWU7%L6?eAmTuAKnhXW&X}_)Aq_ z=9BbFLkk`Oz1zUWbwiW)fXf|V;7OMZ$&tJ?g=`jhKcjC-1AVtZ*P7c~eIKU}K$5yz zz5xynfzcdgueW%2M{{rgo~ifu1I&?f%R9-_6aWAK24YJ`L;(K){{a7>y{D4^000Sa zNLh0L04^f{04^f|c%?sf00007bV*G`2jdAA31JR?0>JEsjh+*It6oB*j1qB%5Dq`Sip(3H0an`OG|7n&8g`|WTeAB!z z#NIu7OTS#8W~#;@Bq7Maz`(%p?!|kCH%}p!uf4qLKLY~;Lz-I#BTXHE3k2(iF%G$c zh$IJ8BvdnEi|cpK-jZDoFp|?I9MF<*v^E@dz^DU89Wd$uY6AeYxlhuEzBdg30000< KMNUMnLSTaMAbsHg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-3.png b/Resources/Textures/Objects/Drinks/mug_green.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..657ec8c8daf649d86b0212a3955ba1e8827d5915 GIT binary patch literal 1900 zcmV-y2b1`TP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U=KHa^)xthTmDmECERf!E(f{YIZQopC9a;Bq!;v z?sPxKP5{eT68b=J!u;>w75>4+L?tA(l55TpSE{M9qfz2@T{XpY%5(Ak3eWH4;qihY z64Y`%=6Uyb$o2IDOSinemj~;&o^mUq_|CL!%ey^pCvQc7{7B@6G4xVJ=6rqlB&e&G?iPXhR8J;g7+cqXsm zxD>q%D?i2QmXkio zu?3JBQoy8xoNOWwU+CDa+a8P+SRRC)SP&g{`TZT91z)}2DOzh!bD~%tv4UT`XARug z!xT^SkZLk7@dcs^VK#%QG(Ue~2mK@F!HK1#X*Loovw*rI+wiV8h zfI!S7N|~ZD8xi7Iz{lY^OX3Csq(OPWOHLvga0+kR_{Qk;W#vnZ^a2nnSqx~fbO0+Q zO&RO0UdB$Y(cd9x+@z(ZEjMeW)#e@3r>Cwxck89s?t_O6q<}E;uu(=GK51eq%`|o9 zX|v2aePOOGS!wCY%T`%+`GeX`^*yy`azCd=H#I(>c0YTi2C>U1k)teMGtnb8pB} z#g{8e8MRo$f{>XZ%kC2^ZRX~J9e$O#MO#_Jvj3<){GEY8(ROs(+I62!b);Eruqn0; zg%F2GRIE5H5RGh_%h>J3V^~w1WqpvA(2;s1mhOE^Nhdd*Llq|#HBr2n1ck_0*x*iM zpBq2c;YTk%tsiD~4c|q)j)=&63BHi48nYu8H>8$|^V13HsvALDx#((Xv7q-Y97uYA zHdC5r$l`6dht@UkhR<3pEiY;ngMy`9v$qlJE*6fVhZ(Z=XCV(?WAqVG03&#m;g{^v zq{&X+?Sv%}+Nxz~qg`%b*j7$%X1$ZHzR@(uLg&w0pr(Cc@c8z+b8GcKpj*U;;1wU&p zpJD5Gw11Wy$sg6viuQ!RrZ~3v(JM~j^I8Pg$W{}!QCF>x(Gq%>5sDXVnZL9Oep-jG ze)z5EThU)oWH`6g@IQym(fGa^0d)WX0fuQqLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ z#a~mUepDPRBBGF?I$01E5nQB-MX*rX3avVrT>1q~8j=(jN5Qq=;KyRs!Nplu2UkH5 z`~Y!rby9SZ691PJTEu#A+>dwn9(V5mp;~0B*)|TSnq|ZzVKJ3n6@9PhL_fMQi(!eG zdNi?^M9cAY4-a4OLOiSWxj#pbk}()O&;^Mf zxh}i>#yRJ(z%v6zGCofnAQp2?EH^RB8!GV>aZph;$`?{DE1b7DtHm;_-;=-4pV3wl zT&FpN2$m2<3?gKdQ9uzELbPh6n26JUxP^bv@yEy|ldAwmjs=vULUR1zfAG6oGdnrq zCi%la`-^RVi~zn}pjNT%?_=ApodDiv;7V)wOI2Xzlk`eM3myTz+rY(jLzDM_%N=0g zNtX=Ck-Rj8Y!-Mwqi;$BeYZf@n%i4_AEysMlDb;H0S*p<(Hv#3w|I9)b8r8isrUB- z%#m`-JIT`&00006VoOIv0RI600RN!9r;`8x010qNS#tmYE+YT{E+YYWr9XB6000Mc zNliru;|UfF1uSCI$b0|*0Rc%wK~z}7V?1!+0K-56CWZk9qYfB#z^DU89l%14rj7-z z|B?9>3Dt~rb3n&}*8fX7mocy~K?3j3zkdudUECd9F1Q{3@7#WyZm>C!t7#RNk`3n_8L=7pSL2@GWP4k9Z&cMLH zz|6wT;G5>@EFrftslrgOCIy*x$W)&+z6c z#PYS5SN&&TU|>jd%V4Cb18{+0-7v->R}hipfQp1_Mr?8Y?%7+i3nNBy+Jw|B2^mKl mrK1iQb-<_tMjbHF4gdhRK}uoKLL{aD0000>&kFJ>EgzL;&y%3c85Dwf*VLaYJl#pSPA)hSVRN{o)4cScz6 zfkA(WO2=!-A%p&qrmbyX%=um;?Ij&@tN7eLi1(X=&_)$%Kwtd=xw?R*&tmw!U9H{oA9{8`>V hMgb520T2M*0Uu4fRlV< zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ccH}4w{bv=k1SBB@%i*PSW(TwUxnQS~RHt8= zKJyh*Wo#7|(!F}P!uscL4}alc))bOj$u;MQBh^&7;iAOrxMqs!oX^4cPq=?4504)h zBEc-zZC>~K2D!dIVCk0k_wr!l)>Cdp6yI$vd*^*UZzFF-!k3)x`%v!(T7Kis{pE41 zeR1pQJ{iE63Vp(XmypDB=4&T`6;h>P-e(rx3o*7N<4i)|;ujv!eE{I&>IuL2Vwt?c zaVdInD?j0M%SoT)^4NyoSw#HUncrH}HClXoyur_X7WZ{|*HR9EE8kANxN@$rumesx zk7W$QS8;7;RE!c^9AIt2)gEHUO(h26PKhQpa$08|G+<)l#fF)AupC(t%ch0eZp?}yC_cAkWlOi)IL$2TK93qCvEDRSRoP87=nE7-+5zF@{? zZlAFVgpl8u>cN-7HO1#+6Dwd)56lG)w%9KfUFkKpI@L@pnOZipV%1ual8TmGtdvqqt6T+TOhe7p zYN@rhhD}>)(ABWMLD0ENPhETN)=RIw4TR4~Lq{Gq%BZ7Fo-$Da!pzfVnRT{B3!${q z(v_F3vg&G%Sab2@>eW-lsemlNHbfiX@5 z#%(izfac9vER+&&<~C=svIG%jSgD(wNt-b+m=>`*J-B;i?z_ANp!>VL@kh*sP2Hbh zE^O-FF!wEQAFwvtDYtS6+F1xpQ6UBC=P5QW_{7i7;lC>QQuL+hbBa3QEf2+H$+YHc zwuzJ)!89?AW|-B;k1qE4!- z4Yi6K^)AR+^y*byWq8I9uo7#QPF~H@D1H0V0t%9NFT^+{4_(5l>p%z0Of~R?VFXisWd3bt8)wd0oZt&*5haUgm2%7z$U> z{aCLY7B!EVWuJki&FZx%Y=S6k+jXw|bLW0MhhIWr zTaTc{mS_WGHNnlqp9}=JtF1h<2SXggG7w6RGg?J<7GQyZa8&cQyB6{q>`DN6$MW5W*N?&V7$nlkt0zr1tD3ZoGn;;C1#|WA7dj%l; zUP(JPEY!0k6Ym2Ur57Nd`VPno9!JvnTs{PURcbq7z!!FSw!r#_@nd~!d-x+&?Mu;@ zqW@Eopv29JZu&1rBvXSnlV<|}00D++LqkwWLqi~Na&Km7Y-Iodc$|HaJxIeq9K~N# zrG8W#EFz+ip*mR*6%kydibb$c+6t{Ym|Xe=O&XFE7e~Rh;NZt%)xpJCR|i)?5c~jf zadlF3krMxx6k5c3aNLh~_a1le0HIoBs@XOUsG4QOBVjR>UKM?>=tMudF^ge|nR+y_ zm_*C*bq^0;??ODQ^|?PskCHJN;1P-Em~L3a8^qI_md<&fIKc9fLVQjLere~bXWU7%L6?eAmTuAKnhXW&X}_)Aq_=9BbFLkk`Oz1zUWbwiW)fXf|V;7OMZ z$&tJ?g=`jhKcjC-1AVtZ*P7c~eIKU}K$5yzz5xynfzcdgueW%2M{{rgo~ifu1I&?f z%R9-_6aWAK24YJ`L;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G` z2jdAA3%K@q<|ySO+M(jl2LIR&926r@>9K**-&pqADQlE^j7z3u*R{D1e}-FqiN5YS{; zG#m!N02lxRuv%wR+m6)ydQ$kZG=R1psVI!G>@5I3if8=cb&jGl*?UhPXB^y#@8vYopd&eLvU!r>Fb$qjM7j`zs>fyx`Eg4vAZOjbkwJcAU z_X_U!E;xOA0^rJVIeNSXV0T*-K%97@tq)vwP5|gTE`7&c(Bec%oG8)Sh|a!G`A0000< KMNUMnLSTY7<P) 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_heart.rsi/icon-3.png b/Resources/Textures/Objects/Drinks/mug_heart.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..3e3e5b6ec00f926fec23262cb7260f7bad3aa767 GIT binary patch literal 2086 zcmV+>2-)|EP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ca>XVL{bvoU1pDn*55M3b$~9!sT3RU)M{c=M$4!mbag8bFb3F&$ukid~K0IC! zrWhk%kHzlw9rN=3f#!RDe4GzDZ#nfAl;Q`~yfyFpbsKpLV!Gzj{T$l;K`&44+&`MP z*f+Ocp0fgsC6LDy$T)F4SGqJYtl-8SC$K4Bl@y#-R zhvO3T=2m&Z>7GyWGS3e+^ueM;56$#!QTM3v`FO(5eN}h6yz99Hz*TOi-ds6%SU3PD zpU(~Vs%1y@Ii0}m|`5cibRN^fuUG{_lHZuh!8e6#h_A;cmcgJLm@6FYaaQ7zN-0`)o$AV(RkWyT)uz32%~fitT5D~!H)@PB zCZUz4t+v*Bhti%qWOc0Xm>4v8gWAI4}#rO4;PBv>5|~*%FDT2Y2tx{V8t&=>AjQ=riWR zrtZIBE^O+anENAdpRl(2DYtwG+F1xpQ6U-W=Q(z&_>12i!@m{qBj`ua_XLfEE)Pj# zNJ5w4G;}&PNOeoz*0h4;vW5#=XJ6)%vA0(p#ff(w`pG4vI6**m9zI8jj*YlU4c)VB z6{r>HzV>bW))>BAfGX9;lG>5D*cj30sHvlxtz;eT8uYgUKMY;%%o(*~|7u3r$))>B z*rVb!zNOHZwI@Lzvpf%g(As2_A^3u~@Yw2#aLrbCRG^7nu%ZxdW0I_0YL8{{?~UQB z1(&`8i+rlDhH7NBct*`b#auF%6x2>$Xvu=j0(;D4TACBD0X*6s5Ufkx$3QhhZ$XR( zt+h3-x21x>qaT!r_Qr|Px~?i)(`4T2rI z!?*czh~kMD#lyls7K)8h)XG8;AFv&UVdwIIVO+rrESC6=mafgK z`b1j;La~pSFd}|npR>Y))2eWMDjD_`nT{Q51ho;5RhCL~UM_610}HrdOR}<4Y=9Td z-Uzr=>{fbZ-Vn5^I|KXv@94hy_6Wvyf`!ox`W!CrlPtj?F6DURz1V=sb2GdqQav_A zckj#B8q23GphO}UYtskaVC?Wi@6bn=>UB*qh8zK`8(SV`J3@}H)X@U&q!A>IQwhq5 zgUjQ-d-?B{xA50x?ATz4VpxD40B0Q)$md<*Har8F(?fccu+~o)&;=g8t1q~8j=(jN5Qq=;KyRs!Nplu2UkH5 z`~Y!rby9SZ691PJTEu#A+>dwn9(V5mp;~0B*)|TSnq|ZzVKJ3n6@9PhL_fMQi(!eG zdNi?^M9cAY4-a4OLOiSWxj#pbk}()O&;^Mf zxh}i>#yRJ(z%v6zGCofnAQp2?EH^RB8!GV>aZph;$`?{DE1b7DtHm;_-;=-4pV3wl zT&FpN2$m2<3?gKdQ9uzELbPh6n26JUxP^bv@yEy|ldAwmjs=vULUR1zfAG6oGdnrq zCi%la`-^RVi~zn}pjNT%?_=ApodDiv;7V)wOI2Xzlk`eM3myTz+rY(jLzDM_%N=0g zNtX=Ck-Rj8Y!-Mwqi;$BeYZf@n%i4_AEysMlDb;H0S*p<(Hv#3w|I9)b8r8isrUB- z%#m`-JIT`&00006VoOIv0RI600RN!9r;`8x010qNS#tmYE+YT{E+YYWr9XB6000Mc zNliru;|UfF1|c_3=K=r#0Ut?3K~z}7?Upf1!$1_re=kXw;!!OHLFjS?adHxed=jTp zQSdwX2^{(b1VukVceixu6zCd+R!Wv;NNY3l`#8>h*&0B%IWg_tIf(lqm^YX`n6ePw#>w@79o1f)&;yu1 zmV(&W1FF?QL~y+ZuGc_BP_0e@xL%%r2UtvpIPTZMIj+ZIIxM^p=e`^t%uHn-*xTLb zCA|5erCGAQTkv#x&E@MHfIFo*d%g$YT|chX_WxPxi4v!&|i)Vt-l Qj{pDw07*qoM6N<$g0*Yi7ytkO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_heart.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_heart.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_heart.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..ef2e77555ba409963966a327b138e29acd2b1e19 GIT binary patch literal 316 zcmV-C0mJ@@P)rw#T^E#6Se6BK zT|-J~{{e|?t# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-1.png b/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..32e763a9fc9111d7464871db3dbe7ff76346919b GIT binary patch literal 1770 zcmV zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ab{#ti{MRb71OY*(FIL8mKZ&rP(oqDB>UqzM)G0z`{DBy)=zSGy`6wz#Hq7OoE^XIPAy_3Le_L4t;Lnilh9ENUT z#g{yta?%&MTyFRY5%J}j9}x|`T)fHOoITGuj_7QiqY~m7)Gd@fgJMNGWp9gU3BQVY z+O42vZ@z)Gj!>)f6^lZQJWdMK$!OBpW1|L$fd?my%#CHsvLr6tHYs5>nw%V%>5{=o z19Ji~Us!1SEz2LAWq9rcO(qzl&ErFJuY%9ECqr|tV@~Arl`G)lb-n;&F}HeXfe@N! zPIc#(+%fpqXAvu4PWyv9HjydI=OSZyAP{!1iSW?NQ6f-!r zV6bJ-HwY?MsiA6(HPu{8wT9!jXcV* ziL*9khN&~oH1jOeF4j&~pILil?)R+G$r^8>mR`EE260L^6ST^SF3!Lh2Lj`1F@OWj zi!+}o1YXQ7&U|5UBFaFii=0l2F)$bgu}-?UyEFGo-W;;~r@Zld%(+F~S1{)mbq~zF z!{ZLY

4^$0|tcSd^?WF-@JgfD&KSz&}F&W?yiRYMZSi~E| z)0>vgd7n7I@{&S)PCRDN1&JTIF1!53Ip?szGXq94K2IDV7IRH3H!;f_D)AI?P*F9? z7g8=OoVPfu#WJhklfTfP(N+>%r#XZOmJme@B4m_NKoJ%~v}&Z7h|_+!g@4fT$H*m< zs{lrh1(cvda{S4qx>~*g z4i16Q9A&S!cy~v0Z~vaD_xA(Lk#fsB$3eEr39t)^oyd<08o}CxqJqGQ=aGK-v!ZM*N`Zs z-u&Y@z&R(k1W_EvL`sQm+pw-Hlu}5N^q~Xj{pDw M07*qoM6N<$f)*<#G5`Po literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-2.png b/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-2.png new file mode 100644 index 0000000000000000000000000000000000000000..315312dc8eeb904f94e6951f69277d3a9361c470 GIT binary patch literal 1842 zcmV-22hI42P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ucHAlq{m&}81SBB@%i;5!w}ZF*UfIq}W|H&Ew+9TB zK*~AH>#}dq>-_~wm%cyhgN@5ixg1e^2rVAj`||>MITAkgbd5v3UTFEg>hTb)Ao3(wGQk-gJicq;S@CLnaJ08CbD~&oxdJZs^#vHtoZn#u zLTFz()g!+YP7$9kCsx3q9%(L^V2k~9(UtCNOAekTYJh2q=YAoZmjk2-u@zvjmJ`KH zqLe8bvk@VW1^hH1XGz?_0BKO3K*>oYgPg)18}Aq$wyb=rQC>iVN)`h(*g7C9B~2Oo ztzZeYprT1tvzivI+Op)7HRo*E>r^wbWNO*WidAbxN-A1%u~JGct#TEVF%30WtEJZ3 z8iKae;H$yDLD9KOPhETN)=RIw4J@CLhK@XJlu<{UJY}K;gqf$!GV5%M7M9XVOIKdD z%BrhvthFsWZQXg>F1zk_W9?$~k+o;$e$N_RtnopV+u5BpsLkG7ke3s6&cGNa0^{Zk zU_rBU77L}s&YW`=D@#C?VxUwfXOc4p2Gb(eO*iiD%>9zLfb4#iH~x&d;MDyK=7LlA zj=7J#eZtyoN4b@QAm4?^DJrC3`|T7P7yQLnW%yeM-;TZ=z2<1wl6z;=FASxxh7Hh1 z7`b4`!F)Q^R+%FT;*&R|jVeLNBb;$|?<8cc4C%hL1j1 zRG+mnYR3@MZTK*y$vtAv=GIs7>Fw1~Ku|ts+BndT&`Gz-^ur*`^<^18K2X$+>EFtu z0C*`dmE_uw7Wa-d!cN7)@|!q)@cBWUy) z-(+}Jd`a5aj@CP2qpTqg09aGC+71c4LI6I^Sr|USx~3@x#Rc9dTa7Wt6FG%Nrfby~ zA>C#8HD(A$?co-nAk(_E>uR1UWZCc~o8rPPf+5dXFbt*7DC>#!%fMbsb{5TJ9#{dy z(e;py@sUN{&w{3=wCU)eJgfD&KSz&}F&W?yiRYMZSi~E|)0>vg zd7n7I@{&S)PCRDN1&JTIF1!53Ip?szGXq94K2IDV7IRH3H!;f_D)AI?P*F9?7g8=O zoVPfu#WJhklfTfP(N+>%r#XZOmJme@B4m_NKoJ%~v}&Z7h|_+!g@4fT$H*m4qx>~*g4i16Q z9A&S!cy~v0Z~vaD_xA(Lk#fsB$m^`uW#U-izG?N?g{jLkH>n&?QY_BH}P1n==&Z3Kq(cJQn4#Qnx@co z{W>iQSe^Q52MAiLUFwIY-;Ja9#J<7O1KUP17(<6BI>x`dO9< z0Lb&4>{nE(I) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-3.png b/Resources/Textures/Objects/Drinks/mug_metal.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..bc9594a474642a8db116299b672adb390d25060d GIT binary patch literal 1787 zcmV zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|edh8|)ePEBt|rW8#ps)ZB88xKc}v4MvUUb@mj~zVC~#M;O2Hhx-A; zCFtcG=6TIG`1R$5k}iLL>ks9);?ye;#W$(NGrK)5kXIn#(@)npwCe@Suam z$FlMhPnVzc$uD;reuIek&dje7O}Y^0lbPQnrPO9dw>-WVC{h z!Y;ctv>GiQP;FqTJ;aVdBL?G(5)Cq1Gnw7xc^r%l1_%-1yj{ByY611Sm74 zLX!i^3EX^Rp`EvRJ|wHiJP0$H5RA5tuUdF^e6_s^w3cskqF8UPfQx;90fsB*cg%ty zv@T9{^Go6E;`8Og3KY~$bHxHJ_A^9Rdf8jDb(W|BQ&T+83zcyN07b~H0E4}pC}t9+ zOtCN*BJfzDj{!ML;tmB!gYp1MP9hoNRQB9>r_i3u%BLIU1wyD~DUb$72V$k9DdW6V zY#|FOnp8Dw(W*@?OHNsH&Lw-DvLYoFExD9ZODk5Trm8j9QfqD18aF{1)6jA&t+v+8 zkkpbPmSMiZ(YZ@cU3>1O*WS7v*gi)(^vFj!>d_7xJY=8*gpo%Xb+loVCbrT{Q)ixK z*4d^l?6oB;EnRt)RaaYft9GgSR<&p4{#`Y?RO2m_&nqvg!ClHD1bI18*9?krA}C&5 z0c>b?&0?jL*p+k5Vq*y+%0Q_u&LCF|3Z_Y{i*D^+l>0~B0@(emZv2sQ!KM2h$_1D1 zm2&TO`#`l}yWGka$WI|SMTHa`zm=kK#b5ktAHEylC(uuzuLWAI=HA&BzNl-IS;%k% zLLWW@-}8}s&K<{W`LDFNw0$Z?_{w5%;%1-qG#nJthoL7T_G;ipoq*jnyS*Ca`;FeV z%i63MXYLafV!!C`g@^Io9)bESs10@*V50Y;CJgB!pGBB!gLy~Fre7)+aKcc_QOdeij4 zy<)dj(yKh-`!v4_bR*u(G75Dv6zgG2oh2~b@x?Hkd50MSjynd}(&o!y0L6yf4kO1AVYq#Re`4`PE2KsG?eggdj`X2(}*HH_91AL?3L-33!O#lD^hG|1X zP)S2WAaHVTW@&6?004NLeUUv#!$2IxUsI)iR2(cKqL86FSr8QwT%?Lcuu$3xtvZ-o z`UOoIk`xz5!L{Jv$70pN#aUMeS3wZ`0C913Qgo3L|Cbb6#CmYtk9YSTckck9T4bu( zHV&woWyB+4F_m5weXr<5Ke{oCVTqY~G_jaO%kgy&4`1&>JgfD&KSz&}F&W?yiRYMZ zSi~E|)0>vgd7n7I@{&S)PCRDN1&JTIF1!53Ip?szGXq94K2IDV7IRH3H!;f_D)AI? zP*F9?7g8=OoVPfu#WJhklfTfP(N+>%r#XZOmJme@B4m_NKoJ%~v}&Z7h|_+!g@4fT z$H*m4q zx>~*g4i16Q9A&S!cy~v0Z~vaD_xA(Lk#fsB$53}G2!~^JEqMfx?dVpZ9omUX?7J{V*5U;R`wM8IXyxj-Ovc(g8vXChU z!h8&wNvQ98Tp4e;I1Io548Q=aBZuNR*1qqgBY3C-LI~Qn4ePpMSr+X3jwDGAZ$dJkQUfpm d12BNA0iO;|TUE@LM{)oF002ovPDHLkV1i&1J9Gd5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_metal.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_metal.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_metal.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..6e55bc0da2f25f13df1ccaaeb287a4b592e0b72d GIT binary patch literal 332 zcmV-S0ki&zP)v0i&&pqlCdA<{^3nARCS-zp7sVpQ;d*;rr7VfNEPa zUoV-wWK7$cs2oK}IA1TRwl&#sBpEIT(*y1WTRfG(r=$0z^- eAOHfOcfdE7y4&QT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-1.png b/Resources/Textures/Objects/Drinks/mug_moebius.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d3b64cf519e84b66167448cac62269067f2a18b GIT binary patch literal 1987 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 Z_y)>#UFVKmKw|&^002ovPDHLkV1fxAqmKXp literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_moebius.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_moebius.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_moebius.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug_one.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug_one.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..0cbb54185e551c0fd431d7e5f6356861d1505040 GIT binary patch literal 350 zcmV-k0iphhP)iRfK2?d@nQUXt-3Lj)qI4@+W}b;(M8qLd1aR{Nl&DQirP4p*q=r zUKt?*+y*f_+q>w?8+x5Oy-uAl>hc)GlGl8RcoB|U15Sa>Af_>$@UYdKw{_df0OZBt z$_r9F1!qs!05ql(0NQVN^R~P&Dld#^H;4h_)&PL_g)d(xBEV6SsN?%9;By3uy*{s0 wKa5nBJE7H+aNQ2S$NJC60UW>q9Kbr@1H>Iu62c>(iU0rr07*qoM6N<$f_s&c6#xJL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_one.rsi/icon-1.png b/Resources/Textures/Objects/Drinks/mug_one.rsi/icon-1.png new file mode 100644 index 0000000000000000000000000000000000000000..f77dd6927a66912f5426b206ebcabe7c87face1c GIT binary patch literal 2240 zcmV;x2tW6UP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|KmfSWB-SZSV0tpZRc^po7FE_~X^Py5#4{ke& z?L`(XRf!Uc0)hWAu+sVKPfvf~AQnnhtZ7%xIBKt*25wq@9FMW&dR?!B?w|1dPM)4W z5JZfTACG$O`2%u!eZlH2pYP?#)~%=Aib{UBG{?$uzi%UNMNAKQxt~+NUl{tvo%>7c zR{P@Chv#YlV+-^#B|2OiHBYYh|2C@U9_Z_e~l@U!PTMeY&irR4U+3U*OM z4a^AU;)+=yr1*`gT=h-EM+7t9R~jyxYKrj*y%;)`d_k}$RAdb7Q61%L=^ z3ydiY2C^cgit5ik4HH6Se!cs*<#iU7>p{!L!RZXK#4P&b&re@Zx+i2WslcvpDYrTz5ol(Xl zb?w$$?|lp`I_iL~f%yZ1Nt0)tGIiQ)v(K>*KC3QSx@@)8*VwdqqXeX_+jiT1k5djp z>C_`fkDYe<8ID+U_Uhv5=FPj0Cu=vW?^*lE+>co+H*0he74z(sHHgh#RFo(u5}biC zss)T&Fo1xj;4HUND+P1GS?kJLgMAg-79n7PE##{>O zeg|_YsC&cQx4eDA+8$TA<%^)mLSTvt$w)u1c~HYA|LmB4Rl%2{FGWA6Xcp}9P)rVQ z8-DiKNU4=fDwQ=1qgZjIv(MrjpWQ@k9M(Apjv{FH+w0s*xEU8Yp?bLHBRTyh&puH! zi^v&EtRqK#GIAEZ`ZO0_uJ{2~V$P9GXINcrhA$(baLQS}#n(dS8!tO!ZfRpUV1UwQ zTB}zIfnvEc-+H;!@==;;M{&fPHlo)#%FgLJOGA-d1F#0NXpxV*{QWWg(}b7tUT*Cv ziyJms*xSGfI81vL-$|{{eWr{Z{mD@pXRtYkccIxmV=79Xqe3s%%x9Xpjjc}exHF#x zd}mJ`S3%jsuZAw>u|c!G56b8YC!_q%qYD*w07ykOrL9_$%3#QGjGs#4C_TIhr z{oq4@CaS0dEv(Q%kDgX!vb2qB^|D>c zi7_8^p-Lea`{l4=V+kI8*4WlBbaI(42xx@0>^4lC^vZ8+Mwc(7F!r<9xniS@6baEdy;WVw=e7uf5c@!>*!gXGZ|FP{~4f0FT|636|Hsl?fg1-SL zAd?OKPq1GA00D++LqkwWLqi~Na&Km7Y-Iodc$|HaJxIeq9K~N#rG8W#EFz+ip*mR* z6%kydibb$c+6t{Ym|Xe=O&XFE7e~Rh;NZt%)xpJCR|i)?5c~jfadlF3krMxx6k5c3 zaNLh~_a1le0HIoBs@XOUsG4QOBVjR>UKM?>=tMudF^ge|nR+y_m_*C*bq^0;??ODQ z^|?PskCHJN;1P-Em~L3a8^qI_md<&fIKc9fLVQjLere~bXWU7%L6 z?eAmTuAKnhXW&X}_)Aq_=9BbFLkk`Oz1zUWbwiW)fXf|V;7OMZ$&tJ?g=`jhKcjC- z1AVtZ*P7c~eIKU}K$5yzz5xynfzcdgueW%2M{{rgo~ifu1I&?f%R9-_6aWAK24YJ` zL;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G`2jdAA3=ab{?H#WG z00AsXL_t(o!(%*f-~huw0w#t52BQubb-<_tMjgOHjwV^IWB-x)kH1+l(#-*~T*v+& zJ9>tJiA#Zjfq{YH-?s-0R@Myv$#n!1sg@tzyB=~X@P#7_i(0!CiRL95w O0000 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cmK-Mx{bvFG7oz5S>d-@F*ajU6{_GYbRT-B=4z(dcE>(Q57@BLo%{0Z+L#?$Ku z!Vsh9$7?&!`2*wfzCi19e105Hx}I|SQ&7ntw&vJ5p7&G9ry!=sczM1jdoCF53v-@d zT2HZWW_^0E3NW@n9#f*jh4a1BV<(0dY&_7%otR=G+Q7Knd-)o_^n&gi0KT3+;g{bu z<99e7g5Jz(pKyAP7x^^KuWjgqMulEG(+8^g@td%bNf{mRIGGJ(GxA=JJwmrXkAij zwBn=*%xv!9WPv%xFuimscVCPBuvy2>yI>|22rHMzFIxIM@T2X6AopiAxq+Ncu{YLexpPVAF^u#AB7_?& zs6ps}tXicu#9N08jU+5pM4G5{F&Pa>s!3~2TjZ&stW`yus&+LUoqO%lTi4#Z^g?0zSa6?Jm#nsQ^<`^p+Pskh(r#OK-?qmo z2d;GLk<*Tze(Vf~uQ_{l@#gB?&Bu$iC#xS>`^?9GZf&+)J$#%mruJh!e9Aw3HxcmtYJG)>BBlytsR3?k{;uK=1K#SzXvi*tN-7twLJ%{g!tLAl>v=U&2HxyT98!&^R*(|=^y zHw4Wha>f!h#Hde3%%WDG?!wF4+z4f8g(Ivk)>-C>tT0eT>e1OcvXeBEB3su$YC?6I zOKEO9M$-`9y?NWWu?!V9a-1{vhV_A3(y}ukTg``@)9hva)ojM81lUXoE&3u2Jg)Y0 z#JT2WPx?uO9^0L^6RJ?8I-91a=`h0q+t1{+kIUFClACT8LEck_W;9^= zZDrl59ltA%=yr(OHp34LkZt5eB)x+f91qTb+RZ{_OwhFrX})3c9_f11Llc=Uc92q` z$ka%$%m?LSIBLw8yLrzZI{B_nU<+w=+gL5`N&C4R=Yh(Lv5VteD_;~w{@ybI(hCBdF%y6Rv_V1NRG_wCMs|6l>w0-E~?5YK9yIXV&E>($uvY zPFTZ}Vm@52VXd5X4d!CA!CNO@O_Ci#m^0x!bJ7+Tuy5aM_ zPmDTEh+z$u8%`N_r;%{J?QdztJWs}!`2pdM!`8(h|8t+dcj8+wNMcCH8VS4HguP+J zBK$cX_$@-I$bu^(^j!~}GFPw;tILhEP#@%AZDg*nQ9tUQzF(KW?|%vUCFp+@1Yh@U z$UA=m&faoaz_L|)0004oX+uL$Nkc;*aB^>EX>4Tx0C=2zkv&MmKpe$iQ>A`X94sQD zkfAzR5ET(zq>4qbP}&NuI+$Gg1x*@~6c9#=a_C-#2duZo0iUbpE$tsl0tk=JZ8`Zi66NxyZpvE=di#t z14c4FPaGf?b4@HaG0Ph&@f2}TQ8mgJQZ6f;w>YcCGOOQ{ztEr2RuWvNIfMw75Je0k zWRy`r5f(zUYNVKm(|)*xf6(#A$R(4j07i}ll%PU#{NR7^yIV6mIpHSx!$A9sZGVga zzFnYJvF-0;+pe7e-e=%SYxql5VCIwbN<#}C0lnM6#dSlI_khbCVBkrY49StaG=*#y zct4|WN&|hjK-ZevTYVp=4?vQ-TD}1e4uR1eWv{n*cSmz?|DLJ$_XEt4a?3l((-Z&z z00v@9M??Vs0RI60puMM)00009a7bBm001r{001r{0eGc9b^rhX2XskIMF-;v77Py! z)KxI30003tNklF-yZh6vuy8sz@L~twj+6QlSuFEW~!i-G; zC;$bZ0IGQwnVKiZ{V1_TX#l3?NpIj&(KZ11NnWwr$h;8MtjPy=*BqT*P0Zh19@9R| z2O+XFBUAI_a^nPqKsQzZh`+x;N=9KXS4lEo!co{mH)^S`8?`ifl-MFlY_YTcA`1by zwH%ffSLx2p^Y(cDH!gU#obp~lzu93ISg;)GambV2NMm~~Ap!hgv$zuM54!-=;}C$> z$9)>}11bDKib92`-|PVJIkxlClyJ*+#rDJ5#0dmz2fR-qMk3FjaHdK)Z9>%z6@UUz d01Dv0{Q`OoXD7M>%9;QG002ovPDHLkV1k`JCVl__ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_one.rsi/icon-3.png b/Resources/Textures/Objects/Drinks/mug_one.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..777aaba6aa22fb1cb9ef5d52485701126e89db1a GIT binary patch literal 2240 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 O00009s?Nw literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_one.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_one.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_one.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..76cf6f5e9791bedeecfc1180af14a6e3eb34f110 GIT binary patch literal 354 zcmV-o0iFJdP)AcS!;>~5sM;}iXXt$4#Yk&r5fCgj*tS{ckwX-K#@6@Fc z?aDs|Jg&B6GS*k)_RB;=_&12qi$ zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ccI7Ax{AU%j1S25?%K?PWnH|jXr(`=f$xWvp z>Hcgx*IvP(I!*&9QRy?RN4u#B`14`#$yig;C#xbN^`F zW?#a3x-SYaOkj^G(dNv@d8KP5h8Ns5v`$h= zoY_eem@#hPWPv%xFg<+9=ej-C!(t69TgFVvFqTgq-<;`r;H&35L+&B-oR9Xv3Vu=O z3vL8+am6eUlKsY1PJDB^n&bHhVi^p|33Ee$4(DE~9cSRcftTqfQNFEh<`7wQ1MUxRoZYHf^o-Hac}i z8I#m&*WP;XV_?xy25b$?9~hW4d6p@&PMvM`ITqxz%92%=uD1FbM#hE`kgS?ovuv%83ML zV2nxz;~ES=&=i~0WjFD1ya9E^d%vNMV22Y0W`eac$`y1&XBeT%si z)cpzOQc(AXxsSYkgEbpxx#g3f$U3du-6FUO#UzvHWI`dtHm4gEFrHACJT%~{4i z_B2Hv&pomxZlkj%af&%J7|zIEC(o+&$b zVVYZgBAL`zX4^C?hNKNIhIFePwPrN&NW$v98WK-=_W|QR%v=)k8bKjjgQ1IaHUhqN|E@ zm4U*AJ#997W0JG1-eixY(>w546RiVTD`8_zOcb`$>>;OT-*3~8CcJBPIZ9l)I=F{3 z1B=6loMK?j~SlHiTjEj|0@i42(+dHMmES zw;qD(kdK#*id>Bsgy!gP_H!fSgX@F@qAJe`eE`Y>P9*3GHxA(}*r_2K24VmxkGWe2 z+4tR%MGiqR;_8qoz&=8NG+;f|v$rRsnD1s^&bah>Mm-!sr-NoY!gCI9I=(H2;AtAw zxok{J6cKCevF54>4v;S3%z&FL8l==>?Dxpe9D@O0SW5*FLY4rlM3d0-rI!V0a~H=K zY==yn34-po`VI}*;bq2C^OOD(Tj6OIQ6zjhL*xc}QDQM5`3p#;UxIYzjnauk%~wT+ zjH4nC)16wK1wmkg1~R=)Y?8d<#W^Q|9IQx^OsWDm$*o(U5ysgdjhplCIaf-<~Oe6K&KD)2YlazsSaw& zrvLx}hG|1XP)S2WAaHVTW@&6?004NLeUUv#!$2IxUsI)iR2(cKqL86FSr8QwT%?Lc zuu$3xtvZ-o`UOoIk`xz5!L{Jv$70pN#aUMeS3wZ`0C913Qgo3L|Cbb6#CmYtk9YST zckck9T4bu(HV&woWyB+4F_m5weXr<5Ke{oCVTqY~G_jaO%kgy&4`1&>JgfD&KSz&} zF&W?yiRYMZSi~E|)0>vgd7n7I@{&S)PCRDN1&JTIF1!53Ip?szGXq94K2IDV7IRH3 zH!;f_D)AI?P*F9?7g8=OoVPfu#WJhklfTfP(N+>%r#XZOmJme@B4m_NKoJ%~v}&Z7 zh|_+!g@4fT$H*m4qx>~*g4i16Q9A&S!cy~v0Z~vaD_xA(Lk#fsB$Uoz-XBzWJa| z+M#BAOr-+ex1K1QIl&DVpm`o?_^ebbaeOvuWEAOHXu zhB2yHmPG)-IcJ59;C5vRLWt2>2!Zb61%5B)oHN_Dsjv=c({=P7*0HC3VsLkgS~td} zK7~}WlTstl^+`1K1q@p)X!RVx007{+E&+h&d93g^@K+qiVgGv(wSAv`edlBKlv1>P zpOvzRW)H7e91oF2Z^)tuNuFT-dYQ>~fT>TZ0w{n2C_vSKAIAA#SjUh$k^lez07*qo IM6N<$f+AQPHUIzs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-2.png b/Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-2.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6efd4d0fe021e6cb14b4b8b455f5a8d2adece7 GIT binary patch literal 2259 zcmV;^2rT!BP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ScHJlp{bv=k1S25?%K;>vGdq~&&&76LlGkL~ zrk%f<#9)ktbgv}zlK=B}q`z+17S&ii@M{R+?T=F{T^ zVT#f7^;rF0KQJ$^A85Jf=ll7j>z31QLHT&MHSeAG*ls0nK}^?tzMoUSKN$6mIrl%U zTkMNjPtQdGh6&^`C34PuoOil*Vrapg2l{;{ro9ktU|w*SbLA6$=>gpb06s=f_#H2r z@hcpcpck|16HfPhmZy1sY(wuf%JkTo-fG1DaD;F0i?9~qmvy7m1i0#L)Qc(S2n#3R zIMNCkxCmrs<(eKKJc=KWx^pvt_KL3}N}?@l8w56JKrb1VwB&&-rK%te_Wd zuYnqyxqZhf5R&7@R8D+zy1L`}+Qc##loRF#1IIBh5mWN3Z}G`9ACj=N99O(#wOarn z!rlU9GJ}Dm!liS~hZ1Sdz_Ed!0nLdEO)!up2^qAc!dyX4qrEr2(R{8Yp=%oH1w;r} zR#1b`0a>L;sff1*7aB=eiilKEY0_m>uBA$?RqM`ELs^T8R#k174S#UA34octJ3S8{S9NUc+_TG@dC3 zcN9F+H70^dV`Vm{SurJTL@|V0?Z`EwN$eo3(W@cwl)VoKk6{*)5Z4geeIl1+RHkET z_k50bUH8L%`mu$A6kz+B<+l~5d;#b_SLD0NJ48~pIuQyVUeLfB$qH<#VVu0|ZW?FMSV^s&XC%#Dxw^x2E= z^qU-Pa1Xq!BwDsIZEJzdsGt>tT{79G z(&`f$MpwtdBCnL41DZ{I;C&CM1-DGF6H;9y3XXt1u&O9IEzh5Fru2(Wv|VU>kfjD^ zE~YT!?ALMxL)NwcQ8459bNCBRy50GTR=1D%u2?4oM8{rml%5<1Y{+V7ht~X(0PYq% z4HRt}^MJd7&5Q6Oj%fv_Ejs6-n>%0$tCe8df!;-djxW1{8&nYK0Vmz4r@w0$3`^fhRu zvekuc79;F(SWPIM4C!&e1gjkw6(|lvO;O9aZ8o(E7)DWKQD+~91TSz*q*a2CARjTj zBzfL|9pyY59OVye_gK|gAsg`uaI`7k^OV;`EW_U=~(+C=#QZPRS+YW_Vh1j zbfQ?!?VCIR00D++LqkwWLqi~Na&Km7Y-Iodc$|HaJxIeq9K~N#rG8W#EFz+ip*mR* z6%kydibb$c+6t{Ym|Xe=O&XFE7e~Rh;NZt%)xpJCR|i)?5c~jfadlF3krMxx6k5c3 zaNLh~_a1le0HIoBs@XOUsG4QOBVjR>UKM?>=tMudF^ge|nR+y_m_*C*bq^0;??ODQ z^|?PskCHJN;1P-Em~L3a8^qI_md<&fIKc9fLVQjLere~bXWU7%L6 z?eAmTuAKnhXW&X}_)Aq_=9BbFLkk`Oz1zUWbwiW)fXf|V;7OMZ$&tJ?g=`jhKcjC- z1AVtZ*P7c~eIKU}K$5yzz5xynfzcdgueW%2M{{rgo~ifu1I&?f%R9-_6aWAK24YJ` zL;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G`2jdAA3=cMCUfGNQ z00BQqL_t(o!|m3wOM*ch#_{iEZ%RUDat)eWHMO`k)gRE-@WMM3QB&BI4z)EjYX3ns zM7;1WLG9ucfwZ+m%R$*ti9!_mqFhr!L_;sU3USYNKW_N&aCe-jR;vs$Lku_uU;qYS z0D%B&OSgLU^hM{}c^z%+>b?S=S8jA?Y>$cBKGu%K@|L1?un`zB{Flx5wyoEjO&%Za zzRlB9GaOynI_r5N^ahkt_+5)cGEE|x#_w7vr2udoM>~$ALj}|}7m!kZt)-M)&YuC` zx~_0tR}=~b9U34$8sYk4kz6ImbpD*#Q8j)by~d^@?=f~Z9te$ hsR0;(0T{rb0UsmCVp&$~_Nf2>002ovPDHLkV1kjL9l!tp literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-3.png b/Resources/Textures/Objects/Drinks/mug_rainbow.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..e715ab9113e31100330cb2a170831b244bc60a7b GIT binary patch literal 2238 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 aHoyxUa!6$lYvykN0000 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|clH@21{O1&V1dtGd}&!OEPSa~;{`=W81 zeN5}+IV-@J0((q>7AKD9PS;2bFSxOx-FITziZ~7Of;;mk_=P8Qp8)vmz2Fxgp79$T zm!ZeB$_q}nJjsikpTp1xj}kpcruQC=88yB?-r?sytNXfUXSoExRqjbWrgC~v?0}Qc zX9cI?67=<)4QGuO2Uwe!Y7epFp(O(1o^qPWlBadrkp^7Mv`Ens4dNrKtkh^6Qu02N zlLjy|xq_1c<``mn`jXDLZI6e+Dn_0Onv`HH9UkAE;Z^Xf=LbXXJIqsx^@$byq8(pw zV>7q!&;lXJZ%pOjo5Iz^*JBgQU{DUs6%(}BFB4tTTWs;+nWF@#=6K~x(s>&IL>OD( zOkyw)OJYeSMMc3#2{=~pWAL0fQwIY{g3yGQl$i_2skFz&H=2$v30-287Z4#x5d}3! z9gvl?nX+aTEvj0zsa3AIN-b4ut*u(4#wcSF zT4~y9Yt0OUS~l1+=oksMjkTC&{0PlHfi!i2?(=HoprWpD=mc5 z%1c&Ry6S4n9I@u?*~N>iS8r}l)^1imvi8c{k6BAMYjlX(dius1#HtSyX_ph(oPjaQ z35@Gz00B*#vshEkw3*wS#YP;Mh2W)Za%S3$fx)~IiKi!bZ_Is{w*Yj1mN)v0xv;7G z6U>E8-8<&Kz!Vjdk$#?|QN=I*Y8!snz?Y#fL%(LoTPxK}WK18$ zQL|T758bp)U(yqD)H?Dvxu|2^MJ^!bRZ-l0uiGN#$icn@dOfR09cv|Du1iYrwwBIa z01~#7xh<``w>M%x)rS9~sAF_-WcTTeSt}-ESi~J-@|l-f=xb%e3tP3=(zdX+NU1aB z-m)q)=90R3M;Wrxq-NBP^fZfEBw=eKG^~nVO5gW+PF}k%^;K?6@cACI!;3Zr_nxle zbUYRqS?B~@duuAc*NS5kF*nxYyMxu14Q!UkYwGAOV7m+4V?nW$I?4Lzn8fM>g}qOc zF3`nF3nl89NpTz6(rEbjFnUOj`LeTBY)WA%<}5w4d7QO4DmknG^YGweqgQ6tWlDv8 z4IjSirnkQOYF7svWOy@`#)B`nd;-9n2_Xx!UBhgjUOESZZW z>maV=;c5VZ#>HGsGYnC~x`$hx#Umq{Gy{)pSRC2tu{~q7;(C1fG7#z z2h7X%aw6>wMWGk!P^)&LoGN_P2O49j#RnQ&7jX~V1_E;Rj4$Fn4gpLI;f(;Wv&!m@ zguou4#}6s-8sUFDMUe3#1Rnq|0}#|U>|Z9i@`i=_mC5YZ5g^#V3jWb7Uwq;}dJA{> z0Lw|Bc4fq`GPw3N!ME7BhTYqnACJgfD&KSz&}F&W?y ziRYMZSi~E|)0>vgd7n7I@{&S)PCRDN1&JTIF1!53Ip?szGXq94K2IDV7IRH3H!;f_ zD)AI?P*F9?7g8=OoVPfu#WJhklfTfP(N+>%r#XZOmJme@B4m_NKoJ%~v}&Z7h|_+! zg@4fT$H*m4qx>~*g4i16Q9A&S!cy~v0Z~vaD_xA(Lk#fsB$v$eI^bP{KWd6YzN>1CX48h2nVzzOkaC|5nEh8|4n{j w#7It?keVeS<7lIF)B&Ro7$npP) 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/mug_red.rsi/meta.json b/Resources/Textures/Objects/Drinks/mug_red.rsi/meta.json new file mode 100644 index 0000000000..8d8dfd5865 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/mug_red.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/neurotoxinglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/neurotoxinglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f75f46f5e3347460d30a2f8ec10f598d88bcd50e GIT binary patch literal 875 zcmeAS@N?(olHy`uVBq!ia0vp^2|(~|9lpP2{5 zcYSA^dTEbU$?l+8;WIDVY?{oxJ>1%RX$ac2G~K%=P^9>#r=shS>W@3Y3;c zzpa1$?XY=lZs)A~>p#E0ty05r)=#Y9*&&gg@wr%vu`vr!%hR4L^I<=X=fiDTg+f{d{%T zy5jEx!F_eNz6O`({M^SgLH*K>IcF0JpX$!CFP|W1U-{+sTJ?TLhA=D9TcR0C_rD8F zk&!!e=Zs08^aGZLt>5DxSnRIIv*%3}O_I95ow4unp>5wEEMrXx{#v8f#qsuu@00Ai zoVzm_X9gF1yw+ zrl!>_27Eib5|-@fy?LcB<8ec0&EDe|xh5>X#cjxaAmDhRh*8J->*=~Oz7|H}cb}vy z#jj?+QytiB^W5^?wWEQOzHiHpOk1CN;Ap4(fyQ#t6P&Cv75A?$xibaUDm}M#dva%pFJB1iE<@#E?@2RN^N?lHGIWj-PY* z6`t|u*c}l0ci&>S73j8K+$CL1LGPHxAz!s}lL&;iy=pBZ;vx$z&D9L*g- mu0^=OfTw{`2aGyk)Byle0U-!|mK{3)00000vSe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/nothing.rsi/meta.json b/Resources/Textures/Objects/Drinks/nothing.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/nothing.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/ntcahors.rsi/icon.png b/Resources/Textures/Objects/Drinks/ntcahors.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..182e6e7017a584c2d6851c0f6bc0ad4deee00625 GIT binary patch literal 503 zcmV&h zV1vP-)#@aLkYtf4bm(cr;T_?0@2-Gc{)F>i+@2N}YHU zjt>HMCjfvKI*8;iEQSIE>`w4PhdN!BrWEY2En(NimQ^F6Cxr+Kcomm zGl_x2+edgl42QQb+YAHHQ)B@D)%&lnVF1xgVi4pTm^s)$IU>I)9pKz{7>i>xOzsQ#Y)w7NGSX$N+5C1r{N^4hwP5V1QPtiOB6=qb|=q92lIeFN(jukZi>002ovPDHLkV1hqT+4uke literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/ntcahors.rsi/meta.json b/Resources/Textures/Objects/Drinks/ntcahors.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/ntcahors.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/nuka_colaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/nuka_colaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9046277728749a1551526a71e7896349b495a303 GIT binary patch literal 799 zcmV+)1K|9LP)L-(-@Z>-<4Rj5EK-o4l8q%+nZSIA*<&ZGdbk2go)+ zwvOHbC%hfI-R?B{J{%4kV$8{(uW>&Gso1nfod&S`E&gGjekBXf1YV5M6;j7 z@3~H&8VaeB;LGw^n(nD3g3slEr{KIDA(BtZ0mkRkBHq;j`~d1$w*WBPwBH&<^9|!R zMg$*boirwY2xv2en^uYh@wpukhIMG#3}Hy~xG0I@b2~r-fUv%9B}f#XlmpoNyW8={ z4@CgLmv!=4`SZu?g}2TvaG%nobo>E2q%l)H2DjldB!aItL!^J-T$iF}?yfe=y#Vv< zE2G@JOyUpB&Lwp(z_k^IDT$R;ka4IOCtGP4v3qDyd;uO-VQ&94bZm8 zFGZ8$JdYP5J=f{SUFS)H{BMPyiPSnkwgIxG93a~O*-{RWZGdbk2go)+wp4w9st-7F zDF;wH7`iozIiDX1wk?i7jp0udJI08V0}S07F@Mt9KA(@|E(^iH?2MUbU+@@mAb-mI zNhN{5V4h7%h+^vlIL_w<^B2_d4i156_V=96x3UU_X!iH;E7VX>^#LNlsy-ma`FsX^ zQXWwC0lXbmeE^{914Nw9%jT>400DOV*E-k%%(E|ya&x@rd_J?i0Q2mIQEo2w@X31t zuB9*#dp@7bQaFL1&r(>`2dMf0d6HTmVCdGU=Q^#p>v_Bo>A6lNflp3?sy;xr0kWkW dAlm@hdH^5)8&C#RpeXIqP)14=|_!+}IOaIjh^l!|l=9jX!n!PO(r>%Fci->#zI*T8=O~p*oMfCk zQTmy{nZT(L$Ys(-E|WI?xj-8nUy9kz;jnWMwP)J~d&fKgq#pzcJ}o#zayfDEZ2cZho zQ>qb-xPj)Z?_V7OAhEt-j@iBTf?8vPpv9b)E0D{ijmwW-A-g1Gm&A4d1@fB*0BE5i zGt+md26X)6KC3AK!3y}teN@o_m?X~UZKwuX*EgE$U~grLiJf1-!e9j^b~5~VQ($tj z0zefVPoM)PtC(Z2JRHU9A`m|ZvI=CC4!8#{PfL7#`P*_j;cb}Mx&?rS!v5v~d>iRJ zRA6uYXm}NP-cZp(MYK@S6zPUj7O%iyenu^Ly8u4^P);STf;xWt$D&(V9Fbn12y*^Es|uI>U>ZSq}Mk zFr6|*&=+i|6H+6nhL;N87(U{!?D}iOvU3dTZ(Lrf1X@L88 zlbjq5)~($fn;>#v=jH-b^~6X4u$a!`b~*nTiJX)Hs)4G(RWYP{Q_4+oA1uuV;leg002ov JPDHLkV1iYL3UvSg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/patronbottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/patronbottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/patronbottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/patronglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/patronglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d8a45c1aea02fec0075e9d50968cc41c4d2cf72b GIT binary patch literal 301 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJFP<)rAr*6yZ3-SR9Clz@#<;ci z3gcoviP8fbN*bD*4{v5HWmwtJI;-s`JL_L7pdx9_DhbcE++{V-E5Z`<748*&IOLu3 zasB)IoyFW-ds7k;5f=ALYNkz`!)9Yq?_v6G=a)M-Y$iEQ@Na0G+WS)9C+}bFN%18==IO8>kh!?w_ovV0 z^X(2CJ+X04V`G!ci-SL%vreneP3M^}P*Zefp@#G!9o6eaU9t|m2Co_d*?D#_pU`6m pxv}lsvT8?{b#W;M4+3FQ3==h6onmS)qyYWT;OXk;vd$@?2>`Oudv*W- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/patronglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/patronglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/patronglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/pitcher.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/pitcher.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..c998f643f498c7680c00a2ae9fe0b3f66f53048d GIT binary patch literal 502 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 N002ovPDHLkV1kp|?pXi; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/pitcher.rsi/icon-3.png b/Resources/Textures/Objects/Drinks/pitcher.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..8576cfb892f1c9dd6579582bcb6136a0ff48de13 GIT binary patch literal 2183 zcmV;22zd92P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cb|ota{dW|12nr%P9DJ?SGq}UQ8>@1XoKC;e z{dHHDIfbGkumLM!{rhEyfACP^8nS3Dt(1r-x7^6ksquO)nqofh^Uyto@jHHaOb}QM z%Ga>0d%b}#uNySq{QjOFblh_4EhxozN3);o{dp^S3u3zX=^lr6Z?N*locl-P7W-n> z(>N=fF$MCN0xeD)&zr837+P>+1NApC`9d^fW;y))wg1AybssqJ(R=b=e9??w-Ej$e zF{?cJ>E0ljXj#qS`xb0C@%m)xUd2mqz=H! zS#m+XRfLcQVaXy=M5Rg-D_nAsQi>L@Q>Lt0MT@FdZEBTku2M_YT5GG;s4>czgjSli z+FCQip_UD@4C@VyPMv%1(o5G~d+Rn3J|hnqW$37*4VyH1q6CClrp`Lsw3QY@Y2_uW zEM0ZAWgD@!dFL&=Y~6LYZ4cCLRNtfajNJE8OE+qCfbw7z9 z!J&JD+}F5$fZDWEZutP@SqPt^LNd~C=V(;%7e7nG?+W-U=yQVlDq_87BxEi#$>t{M z-AMeSXCugbi}{zwgNA3uXXzzqw^n+wzHsMxzed(&0|^LK#;iJc_tY1HyRBKuZm0yf z(JL;r-bNo?119I1EBBrd+SoP_>9!gVGDeT?89I6E6KjZE2 z)dXKImpb#tQOG!36D3A$!tw0tS<3k66S0l7?n@dvq1oAM4jO96M#6(3<@VQJr}JZf zhhG5*hcEBi64Xp6h4KQoDt9Ttjp=NQsXHl-SZlY^Fw)c`3B^xGXL;#>hibXAO$9jK z3DZAJt0ffj9OQ6@0+S zf-6CB@3}l!KksgOrr}!?Kc;@03)~4!c%qCXSrtD8i2m6c6~VhX<6cqZ644bdg$%Zx z1kckplf6*fC*_LlJH|c4eUKM?>=tMudF^ge| znR+y_m_*C*bq^0;??ODQ^|?PskCHJN;1P-Em~L3a8^qI_md<&fIKc9fLVQjLere~bXWU7%L6?eAmTuAKnhXW&X}_)Aq_=9BbFLkk`Oz1zUWbwiW)fXf|V z;7OMZ$&tJ?g=`jhKcjC-1AVtZ*P7c~eIKU}K$5yzz5xynfzcdgueW%2M{{rgo~ifu z1I&?f%R9-_6aWAK24YJ`L;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007 zbV*G`2jdAA3?l{Oztc1T00FZ}L_t(o!|j$aj_NQFhX1Typs^(+Xvi5TI6^Lvh7KCK zT!4}$4M(6!Nx|!AC~0y5Ux6x$B@jZ$5lS)=*(%n;?&<+rFVa&+a+9$$UuOOp$BLo| zue3M3*lK_p;N<{+9zEdue#tq%dZv^@7>3p}0M@;8!1w*qaUA@OBKV$%Znvv_Qc5VL zP=QS*6YIwTZoi&$4$e80QhGU#qkZ>6Jfwjz3@xS9m%cPj5d?v?-|w;AZV?1QX+(r+ znqs%xA&z4l4hO_>jMM3){qyLv<8jFt z0}%lLk|fbJXN+Mq8kN5`2Pz0DC0y6VZEG4UK^3$rM`fIIWLc)OaBmsj9!Yf|f+J;1g%jJU2W`lme|EV*ilqibATnTPp zp65Ai+XfLq2!Wy~be4?VhMwpBbJDHXYs(lw{ZCi})Byh_z&p+d&y;+ieIx(?002ov JPDHLkV1h5<^xXge literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/pitcher.rsi/icon-4.png b/Resources/Textures/Objects/Drinks/pitcher.rsi/icon-4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a29854fdfd8d9787d209070954a2dc89c254656 GIT binary patch literal 2190 zcmV;92yyp`P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|aawI7X{pS>O1cVTRLhrYi+X(Do#ecJrUVm-`D>pcq^f&8ej1am5l#s2F5_T^A)E_j6z2yu$p6@9r-G zSPaV7G|jWVf-i3yG#-9?<~!|2PCkOjKdENZY~yi^Jc2k}d^&Si&W4&E+&RC{kJy`A zFY~Af#t_Kk;KF2Lzn|gK#IS-3S5SKf4z>_?WoFqNdLKV`58Vd=ypLYu=WmwrTR1L3 zH@DJDoDQGlh0k|2;mINjcg^9^qL{q;$Lk?}YmL0tyu7P1IfN@6r*5w75f(Ox;=L_- z6PW;a2DQ83&c6B%)COE_&Noa71w?#Nq(PMy%}qOXm>9zh3K~L3l#Q2JLkWF@678lH z)B%~n8Ax;>$6$xMEwuF((+6c4ng?NJAPA$4ln7ERP zmRw4y6-sNYkX5n1g3&_b7MrxxwB=S>?MR;|i@kn!igO5Jw_{1NmuL2V|ftwj`MOoL=` z5qg@5ee^6OnQf`|<#DI(mGM=230kG3mTH?g^K6_w>#Q9G2vhpV+Icl<6UklXNNE*x z0-Wd>2U;t=^`;Il#~d@ZMo4XJ>&Wyv3wP9KYEZ;-gQbE|hhfQZR6(?!DDOLl0RfcrYZLc&)hy z{~d4l8GxXC+OSSR&xBEEF9@r0ljO{q#&vRNMv@^`$}t*FR<%q*^V8l~ZUgYpEmy2V z0gesaun$w&PJfF!8wk3W=)g&81B9_7bGFe_p6E{eO^$D3cU%Kf7Gkck99d&e=bb7juix?zgr!Air)Y!P9_=>X)hB%lO_ z)drr}pH%Q6CletB#rbD)5ruJvbffN-@p)>ex`^ulSlFPx$hG|1XP)S2WAaHVTW@&6? z004NLeUUv#!$2IxUsI)iR2(cKqL86FSr8QwT%?Lcuu$3xtvZ-o`UOoIk`xz5!L{Jv z$70pN#aUMeS3wZ`0C913Qgo3L|Cbb6#CmYtk9YSTckck9T4bu(HV&woWyB+4F_m5w zeXr<5Ke{oCVTqY~G_jaO%kgy&4`1&>JgfD&KSz&}F&W?yiRYMZSi~E|)0>vgd7n7I z@{&S)PCRDN1&JTIF1!53Ip?szGXq94K2IDV7IRH3H!;f_D)AI?P*F9?7g8=OoVPfu z#WJhklfTfP(N+>%r#XZOmJme@B4m_NKoJ%~v}&Z7h|_+!g@4fT$H*m4qx>~*g4i16Q9A&S! zcy~v0Z~vaD_xA(Lk#fsB$7CeOPjpFzJgWAf+8XtB*}oeD$D78AE(Fd2}cID$?Rr+ znfcFbtT>MGOnbqTtpR8No(}N(=z$;zD$e=UGo=)wD6+l-VBI?hf*`0|*Tq{LBk+B6 zIvwqkQbH+(8f-F|SU(PM`}Lf2aL%EW(#v&S?YkG^Aq_-PWGSWo>C3VVVHjHb{T|!x z7GW4xMnsrp8FsrJk|e?5a6pnIIGs+~KcCMnqaw6z8;mgkK&#b4zu$)t0_XEt?>Qci zX4-H(9#@Pp5D@?%O;cTS#u!GUQT1zcpoWlA!t*@bwx+QX)IsZV)W$hSp65CX_m<)1 zk@UCQZ2-Va*G(bckBFtv9-@grs2t`o<0H)I^9LKrx*I6*yhD3zR<$}#-gI=%qsWYUM zD9h4Z32t9r6a{SC1`$CBfwC-hmWDKGDWelMCCu{&3fIkWF4nXG5)2y(R QZ~y=R07*qoM6N<$f&-%M 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 Z0028LFO{Qg_GAD6002ovPDHLkV1l~YbH)Gw literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/poisonberryjuice.rsi/meta.json b/Resources/Textures/Objects/Drinks/poisonberryjuice.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/poisonberryjuice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5752f9452dc1aa5b23d52e63b15d4b787d1d0357 GIT binary patch literal 581 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVB+y~aSW-L^LEyLKPE?kW9*OQ zFL>#4h_p4a8$4uOu;-kEt7oc54dcr#m&6YUXnR?Edu-XUS>5nfkN`IaubLWD)QY1! zD-8c7et-6($$WoXfqUBipYLwm-957-_qIsdq7252BMe&@Op+L)7^DmtbQyXj4#*nJ zKmUD4GMi=Hi}wwx=Mr`webk+MTYHY-{-Ezjx{TlQVMqi+<}|kUCz) zzH{!8&SK*aa`jabYS+xo*j-%0Y9?LcvQqvUvvYFZ-1UD=>#l3{YWXP}d;2W5PAL6p zT2-@g{v0`r-#_jwPT3mpdiD{Q-u1TZ5g$EYy?C|le@)d}xs2`0pRa0-vR|><-zB6_ zYUa97slR6X&RtbEn!~d8he~Nh<#VgKXLmK5H~Ypd^!brjbN5Ln&oc)7wS_smo}5vx z)X%aDxbHhj{nJjKRZE`FwYm6wu0zT^n~P2FnL{ouJ1MNYgHfh~5f%c+elxt6b1*#r zbV7Dby!68V4ln*QA%#kVSc4mn1Gj@R+XB`Fg3K3~E`YTzu~*Pg>~1P6ow3{Qe5Yr9 z(>3jl3a>uzD)_GMQQvT`zj?*^*N5)TUtr5wbp5&SgE#&Lb-L$5=YMB*uW$NjbOOp+ xU(4WLE9d*d+zDah7j}<&hZ6{!obnG?w-%cyThCuL8<;#8JYD@<);T3K0RZUP`#k^v literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/meta.json new file mode 100644 index 0000000000..eac9b60db8 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/proj_manhattanglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[1.0, 1.0, 1.0, 1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/purple_can.rsi/icon.png b/Resources/Textures/Objects/Drinks/purple_can.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c132823e07ccf2f9def98ea97890f42ce0ec97d3 GIT binary patch literal 434 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFjjiHIEGZrNwz6?z;M`sX&K|z z+AEBU`6NmYBor`kTh2;bYx7Y)R!8?v(?mVK8CyRc`G3Q}ovk*vRHTso_=NwPmtC9i zhGUY9LH5(m|7pig@qmEpS7QkfIMXv#^2*ew5`1ssou?^#_%SEett;rBcyN{PZco#$ z#>U1Y0zWo?m2*CL&8UqteV4?StydrR?X38!c6j5myF5|q^~`G00<0nPg_mWRlCgya>JamGd!2pvz*vA zMTtG;_TRRLH=DPE#Cc}-#VxwQm@>7+OtFgxh()6PwlPm&)RCRQeZq^`{o0-O&6>Sz zo17VJxop1NefgLnf~lpINr$T}=8k7Id(4Bq*EeK-G-+GD-TuJQgwz8sC*PL1cd{-^ z;VNU#l5gCXHbuYUwbMSRTlM83FEbDvw!Z1l3k)TbOLrKrurc3Lk}5s0f|>0OBg4=1 WockAqJk@}4!QkoY=d#Wzp$P!qTe3p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/purple_can.rsi/meta.json b/Resources/Textures/Objects/Drinks/purple_can.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/purple_can.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/pwinebottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/pwinebottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c185a0666f054cfacd1a9e47e856011c6ad1cfaf GIT binary patch literal 460 zcmV;-0W4_c-3?KJWMWKHQxno6TaUdTf1qR|Djt(}pV_G+g(DiJ_BeM=}5XhKAmmpD2&76FJekjdON*V6ujLJQ0g znhr>% CYR?=1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/pwinebottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/pwinebottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/pwinebottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/pwineglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/pwineglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..18337e09956477830bdc03b350ff135f9b18bde7 GIT binary patch literal 1436 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 Bd5r)7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/rag_lit.rsi/meta.json b/Resources/Textures/Objects/Drinks/rag_lit.rsi/meta.json new file mode 100644 index 0000000000..ae19bfdb03 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/rag_lit.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[2.0, 2.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/rag_small.rsi/icon.png b/Resources/Textures/Objects/Drinks/rag_small.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c49dbd49a1c7681d558a08b5cc8336e9da152d54 GIT binary patch literal 347 zcmV-h0i^zkP)tfFO%s*fLa}$%v zgf2sN`nv`A4*;sEz%UpXucvSv&20KA>b`H}z%Uq?G)ak~j3kK}jeYZ{0091ZpNIKQ z2qa3^mum!|wIq%T0F;*Gc~RSiMm=!iY9I%|ahxA%h&DIjXzUw9itC;-o31J~WaB9~ zj8u5YEM-$vuR^PPAPYAXYJi9zy8(DvWTH$zDfBIO_iiN{THl1mi{xb zvI`CStl;`aed|K&08ejMqKsCUvP3u@mlyd_h+jEI>-V0BKAtJ}IqT)(Xl|=xco^I8 tOl-phbZ|7U^K)zgEPw^D02aUkd;zv}V052^xSId~002ovPDHLkV1lSBlDz-` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/rag_small.rsi/meta.json b/Resources/Textures/Objects/Drinks/rag_small.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/rag_small.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/rag_small_lit.rsi/icon.png b/Resources/Textures/Objects/Drinks/rag_small_lit.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..06c48b6381dc9e97ae9c53773098b01089632855 GIT binary patch literal 670 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 XDrHx>lgpzL00000NkvXXu0mjffyAe7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/rumglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/rumglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/rumglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/sbitenglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/sbitenglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..59c4a62dcbbe20e70989b8b3edcf49ae196bb058 GIT binary patch literal 400 zcmV;B0dM|^P)2ehg!WC!`EghnY+(1X`l63hI2S{*YFGak_LIQi& z0XP0COWvLD&FqZ562~!Z%4^lV1Ly$$5+I#Tm+5S}Yz4p=hYydVstP2F6dmNUhWVP&4P8^SXNDFssJ$Pk5>mR#}@+Pdx!|Pi{ZL%_SOL3wNG;n zS_nh~WPrAf(Fj0=X1h4YX#5=rM6>;{PW)s58Gs7CtStZl_G#|B?sXc&vawb|?+ifu z{6`a(M^Pz3J$3fXS=RKZ0N|=oGT46ZgAuUM}UgOXbFWXO~-D1OObH>DtplT5Hvj_n9Env<7mOGbLJCO^3L^n*zXxzwHOkhPQ`Cf8N9M44=S6k^03a%shr0t0wX=7WEu=o9@ezoc&?+XAk);03 z8W&1}vW4ylymo;b0F{yW{NPiZ`i!OqFcdR^UPC0QrsPE&z{@S@TjYj&838wdF$YM7 zJZyb0$}nVFWXJ^ZDFEcdX0ih7U6>m=#?E}$@c;k-07*qoM6N<$g72HyS^xk5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/screwdriverglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/screwdriverglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/screwdriverglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/sdreamglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/sdreamglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..162167e429580a5a291d1d5d5508aeb943cbea06 GIT binary patch literal 440 zcmV;p0Z0CcP)EBT9=!s=fkP0jvQ26@X=>I8p#n z(?tV2$^3l97ZneV^GV78oN7t;&r^}D*@;v^L$<@!1VhRre737ss=()nHrF~ i4P}Hwi~LO(Ilwn_`+lP275cpZ0000?*RxQ2_YmY1%MEe zP)a3AsZ=Bc7l4_w@n|~pcgw)jt{zL*3E-! zD3O*czz-nDAC3oyCUyMbUyXzSuFpgBB8U(KvKfXln#~xh8beiI03F=&q}8u&Xeg1k z(idElmA>#q(w_>TXsri;p+s7}=Y1(dz2^z1KQ%y+S|0#IiL_SV@c^LJcXCO8CIF`G zlSiSx7Xo0r&TIFX0g6zns~C8Hls>{Xi}T1tDgbNQaJ!w|2>{&Q&rkPuIuih}=66Cb zApl5ezh+m@ukrV}qs^KuVh&^|K^|s2m3{~-fH&aNbI1%m*|h)w002ovPDHLkV1nhs Bt7QNH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/shake-blue.rsi/meta.json b/Resources/Textures/Objects/Drinks/shake-blue.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/shake-blue.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/shake-empty.rsi/icon.png b/Resources/Textures/Objects/Drinks/shake-empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..473267108499725171428ecf9628ea9bf1d76858 GIT binary patch literal 375 zcmV--0f_#IP)3`p9ok(gElxr~p}RN*oCWU~Hn>LCl9@}nz4nT{NG~g%gsco}=1C*&8fGGx7 z?Kc8wl@-I`MF8x^;IjRN09tqA`Q4TAp8)#QE>Hg}Kv~Mo0^nyTZI&IqcGZa-fLJzV zzjrnRfS0$$&G~6>1^{C5YJCy{05koJ9zVa<+1m9{t!~>KD2Tw7nMvL+VFlnF;2W~- VbqZU}WF#2FYEUNSH+F!)&NRPDHO z|CtBp4=JiT0K-8~UL|&iI?X@$Dk+;mx<_pZ|GfQXG~nRb+WiZ19uq0BVAv>i`eVA5yC{xKW~El?FFS z!B3F`s0D_$13Wl?NUhfse9pkYz_4CVkmTT}*a0xG#Z-dmd{1=;zki+PJMF_U5jMNvSiW!S)gC&B@D0008TY_O+J34s6r002ovPDHLkV1lRN Bv?c%m literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/shake-meat.rsi/meta.json b/Resources/Textures/Objects/Drinks/shake-meat.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/shake-meat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/shake-robo.rsi/icon.png b/Resources/Textures/Objects/Drinks/shake-robo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3311321336152e9493ae0b92512002cc9cfb7939 GIT binary patch literal 424 zcmV;Z0ayNsP)-GL_!s2dH47 zVnNCUgHx9VLXC?j(MDX7%aZ?cckd3~@7>*d$0_6S7+I>2srMWp2gm_(fE*xA07_{{ zDGf6Lpp=G;F@-Uv{0EUZfN(CxZF}U#t-JHq900bG28cR$RvPa%_RDR1#J@}>0B->(s;dE8vwx5%j|q_w>kg-XEx=Q?i-4X-|_wX$NIPJXuF^Sl8!()i_<6D7<;Ah SuO!w000006xcaCS>q2`jMtM|by6K7yxc*(%Pz~E!4Q?=vD z{bwGWKcuMY01O8`d6n25>NNl0lUIqv>Y=Iw>}AB}zkmOpLGj;@`9FXDWMF4!XW-@K zWe^k;WY}@#KGx`=S~m3H{2^7j<0Mu~DtDZGjxG49>Hu=V@N$3$=MSl_lebW!q3h%= zoWW0Z2ap4Xp94HNe@IQg_WU^m0|UeKYtQipKTR9}1M}{_!JkP928JECZ(ywn85kHC z7^&Sk-TLO=Uvx2V5hi9_>Zu+D_$m_4 AhX4Qo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/shake-white.rsi/meta.json b/Resources/Textures/Objects/Drinks/shake-white.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/shake-white.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/shaker.rsi/icon.png b/Resources/Textures/Objects/Drinks/shaker.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fd536a83d194af2274ba8794793ec90dab078ab9 GIT binary patch literal 408 zcmV;J0cZY+P)U5Jf+$6m&??(Yd5RmNpmQ794_#GjIS(E^{HVPpC0A1Ii>pB1!Wg#>b z4=~0?$8o?ppR5~(fxhphDxq8f%d!vz0jjD(+qMuwU>FAJIMOD(WIvZ_n$UF}hG8tc zu`2-Zn?0rUn*A0@0o)qzk%SP4<9JmSq$@xOK~WTlqG++lIY(XBAcU-rCv8I8wy)Pk zQ7qtOrPKwk>w;2>G)*V#x~@xi!lp^+y6(h;Yy2^nlm~p@*XG0Lo;c?S!*JCwdil@j z08j#G+ZI(-fl>;~vYrocPbwXt1n{U6hGCHE040FE^?m@J=Y8(+%tcD0I7yOo(==aM zmM!-3JU`3CQaTgN$#knDv30000NklGD7{-4a9afmu*;SXFG#E{?GQker>{4C|7K4OVhz{MtTM``>k-$HRxdgFM9Xf=d zfl*%S;)aqS5$1-6ZXq6a*EDB#U2_h?bch*uTZQ?S-Msj~9OmPl_kG^yd%l-%Tr)E> z93+k$X!Sz^z|mqqjE+Xkj!-946O;B@ch6myXr7`K=m>RkslAyk-73 z0#g%{e4L)<$>S&si*W#6j=ge;k|=5mhWh$Ufce>3g28saeOY29wQ8@Ijeu3);^j6z z#pXEEau!|Nz^~K*;8$w!cq)mGMog!Ea5)`B(b0(c@X;XSug8(SK6_o)HVR_ZlTA!b zOgb{9kOvx0H52abN7pv&!ntGsx^8rdq!inNQxT2)mAsdZw(5CDO? zdONnEwS~20va|#&SX$=b>a7;Nb zGO%w<-@P!6%}orC443vsv=@=R@aFwHp{sdO1WJhm|1&xy@CORH2SsZCwbK9q002ov JPDHLkV1khaPrU#D literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/shinyflask.rsi/meta.json b/Resources/Textures/Objects/Drinks/shinyflask.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/shinyflask.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/shotglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/shotglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..26f8d028c4f8c516d70dce2c5a52520cc4c3b048 GIT binary patch literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJXPz#OAr*6yZ3-SR9Clz@#<;ci z3gcoviP8frnB8OzUNr==_gFPFHa4bP0l+XkK)th*O literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/shotglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/shotglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/shotglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/silencerglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/silencerglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..eafd86ad71698e9ae0283e6053466d7718d49d48 GIT binary patch literal 519 zcmV+i0{H!jP)q0!1?`MYqNGs7f5d;m|3(l|53Vq1id!twIaaa&Y=;T)Gsv#;65@aD~j_kC|>Wjr3UP4l*TdIeAcQ~KcG-1mMNdoTvA0Bf^JuF?%0B_m&VB4{){J;@0kUp1(cltxec!0w$$t`|{uNy90pW)!JBVNs@##O;3GCqY-lF zfm24OF%+OEzL$q;t+CbuV2r`{ed;y0$#w%+R(CKMptVLRb;|E{yZp)*P5^Eah#=A; zj^lDEj$@QkWLdUcQBEnHDllyRlxJ@ac>L%-)>@({0w4@S(lq6Lt{7Z9aq2?ntGFl% zay*PNWiR-?kJj2X72tjqBg;lmN@0vC{gni6=3D_!gx9a$k!2Z5t@Qra-zwYJngNfLbDKNo;=4|tx?>2xs0FrUxyJdb|A&ulj1==UW6JZ$`s zm){yiqo^a&h6Qj8&~hHZa{&N6xlxGAlY5qJ{g-7Kt literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/silencerglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/silencerglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/silencerglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/singulo.rsi/icon.png b/Resources/Textures/Objects/Drinks/singulo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8bfcae58280ecf95df5c95bf9b90a53870a1e962 GIT binary patch literal 2982 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 GsG111Ju0g0^=Yc~ca5Ca1+6zL>jKpn1B zppp)$Thu5Oj+&Msx7dlD`#;|~=fre69jwyqO4Un%5}*Y54*+YS547KgGH<-OUE#t2 zF1md=IouaxGN){{ukR%UA_!pJMc5to`RwL7+hIfi27mS$1YpKXZyxNmvgTafJ!Ot9 z03d0r-N%-54nzc1MX%QbGecFUlZpTUrp}27BFTPa=1Jd}N^t;Q-Z=+VovwO(kBCs! z_j-uWpgQ2AOGE$wRh^{4x8K8`&%yvafe-hrxCbi?ph;hRdiw%qPKg7+`NJ!Y>Vu#{ z6kLkqI0k@}c%Ieg0`Rq9R^0as2e8IKL{d3lS_G^$U{2EfI}J;WfQ5*Fh!(O3f{$Zs z4H}J|$#oP(xrDu$JU=FvA4WE6wN%*;eFcFW5deVW&6q=u+D0B8{YDQ&;*0P3Kt!Mrlu$e!p$Yx8XBYwqOm2Uc+e_XO>Gh6gA^nv z3M>&S$U%_8{*Z$dy@p4YIo(U?@(w)ieLuM8_i;J*+-uWyoo0r;sqPkl1z-UH4w*$- zJZ=2eLenF*h5%^sv@tssz%$Taqx%Dsh87JALkIzA@wDL`QUO?4-U7foq|&b{=!rck z2;mx-ni#7Z|BRjeL(xoU^oz?JXWK!p3oithVnRD0Tm!=sKD2pn zo!+4gLLn)dP8`7FAFtCg=Vf8zuMqD8Eqy5NRup$@t={950ub*5b`{zd&3SLp9A9pv z%;f;y4&ePA9KLVuDF>x&g8%^Dj?J%7G5<^QH6RB7uzm~W4{&w?Ez)V^FQd_JbId+V zrvQl^czj5F19Y~V^F|%RSVoELt{sujRI1un54bu_k}A3)q5wjz7$7vax;*2~SB>uO vUjaxJT@fuBUio)`zmBHAh%5jLzykOLJ$-MP>El#v00000NkvXXu0mjf#df@W literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/sodawater.rsi/meta.json b/Resources/Textures/Objects/Drinks/sodawater.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/sodawater.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/soy_latte.rsi/icon.png b/Resources/Textures/Objects/Drinks/soy_latte.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..034fd20b14796fab3e52cecbcf5409e84faea6fc GIT binary patch literal 291 zcmV+;0o?wHP)2kcF#mg>)4uZET%rn@v6lfj?y4 z%tT|>wk=}n5H))ONB{{S0VDtbM^3QT+J5rOvdn%4Kt%R@zoIx5UVpd^ATqYDYZe5n z1Gc(A_r2GXl?0lGvmGB`97jkg7rhX%0Ybdp0E7?_LIfpRQnu!gh=}IXuaxq}bX_;E zIR|m|cff7xy72mN6Fad+0EEwaGk_bzG)>6!8~|X9@y6^9;9C1F!CyuIyjQ+OtKNcV pEp;KJ`XGS475zF+00|&EzytKPQ28?u?)3lw002ovPDHLkV1jt9b!q?r literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/soy_latte.rsi/meta.json b/Resources/Textures/Objects/Drinks/soy_latte.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/soy_latte.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/soymilk.rsi/icon.png b/Resources/Textures/Objects/Drinks/soymilk.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..307ff9a9d0d5595af181d343192f4b4f7678e72f GIT binary patch literal 361 zcmV-v0ha!WP)`sy-XfrNab@u=szyo*y09}_!$?(3C8G!W$3$|+L zob%4f0JPSXR5x`$j^nzW=Q)&8q0-1fZ%drIj zgkk8C$_+qfU&en8r&}NgK#(##Z&^D4vrCI|Z0l_}J3x>!1Sx|YG_|>%l5&yHfH4N; z?R8_kC<;9G9sq1k2Qar&pf>{2BjVc~FvPwv{r)=sYbk!|zmn&WR$#$a5Pbn-Ohb#F zBC7)ceS2sP6lu>_$gZd4|o6%-~rwN#syBIP>uJX00000NkvXX Hu0mjf9VnE+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/soymilk.rsi/meta.json b/Resources/Textures/Objects/Drinks/soymilk.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/soymilk.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/space-up.rsi/icon.png b/Resources/Textures/Objects/Drinks/space-up.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..42e0336cb2adce7ff66c70cf4747fd71be76bd23 GIT binary patch literal 438 zcmV;n0ZIOeP)=5fp|)OM^tNE{5PEM81KHxOZUXQd2Z^qeBi2 zV$l!{`b>q;3wRnt$(o+C&W8Ih5B%Yt--qX(d!92K$6=f`G1hb+-~)WXe*jFndC0ET z)%RXzXW8%sU{~vEHa)?L8omCDuXoXMa^f zO?NgIfc$ixa<)9&eAEx_m#cHY$|;zIz>UDlDFO}QEkJISP$7%Vz70Uf@)*$0UnAZ+ zh?frQ7Xidlz*_)7>0S25SLr%@BtUV-?2Ys0NB~!Nf$`ixg)EGP-X|~aJKh1x-SPlI z+jZ`sv|hnfD<;fCb2zwv2Gk%dlR_7ubrb_+vPZ>_Xmb!GyS+^qmPuh(3Z*{>{C17~ gkH`o3fUyHU0aLYb)X*pTeEQOtFEa5M;OViX8U@d5dsQknSGfULh&+2sY_$(z(r6A&Q8n z1Xtu(5Z6(0Q*3q*bEKFJYKlxV!_4mY{bs)Z%r|3nyIsy%GH3PvF91AC`{Ui++i*66 z*$f^g-}%!0VVo4ebzw4z+RxJ(`5S=S+mE!{ZG7LyaU7s|T7X)E{d<{TFwa%3d+W1o$I!)r}@+9K@rY{0_l85n>8IKMzbEM0SYEAZ*% zS8V4p0{LysCR+LryU$txhHg5}X0suHQYuk@xm*UI-|y3CG_-Ppb_k}^DN;&=5J)L0 zm&-^gb*N1|bBdX)+iLw33k) zKt7*OR4=7G*a2}n4$)BnGMUHEgCIBtVMPA;Ix z0Wiyj{;~Sd-2up!QW6SeJAfL#r^o>?%SUD!*!Jne7HXvdvP#0wzt}}SGccTBU|<)K zXZdIG@DI}oavi`(PP2U1FV4@{#NF7w^O9;7Ss_4gj S&-bwa0000Ws_|>z~SI#l)oD~p?TTE)9DRM?PEeGAl!jsPb&7V zf**d8k_o3bqT|E?`pxycHcmu&+s7$1<+vDL-4h0o+5_W`89MB>0JtpWY}ELeJXnz# zC4K^l30VMy?iT?lu~guga!Z9v0X&3{xP0CLz^6>(-l_vqqyeN}!ROO|ghP||C=DRB zioeR&5awln77mvGuY^%LnFo+Ap)kPuT_AGpvXlehoRu%35J2iynzw709Gy* za7=jsxLw`De3s!A1rS=r04=S3J=e-rBf*T_x?G+Z!6}1L6InCXjSXFqv)F!#2|dQJjTsJoqj%?C!kx+xM4=lu9K=Dd$FN{a*mk zf*xGGwCXk8CRl(4`D{LNrU1m*of_U&xJa0_a0@rmASdl4S^fHH_8oC>e(UAvh2R zM2X|*Hc{ee!Xiq12qsj3wrDX;Le_r2AN1iu2k0I5 z0b~dUU4L!1!n?~`O2bGAU@*(C>UV)**E_l`Llg?Y_wK&@^Jx;Y55VbIK6IV%02)6U zvH?{nQ)LHNH-71gp#e;upOnd07jNbBpd|`3QR z8=K@1Jc~IvV{roq#~d^B?SC`7Yeu6Hn>4%8>J2~x&;a}gfS^jyWTz)({(dquwF8XP zjzqr{8mAqJg1HJp4G`>x93LIZ_5D-nHD2&w1y;iEbH;+0E(2m-0LY}LPN!C2Yww_V7jlH0m?1)r zG3qI--UH?vdzS$L0aO4`E0FpGfS4igB*nAj4UB$cRY$n?HUJ@~g-;MHmZCxG1VC~C zGBN}qBLl$W`BMdNQ$CR$SNvmx(P4=Cg48+O7tv} zgJJc1&o|U983K@lVRh8&rp@X2(s#K%s=VSCMhF4qU|8+yumdnTw+290haHFAigFmz zg%F+r?_jSMoL^hp2cn+>1W%wkw$8F=o#{}NHm5_woW-uV-I$`aRD7m|XJEW3&9bNc zN591(5swJxivt>4T#Tc9>7A(M;>n+->mE=CmZ&YR0pKoCPwKLU)RV;+K*HKbWsjHi z{1JDZHb{ORVp7+YA`YPx#07*qoM6N<$ Ef_ewmIsgCw literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/starkist.rsi/meta.json b/Resources/Textures/Objects/Drinks/starkist.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/starkist.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/syndicatebomb.rsi/icon.png b/Resources/Textures/Objects/Drinks/syndicatebomb.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fd3217f0cf9dcaf2fdda16c143b79bab65a867c9 GIT binary patch literal 637 zcmV-@0)qXCP)ljA7>1wkoHR+3kP3w&3eMK83uHoBJThd+!q6o<3=EanD=||h_yJiWA%P=Ni8TWf zJFv3Usu6J{s3Ji{>l{PtV8>0cGf;+n%iYP}``mkXzB^m`{XUl&>QZ}O8dw@w8dw@w z8u%X!WWtU8f$z>sZmt^}LA`HTI{eJ)_hk`|1h?VKgCFjFtL}=-l5uta{il3bytA{T z0rvLxCaScY$qcMi%G|lOcKgYjcVA~IGvy+1OuOBVj6P_0Ivq*Fi5L(Oin;8ld3S4f zmhkO|&$|GvRtv{*FijI6QcuH~G5}-$s8St0exU(T8#4A?tpR1+6vl@dc`yirdc7V1 z^?IE}IiX!3D5G*zC_u4f%4*)#r6OFZ+>&DcP!|ekqq8had!C1F+cX*t8jS|FZR2?! zmSyRrocIg?T93*rSu{ABtSR`8#yC$lOvxIm5ae%fZ*x&SEhn-BK?1&`&qRUvtUU3@ zKY_Jww;Nm61vpUyh#*oPjZdADk`N$Vo=2@#1E5;10x%p7|FlzZAao7@y#B7-XU(k} zuJ?2t5dqIXJ{;UD9B;JSZQbc~X7BQZoFF%H6l<;VQ87{2_1`*A%DK?M0nwn-#`kEO#hs|`X=sbF30qB8s0idA}J?k;9tk3f0F$M XB8p-OWh0!c00000NkvXXu0mjflk*tC literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/syndicatebomb.rsi/meta.json b/Resources/Textures/Objects/Drinks/syndicatebomb.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/syndicatebomb.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/teacup.rsi/icon-0.png b/Resources/Textures/Objects/Drinks/teacup.rsi/icon-0.png new file mode 100644 index 0000000000000000000000000000000000000000..e93cf7da6a652f14b0128c45872095e0fcbb6540 GIT binary patch literal 243 zcmV1Fz+-OUB_INxHMmnWlnj+iaR+IV1eTu>*sbe|k?|OM zy8#Sf00S7{9{|suL(JUn`rdo@a{x29d7h=7rb+UgbJIf9fRqyUeV4kFBKfi`*tX3v zbNdw0wSttA zaB^>EX>4U6ba`-PAZ2)IW&i+q+U=HYlH4c^hW~Sl905rP#Bsnt)!rb--xo}~KW26} zGfAatQ)9XfmSsuk;mh^!e+~By7v*R!XtJ1N^teI}nF|``&+Dwohjm{U?^k$!lDq2# zLnNr>e2jhT7s&PgK?+-5pXDwc+m3BRb2e}OipK{vIF7FRYeCW>p^Rdm| zy7lrL5|Ysr_JkdGA@S?Zrzb%alBJ-YcNU(CB513mCD*t4b64u#N#NCb$)CSPCiirl zhHl-8FL~N>(igd0Zulu8;>$BXMwHX#;!Xa>Xf{SadsjkqNLSpQx^-o>pjeSkS)WCe zX;jfpt7H`O#UG&7(ADaE#X}}W#s>vzRA^9N^+5+h4BR=PWd0dfK{U$M~go2NfGGk9(UO(qzlN%OI|SHWk?lc6!@FembM7*bG}e&+W=Ao--=*JK)^>5 zrAR(8CnDt0z^5Q`mcSJRNS$&+lpI7N;22Ne_$JZPW#vWX^(ROkIvSWy?92 z0;eSu*ecL35LB*GL)9868$$7{n9)2%Z(2Bu{)UK{ zORptoJqos@(tXl~6EHS1<*w8YytUFpw1QoPyTf}utdVxZd628OA$0~jmm?#rnnCA* zQ~#rO`h$wQriMLNbJd~`!YaXGiEXnD*U*Ro=gc@efl`0mKKA~P1>`lBo9i9ha*dt# z)<&H^X!EIdpZ)O5(3hb<#1KyWEn~U(8}i$9wo@asrT_o|g=s@WP)S2WAaHVTW@&6? z004NLeUUv#!$2IxUsI(jEe;kDamY}eEQm_!C{-+ih0<1N)xqS_FKE(`q_{W=t_24_ z7OM^}&bm6d3WDGVh>NR}qKlOHzogJ2)`R1Iyu0_fdj|-O3RBIVDL~aMBNdN{+1#q= zdqqEn5kM3XiJ5vLy_iAQ@pTUmU+=;^tNXb>M?lG&4Dg7=b4)iZ;tk@+rloVRE_e5tjh}LEzWAC z##;B}FZAcNl{D9Bjv)r@A9egma>?W>gOOtaRj800 zKlmT~?$#{KOuI?`7|{D-+aKeAZx?9RZTtJ!wwot__Zhg-+Wu+-h<=h@Z)>3=U~n6_ zxNd9m9&ot>j6CU*AvuzlrcfvV?`QN)Ibi4(7+7M$Ter6DuR01D1~})i?ayw_dyg2SV&?iO;?xy5=UQy71pt&%P)eEq26E0Y z#?WT3j-*8HH|EDwVJu_9@C%j=0 zi_2@%J-+_K!%4{rKOAROF0pE8Y-~JuJZL%B>>qvF-*0=EcI&Y3;S`+TAG+w_k>Xtz zAo+)%<3sH9jVqt=RG7(>9$3NbChHJpsc`1p0RuJHnh?`n(8%b|40h29 aW`@!{m0t~4VzPlQXYh3Ob6Mw<&;$UG?Ocuk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/teaglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/teaglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/teaglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/teapot.rsi/icon.png b/Resources/Textures/Objects/Drinks/teapot.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7f1b8b0db598d1482d33b31185c169949dec2230 GIT binary patch literal 645 zcmV;00($+4P)_8|1(@d#W>xxRHEfI?u*!Cr^Yp8f! zbYacr9nGd3SZk<&X{P>YUyM>IkL;=Ic>>FNMSEIMmW2i&r9{fR@B*fpQk$EfkW!LP z&#|!ZfpWQoln{;T%*;%ZOpcS!pJ3ZpKznLj7d1U?XswnC-vQH1sjaQgNGZu?Gn#Fq z3WYrJxK1>xlSsTInH;Cpx+5BW-i3GK;NV2XVg^zU76{x0M@QcQ$YwJdfMreKd2K*1 zd~7Vj*;%m*uhpv5YE^vymU8)$)6?8Q0WIi2V%w-v>5`iphxz$8nr(A$Elf?l2IzwW zI8Ful$?@?w*491-?tp;;y%L?!b>qRj4!F?}_`XlQe$B;2VJIAiEJDjdJ3Ks7Qc9Xl z$?WVL=jX)-MI5I>y?zbwX!uY8fW^hP_X_25zVdy)FE0!nhDpAs{+vV1dWEcH|DzSpVHFOyMNPxot-b;H(y!F^g*__ce>-Nt1FL^2sH(NGoJiF fG7=aGj0AoG_--clM%ku&00000NkvXXu0mjfU6(6* literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/teapot.rsi/meta.json b/Resources/Textures/Objects/Drinks/teapot.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/teapot.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/tequillabottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/tequillabottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..dc08ada3226c3e059810928aaac448a9aacdfafa GIT binary patch literal 584 zcmV-O0=NB%P){i-UY9MMG=H#BP5bm z2vkTf(L!-)>S|5Q#)}o~E=uw6Jje!%_3&QU#DjBr4~Cuj?005o$5*LT=%)?zHT!=6 z;E?Krsr&bYHaQM}wZ1{=_JXgc0KQ|#vDP;_cU9}E1lr_ySIMCZ1=@EPtD#V60iaf^ zr5(pnisMtA12az^i^$0c?PeSCWvBN&(02t!qft?BY@_G$%%;;E!Kb7^-{*idz-Tlo z+_wkFWM|123hW`o9zu8u;3lp&wh8(J1pR@IFJCAi1_zLZP%1&tA7Iz9*>!B-mkI!S zF3+Z6NX1hA3XHc~7-k)SvDjJFF!BmKEj^>vYO=hx%8l$TE?v0F^4cmtjt=s{+3_AA z8BY)y(a^%fSj`4+8lTX@!zAMg>EzHw36k*y5lJXXvlj2fcfV|F8-!K zCKf|CO)e|MQf@-sG!MMXn)1)ct^3^c6q#5|89-TqrB|=_ojn66S6^}`o}g^ofB3A= z-@OO8nYzC3bWP9YIpvpMQ2V}+NGY)O{v8MHU7Lo%ImJel0{GkBH!*fzDLMQDCHM(= WA-5-dP1|<>0000LS!NEzS#lbDwn)?qL+MN6kg7(H}2pps#-6Cuegd!}L zFfhm=#rK}?-rEooG~|5`!HRe0@0{~H_k8zqsoid4ox#@HJpzaTB7oljAWVggksJmo zTut%x$^aT8Ijk0QfdCrUy`c$&5r9Z+pp;4B@a)QHsznaqEZ3P91b}KWS2NW%djliw z+D&K#P_do#QS&BU%A^iV^v&L&RC?$oMxr&c{o?)M1f0qMTx?AB;T35p3Y~>~B zh9c7+QLKNyeVN(o?q?_DyIL~wwLay4LIJ>OKk4qo=SfolV-I*+yAO_zjTg-sCt{ok z0E9(c`A`6$w3endfq)(WfH6yOC_v4j83!o|Fa?l+kaMV@z77OXv7PkAWBkV_+4TB_ p0tnM!S^SNcFan4GB7lDl@Bt$Ydm~`i3x&$&145L3>~^=4*Go2(if(5_;$ff5yu0)Aygz2%nO!D?z#x?xX!Qgj z0r(#P%#$W^&Sew}A&lSUUH;1HAOz9|uzEqTIA5l74{**&h+oaGt#b+{fJ~zVbG!y` zH6G%`D-fyLlJ3zF0EoIc^gLW8z^IpyJzs;jQNplYi}h0isJ5hAo}O~c+fA3Bb*_l* z<_7?$hzMa2Aom`{JLcW`!Ul@=L=E9uyr{huD)|?cu^*!I{dKlCw;8aPV63I$rwjl9!l~q=kvCuM^x;w_TW7OMURnT0 zi~g8254!}rSOXlqEjO~y9Gl0GrKrO>Z06+o=de0it1Ly**&|Cht;YYEKv`)cRbv~qT zy#_oZE!xuW0WE-rKY54|n5-Z()HVW)==lJepW|iEa*w}b=o%$Ea8$jt$W=T2Pa60y fSptv%Bmh4Fjrz|Lw8ERh00000NkvXXu0mjfvCa|d literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/tequillasunriseglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/tequillasunriseglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/tequillasunriseglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/thirteen_loko.rsi/icon.png b/Resources/Textures/Objects/Drinks/thirteen_loko.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..454a5b81aa811f866c2f8043cdd800a6ece22f1f GIT binary patch literal 454 zcmV;%0XhDOP)^K?W=pd7RwaZGHM5*OKZR4_o zgVh`yoEQ!oDb1o@2Q1_CzW&VN_Z+|VKHpEz^Ssad8X}Ph`HX_Ry6XTsfDQl@svOdS zG4WY*4z(Em1V9VM#HhoD+0>Auci0Am=JQBHNC9ZUn6O%m0Jx`D0kB$(G#G1%gg2ES zq-Vg<*PS)~7#ll#vZ(+t$h-xKdA9)QU)#^o<0q$_Ex5S2O475uE>!{P85kRHCNR?V zMYlKA;lE1CrjrLKYOyi+n90%Zj~}Fsl>q=Ix6c6(8G*gAjNSMxv*xP516Y}=2Oynz ztwigyQW|xD&_Rk&G=<2#?xXgKVr$OyMj>Yj zB;?$$xhHK6*L9&%HKo-xfCkV2zW~4}o4l^W%jTDHU{nsU%Z7aQq0lZH@)ZlEAfy4< zz{Fxc;hVi*x`sHE^OFTARQ9AE%+l6W12DV174uH=KL2?O004)z80(f8FGpbfo{Q=L zSPw8B+tUbW*)$t6z%>9G))VF$kZkA~$P*xmLgoTz}(JX1}MT8`+zwm z+mHbAtqJsP(SkgA_J1VrMan?C$wcrvj+kgz0)!xg@>{O-Ye+5hNy=Zv8bAYRfICVU VMwRfkwAKIs002ovPDHLkV1fZGh`0a% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/thirteen_loko_glass.rsi/meta.json b/Resources/Textures/Objects/Drinks/thirteen_loko_glass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/thirteen_loko_glass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/threemileislandglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/threemileislandglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fd44531ef19095f3db04356b97416dbdd4dbc83d GIT binary patch literal 805 zcmV+=1KRwFP)7vLP3ynsPD=9TP5Hi>!oujL(JM!q%CX)$v5$9*!`Q_EL#b5Jy<5EEJzi)^J zFVa$@&H!1oeV{l<6&++5aDLXEi)P(d1{C>$?ZL}5kOY7cFw)DbX^a2NCHSl>@>glF zUIN8|G9f;fLD}r8@{=wBnIP9N4Y*YR%F;ZziEmefPurnpTIJpysdZk`MYl={>{IICm8U7yMcQ0Dw-XgNyG!beoZZnqNBr z0Py+KM=YL}Sg+T}77NUO{YLhu&VlUgt$x78v7gcds^*%@@r+lx36FDGfiI_*Xu}{&8>T8w=-vTzy-gv z7b5=)VgN!52#pv3m77c|`1JZFKWVq~lXg2Fj>cAd0hj#BPXWFHZ#s}v;^AlvfMz4) zir;7}tcpRuhr2X&`s>h^zj6t%^qb$`YYSjAU<23uN*N&f3EF(SkHyo!eYxumkxPDQ z2H0+2ZTs-SUm5_`kVSvBS}75>j*pNWG;wfvh}rE-Nkm9~X$DlieJO%ZLtcaleDF&H zP%I*iMnhRd>-cCR!ln-R;IDis%BN3~B%AB~y*&WH^7$D6kY(9cTZ-quYku<6;nxh& zk)3mY0DtWR{7Er`=*(az{Q+K%#ze$CxzCvw&ALh!lKKO9$gC-p5cMze42as2`2!e< z=_xHWzjuFtNDO7)Rp5iK3KD;SNQ_OtCj3GD0U@eBl?TbF2D~PJfGvOY2k4SVe?asH zM1Mf#J<%T!{Q=P*pwn$o{&+YVT0m&T0E8A08qpu1+F|qu7$EusqCX(|1EN1bMMOyc j=ns&68T|p+eSg4TB78OT9xwT(00000NkvXXu0mjfO@n)0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/threemileislandglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/threemileislandglass.rsi/meta.json new file mode 100644 index 0000000000..eac9b60db8 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/threemileislandglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[1.0, 1.0, 1.0, 1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/tomatojuice.rsi/icon.png b/Resources/Textures/Objects/Drinks/tomatojuice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..90f9bedfa872ebb2d770b59b19dc607db2c62dbc GIT binary patch literal 415 zcmV;Q0bu@#P)aUVrbMbv+xhVKxb!%uEx!&44OE*FdHBxEDkt0UIa-g5!wHaw5F0luMy+#p1N?J5u$e01A#HtXQ1O;b0ux^Fr4Y z8Z9Y#g&8n~hOHaey1~hTg{>Qy;@cgc9$;jtToQoY{Z-;~N}~iQ4q+;nq~EA>(E!>_ zswBS5nPk&FhVAB5>B<0SN7Ycg+EKrIP&|Uqgwwt+Rp&=HVdlIhog>wOwC}UEy~Ei`#Qb_wbpg-TK66py9sBN zojsl&zve)929ygW?5%KC6hLSc10>hCGS9yAo>9B`x!POdtddJ_{yD&Jhv9!jCV&ZG aIKT(Il5DtOf{=j#0000KTa=5{pkzw` z`-L|f7>^(!t}n~nPwzT+luctp#EiZdR@1eaOU|*_FG~Kij^~1xvkannzy3oHr_se_sD{nrf+c^S{j=j z+<8v1{qa3$$#6X6{K8e)_REd#_bE<1IqRIe=n~!&k%!*+_D?IGW)MDk<-V&at5nlD zpE9I)rfd>zFN;4Xv~2pXZE;GI*D_el+1wJ@b#(Ho=iDd%$WPeZVrgWOz~u1#!p_O( zzQ@_k{bN~l+_2L3p`ZIy&I?hlD^2NY-lgP?Q4Cw%agND zHow>UmAI1s_#z1#5qo39sp}tId|dmUQ8ltw^Uy|(pyJKB>z998{^8Hm2IV^auj)XZ0_U~KXz2K#{?jeQ=_j8Qj&$F9Y_2Gl(Rl94JcH3<3 z#I1VGBoR`3{~k9N*CkaBhI9Ne0tF)bydNj;dX#BZ`%;MI&60(mw}!uzcd1onmZ<$8 z<-jA2f_g6TZ&aA*x7_oqC38n241L_n*n4T=bGCSChnowRb6=lZ*kc`2dh8{S%d`bP z4EGi|_T*o0*!y>8o$E=4>I+u4Hs5{0eBjk?@p=DbS4!)uo;dwg0Tfr=_ohfPyy2O% ziRZ>F-|39!x_wQ5fBW|Iw43@mKZ6db8cQ8 za;Hl|Q7}HzY|&b`tw3H@d^~sMM$e|G{c;}f`7hj+f3NcDU2j)#94k9_#YkhDbX z;lpo1-~aN@*S?;=w6}Gs{?>f&&0AZS-n_Mbv#q_J+x98tT)$lR%l-Hk7ZC6OsLSN< vKZaNP6qfRQ_|;@SYoA{QuR46bA6m%fAQ))ZKp zIB+(tC$iA z2qDmQ9hPN*Qi`go&c^{yL;-|`u&!&wag5_QFwZmgeMi@IXqpDoG{JSREG?@L)JBCJTrVA>L;V9qhdc&iP#yFTsE~&c!PAmR zl-=5)%LD}ylo(4Y6CiVOdS;@_vn-f}Ybm?=a8zd7tl(cU-1v;v^~@ zjs9Q2-ypy({qW+Yc3abH0VrhV7`T1QRaOC-UP~b}x3-pIQzue9zvGnYG*(e@gjWUJ23tYH+xjX_AQwe6x zEaT%Z>FMtxJ~YDCpe&oB6c{OkW9P&4^mhU4MJRz%8~%J3OlRK`@aq6fOnw5uN`A%T zt5Ir2W#1O(b0m4S_B@r&s8VczC2=LV(`@pryh>({BVZ zPQ@Mf#{ddVzmf7*0s$1tm4*aD1fZuTv5|;l@90ES)gTAxeXo-m0zk@J$w;-u%B4s< z@+K4kB%?idzj)?uB;vageX(+xNk)63;~HuQ&byK9c{h?BCiioQdw|&L$M)4)^*(Z_ z@c;n0zHJ>Wbx-~BOj-kg*U1~DiC|anejETqsMU(bvkX!MwhX0-s*NiTV}NIwt@KAUevw-|cGK1ExjL+2CPnXa{00R8xz=)jGiGDby2L%uU)ZS|HQpI4 zP6|W{1OQ4CvE^47M?FbBfq?IT&tv_zGfM!#K0pd!1`z|KNm-xSAwQ63AaOF*a z+@6`aG6!P^C|Q=0D1bRwcsQ1t7~o?06`x8UXtY|mP9=E&ZDk+**EE@G6|G)}*@OWW zPEQXE!&rI>j2s@m4}w6HC-qa1I)GRLfNr<@#`CT+W9Je{pl=MohpT_9>s5)(_9JK(a;nbz|dZeD_QE-~f|5JMJWG z4*k;L>3QCn>$)G~=6ih2sM&1RbX|Y>XRKDMO#pN{oiLxz$I7St^MA+JcV3;%pYexu P00000NkvXXu0mjf9PRZ0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/vodkabottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/vodkabottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/vodkabottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/vodkatonicglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/vodkatonicglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cba82f25cbca99f86331e44a8e69fc18f6439f2e GIT binary patch literal 588 zcmV-S0<-;zP)KY8k4~TMemZ#V z-FRB4ura_%_D-h*Ldjc7fTbk|LEr^^!5>?Pqf}`UU zH6d`dBIX0YDaBq4MnDlN23oBHjNxEt_7ZCUhQO400KmGPT-VKIG?17SnidypDqaBm akN5*G)4JhkiQf4D0000Ld1xgs!Z90hUPAnCa^ zZTjV|?JZ(vG#RZ%cMpI72!H?xfL{Q#r9onHU;>E2#8H)isN4ogH!3A%CT?Siq*G1*$T8|om$L)gnQaq?`VvE>&4DUvkDAl3(nCAb)a zB=w(#N&&qr!#*~Jv3^A$5dZ+A(sxqH_WxFbQwogh09=d_OYrHDQUlbL{ z4I-eN{^!uX4F$mUwgj;FSc1nqQUScQV`BEUV*p?xwQl$Vs5=_}CA$Ns*izcv;{B5V O0000`!w03Uph)+65#90w!_fQZ~Q z*vtEd;6fmR?trycnXW;VWT=v?_p2m>=^B`>39f(&{f_++oOC|&pSJ@5;Fy%(I|ATS z1tM~n>lXDs?){Vz4ltjg&fC#AeQ3@ye1LNEQd1Dl?%4oC>Ab~xSF`7{0elteeavn` uvjBYfT(Mg*z;C}pE&dq^fB*=90K5Tdi%HWZj+C|l0000C$#J?<)K77Uomg z8Qos4n$84zm%-E3&t;ucLK6V0R&kyH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/water_cup.rsi/meta.json b/Resources/Textures/Objects/Drinks/water_cup.rsi/meta.json new file mode 100644 index 0000000000..ccca6b00a1 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/water_cup.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", + "states": [ + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/waterbottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/waterbottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..43f809403377102d1d703f173e31e3666dc1125b GIT binary patch literal 406 zcmV;H0crk;P)%ropJ}2N^Z(~5bndfym!fYp2uIVxj)@K17v^e3|(&wcic3-WhYxcleQfYe>kZr||qa>B;?EyH1xN~KS)w=E6G$@~$S z=2;9oNpy|p9p^Q~Ej~-W5tKOqW;yx3 zr_ceTAwaq1WIKSJ*PbetGcb@{5>giL$bgZYX8Gn9U$7QAz7jl)q?$!m2#{kDE->H? gl2HeYI$+cR0Lz>%07*qoM6N<$f@FtsBLDyZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/watermelon.rsi/meta.json b/Resources/Textures/Objects/Drinks/watermelon.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/watermelon.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/whiskeybottle.rsi/icon.png b/Resources/Textures/Objects/Drinks/whiskeybottle.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b711e95d7efdf4413f40d1dee8445c0b86446497 GIT binary patch literal 605 zcmV-j0;2tiP)+V94BzS0`=*d%00egv_DtPgbn}2{Pc!-D8SSU39 zpeI3T50W6Xf+X8mM8UE_VoNWfY}05VRM$i88Zk)Ui%Aik(=fxE`S6{$@9p#D^Lh5u z4(x09{{VnrcHx!F<8E({3P5esVd7rO*HwVt9+ldr~xy*-~z0ki3^Nt7o^#~&V24}R+Rn$1n8>8lnv z_B!i!3_uO~2_MJthlkWJ)%R?#z5^gWYy$9L&Z4lkB~ns+5BN?fs_2^Ena~~>9lwLK z-T>Zwj~s5wMggeJSWH|SQug03;G)zbLX-6aET9p+Nwzd9xphMuY*R z6-Xq;fF1dp)#w^PCNqU$Xr3=?(g1+;+}i@M?K1FV1OVmo2XeU=EX*%-9$=|d0^|;z zwgF~R*KjAVJG=LRyS(A$vN;QY;OHeG0I44mcX`8U84rlp5>g=d=waiuaZdFD{X180 rVQq_G>=XbWKeK&Qpr-Gie;t1V*(0*$#<{0o00000NkvXXu0mjfV$2aX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/whiskeybottle.rsi/meta.json b/Resources/Textures/Objects/Drinks/whiskeybottle.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/whiskeybottle.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/whiskeycolaglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/whiskeycolaglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..05a5c1dcb15b05861eb716b201eae482006596a9 GIT binary patch literal 603 zcmV-h0;K(kP)dD4!pufL9j`q;0ab1g2h=`X_a7+LOBDX z7B(kb70xQ!ScE8~5`t_b2D?Rk72vr#vnrtw0bU( z3*-X1KrR3v@J(#4+b9dTI;l(lO`y4Mqw2|nnFN}P%aMb?)2L z%(Y#6Zp|cHvAtSw_{qa4>gv>dUUlQI8Z-(Bje{7$$5YdEg(3jpOXUjDnscDGwqvai z+kXZK0f5mRf{lcTQw0Y~`Sm0GOcaKV0|0b%;6$r*@7)K^2b*CAC@-JRr{8-@!av1^ zjKz;cyWf65oCJ2PxG4a==fPW`62_&KLub2A=m0@6u-ND+jucW5ly0IB77{G(Ki{c@ zvG;S$^a>c5-dHgKK=!PLA|RqvK;e+F=xiELX|LY*BhwzBQg+RhT|jZ6af}mEky6kp z6H>Z8%`Cjk0+lc>we}rfgNQ=VXGnTG+)}XuopWWw;R}@b&M)$>6y7ee`6ftn? zn>X+6k#K(bs@CNv*RuA;hwO=^N2E?1IB?)W^2*B&Yi`MgzY|_sc0gD$knh8TKZ>C{ zA1|4*wW@CY^@a>|i)FJKD49)oPL`0C?@K$OY9z zfW##zmBuq(dpaD+oe4|tKTUxYh$TRXH3R@EB?5p{QvYv$>D{mkXk%?i%JRob{_Qv3 z0x8seSWV3lgk}emL#j69EaO%-w;rxm2XKz-Zl|Y2(E>25Y8-%C&VS+Yxy_lAc zRx7XiE`INuxN+d%?TIK!+o219LaT290A=l2(JDSPa?iTRHc$hU z=TBzhA2lVxAF~$U;Af=m1|Lw3Jkyz87l6+7;0%xps+r|u7b;e00YTa`SgR?vr(zJ4 zN~92^A}k!aTy|-{h5-P8o?q)sM*zs0(NF|Ll=3KS@eRuBKB%T*ODZc=rt9v_9^4ss)^yqj zwu-021zs7R6aaWVd5tFvGrPAD?Pl!xji?FG1o#asLgE?hi7@~G0000r!P0;biW6#w9mtx!otNww0!!Gd4~ zmkymIS=7Ngltyq8DqN}*T0}}nbN4!&ca637zDP@!d*Qf`@6Yr6?*0DU$8x!hPKN5J zdjgOEBmfBj05h(GZ4bF&xl$>ncN$>Z3~ZP`{R?KNA~pkoc`ka-eD|~&runR&P1>Oe5=Z)n>??(p&cg<*~mKXiOsuN@_6SS4;Q}Fk95da?bzru~Vi@*`X z^L}`qj3!pdyFrqeUuLo^_ ztW{6nIy|--Rs6&J_R_;;o$c2)007WTHKMN%%{OI(%FvqoF!a{|04n88yuI2mDW;Y3 zSzjmBd&(Z8NqnIEY#3Ve{@(yutDc@cex?Qyg=RBFQoxAL7b@?-*gzld6}2_B&VjAs zWg*YYg>eCZkK+zc=cjh>All97_>Cw5NC18T&bGI$Rc%KW00000NkvXXu0mjf@ZTM^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/whiskeysodaglass2.rsi/meta.json b/Resources/Textures/Objects/Drinks/whiskeysodaglass2.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/whiskeysodaglass2.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Drinks/whiterussianglass.rsi/icon.png b/Resources/Textures/Objects/Drinks/whiterussianglass.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..399a9a2351be9039a63cae04d55d37871d6874ff GIT binary patch literal 635 zcmV->0)+jEP)da&RJ(2LLt zrJye22k;d^e8CDEyHuq~lWd!v9S?aaiftz)Sd={Qu(SIN|M~Ge^USQUZJYfxV_#SA z0CWI403CpK0%S57=eKwHR{{QDD>{=xx@rrqbasmO#QKtrIk(S`C2iX_+Xk@UN+)}A za7TbSQ^Xr{=1dV^aHW$?nCacLh0blbScy2-t>ezc`;WI3EU*1Y_Qd*D8qd&yUaY9M zD}Z(h0J0|rt|5eaUkQ%_^mkPr0tmxU(-T*2j8Ekzr>|bVIX;z}Tzvg$Qb$ue1GzJU zDQ9(=C#87vd&1mgAW{I}jdu`Nc5%9Q6@Zx+g}hD%v;Y8}RU_)ssR6#Yp8*AGEB3UK z1R!pDtjY+>%O4pIdqPK7y96bl6{Sc@U)BH+P+wxW`)hMd81DGw3G3-W?ceQj7b@nHTQ_Z0XJ?xms#GaZ zs;t+&NU>a`uwL`;#Wet4eRwAUMn*EbZba=afLc2SFPBnmrQjD+fH`zltNr!_P=n~s zgHYSWTUi|Ta2s0Djg%Gj()o$eBUaQ)TTw5axI1>ZF>Y0_F|9LGOv9SZ;CLZHl{GKH`aMMM-ELh>vd=&eK{2!gzbrKmSUa1WluQxQ?8ln8=u z#t_Rwhh;sumEgK-;4%c^e~b=}hw&|Ve7~7>`kvkly!Sru_x=5T??r6eCQOxuy8HhC za8Ww(V|TZE@0Q2^W$l>zwjDWFfX0Zou^LO|%Yp~bx=>LF1t18CEqLE?hp$-!%szgU z{bWwKj_(LKg@Uj7p<57n5F6KLE~FmcG;fsuD^LpfokR#M6hZJfHalKvVq%k)I-f zhxB74g7P?58%a^cNeJB zdsUzhAhuvRkzxLwS9X4KKpcS{%fzhn8c%$pmwZmY2Z#Vt$qiD;c=20xLaDSZ`1XB| z&7BI|XcL<|6;wu>sf;#rcyyJ_`rpz61T8Uux{Ccu^duX3GJNLV-#yp^;MLnV+D|eO eK#&SO2TlNn-jo=WJw6Kn0000K7$B#69o_UEcj` zNliTmy97+h-8DodH|9O^|3UIzLZ0WL$Wtjay#$ni67U-URhj0|e8o4_JIx)I8{q!+ zgI}B-Zv>2dovu0HI8Nc7PB--82@R(<3*nXFPpLt!V>@ zfY_hg=3sb}+SKa@vVg*;ATywQ2^e(QQ*|5U&0^#jKW^P2(yaIBEIlNmp6ums|< z-Cn4K0|2S~kc{7V6XU2F4k*3@juonr-B_;<&!1pFJo7cZq( UFGf>k!T;M1& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Drinks/wineglass.rsi/meta.json b/Resources/Textures/Objects/Drinks/wineglass.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/Drinks/wineglass.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/4no_raisins.rsi/icon.png b/Resources/Textures/Objects/Food/4no_raisins.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..733e5790c1077c774b472be8ce474950e3474ab4 GIT binary patch literal 321 zcmV-H0lxl;P)7=@ort2%?HfE%>y9zjPEyGOegwT4r;>J+v>N1`&GqvM9RL7iXT2RucKXZ6II z+N|oH0Wv@a$N(820|3~vH#C=Hn^ISvuEp#C&E?pNKQ)f&kO64Ue&nMD0uUrb5}p;}1002HY|r~PI$rn2J9DS)N4`WMj)`k_qd Ta>U3^00000NkvXXu0mjf;IxH~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/4no_raisins.rsi/meta.json b/Resources/Textures/Objects/Food/4no_raisins.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/4no_raisins.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/aesirsalad.rsi/icon.png b/Resources/Textures/Objects/Food/aesirsalad.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..37cefe211f65a57085df2617f26d179e0a5aa5b4 GIT binary patch literal 607 zcmV-l0-*hgP)5hk!D@Fc*scdr*rYfF8Dn}9m8k>42@cksJbRSM1~NtGCOxPJ z9fF5Z5fq9C-8$$H5$B>2XBTEWx*}yQi-(ZV&~D8T=_UW=@!tFMzAyhv-gB+pU89lV zZYbRma0DCyN5ByPJbOt_x+gTdxyQDzyZ%|A5-5fHkmv)z=krI%7P-G&BO3R{7P-ae-sUjlCvp8gKX;|Y-bXio;oyy|3sc8v1u7d-tPeC;|7 zfU2rwe#&fR(lte@1d{Fv%>W+sJD&?=HTHBIS30PW>9e#{K%5&+&7mf|s* z<0nnH_U;0 z=JS#6C|Ay%=h5I|eF1=(Z=>4T%a_dlhc~Zl=Is`d?kGZAJNflh9zUGs;(=RLf5MIe zl@eM$g-ZyT<3d|I0QvP*6Hqx`8N0#j3K$ZBgA$#g7FC_BP!2^g`L tQ_u)Ir=e|u{}m0tj2r<+z!7M;z+XN51aqr+F%JL$002ovPDHLkV1fca6UP7m literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/aesirsalad.rsi/meta.json b/Resources/Textures/Objects/Food/aesirsalad.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/aesirsalad.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/amanita_pie.rsi/icon.png b/Resources/Textures/Objects/Food/amanita_pie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..20f2183be79a343346398bdb14ba01be19294b9a GIT binary patch literal 557 zcmV+|0@D47P)Nkl4+7Rt6Fl|zGSjt< zlN<8u0(oHDbphW8JP%{`xv#7`4&eI;D9sj0kTRQ*4qafBU z#h5WXzr4)t#KL#rslS)4H5!ly;apX?>No%}1BdS`3Bozrt~>WJ%@vSv2_>9=0X?#z7MvM@-~nR{D32T`1WHtUGu z1ReX@xD1USqVO?+*W1KZcc9M6XR1SGi*;Z=PscVkz$|dIJ0!0-%xcFgpv^jlT?RI7 zw`^?@5CEb$LHL-cJZAiYPqCg{2bwCC5JE0p7RDm6u^&FC*<>3>KnflA;5qkuY|(s_9G00000NkvXXu0mjfu^;le literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/amanita_pie.rsi/meta.json b/Resources/Textures/Objects/Food/amanita_pie.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/amanita_pie.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/amanitajelly.rsi/icon.png b/Resources/Textures/Objects/Food/amanitajelly.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..330f3b6375300a966c7819574abec15ddf307843 GIT binary patch literal 1681 zcmZ{lYd8}M9LBdM%C#axjBfPAX)=d4G|9D^+mlOWwnQ?wTxu?}t(>Ed9*q0Js4LMu7eEypbpcRA|ps+qs1mpXb+ZWF4!h|&6E z@E1hMM~FE~9B0?SI=(!ViV1$0A)8RHPpnTUd9(~9Uo2?w%+5dX3BWvyaAs71RQ?U_ zrP!`H{vRd0=H?oR(KJmceLj8&FLf$_yiw;|v{lc{+@0s8ix#X1H#Ugu4f!!0NI1jl z{cGZ%S6&ghWA;f&!$vdi#I9Z8%}qSqz>!Z?w23D#pdCY$?D7%c&T0?8*CA{|p(3^A zI>+Y#J*vvvt??QK7kRHl@xZdZWu#zO+r-E|UfAq}aB}KxEzJuv9cEkgI=wNK@kMrOIg z41U|VB>1_%R0?x6-v6jyZx~ett9WlnI0@YnXT=Q}tu|Rx%5MM|8LT80I16K^VhCo{ zUrbjX0i?@QqGE@8!o}K2Ow1GQBLN81W#i|EH7T=9rcxn#A+1?Mqk%5;0r0J**V`^$ zY_}F)s+*eH0fXJOY(Gh3KKE;tbXnVK9yHa64m_)oj2~@?yK0_?i6~gZOYRMhn*hx8 zj7U^P!P0FjZuoWUM5Mf@jpF^{LbkDfkBIs z@#@j$my~laU)E6%b6o=T9$IMt0{nX7M#vxDks}j!i-aWEMuq-hbsFfb4up~X<7E7` z?~jLnx#hnpr;!duT?jVKIIoLLmzlSgTPJ<%fk`vy7~s3Tzg9#XXElBvD%B6*3ATIU z+vasrf|f=+n>$zjD0(aE2|w(YxbW33h38 zjAf!NPPYBi5py^6w4s5sj%qXl_%z?bYgU}1N}Lf2Qf#aN9JAIip>5sO(+{*J;i-FS zCc(Aj_dz=09&@6srY3sL(T^q$?=(R$NO!*XwT!$t{F?RQweq3bA)oNZ)-O~9#a{4!0)`B zf0SzNwzp4Z%a{M^xIBL{qz9@ryZQIxt(a~qFXfNb{6|V%AK7NjeW;2)&dRv%gmSD0 z^F1O2elSpZtO|var~j@Pi9u!J_X(vx$RUnmM?wqk;2DlDT+&*MkwSZ2PS-rz%|~3f zmp)5$e!9P)F%*OcwVA7V*0z0Sn{o2AcUdg}{s#)+ZG{ce*%~vawquUF4&V@qP0fm+ zGLVWaf=I>^V--N?)FxqIeNhGq9o$efE%TD*YoZ?9oK+VUnl6`$`4|YnBj9V?m@_Le zVtnnDE@?r00pZ{P{34N5&M#U3?tPm$q^AzFwzG4mp^*%6R@1!N=hg1f6+yj2@jm-R zH$EFly70uJOw#!iz;R+^EWE=p)5$y~NBPM5Iol`TE$!@u1%je!B9u&E6+iZ9i9Dv- zD3|-qgavh>w|lP->MnDX-HOSL8Mla62oY~-pV852%8EwLcP*^|9<-!Pnlts-7TFHg zoKp+rZLSSv>$-JMGdsoisw~+S3H$y>7yGTwuD6B%ahj*Rts){-El3*N;p!i^UJby@ L&D*uk1$+A+VHiqm literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/amanitajelly.rsi/meta.json b/Resources/Textures/Objects/Food/amanitajelly.rsi/meta.json new file mode 100644 index 0000000000..37940c42b9 --- /dev/null +++ b/Resources/Textures/Objects/Food/amanitajelly.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[50.0, 1.0, 1.0, 1.0, 1.0, 10.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/icon.png b/Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a7e4c6da9358f82b7ad25b0fd95f4f8639d522fd GIT binary patch literal 598 zcmV-c0;&CpP)kYW3sqDUS7+$QdSY9Af_dns*MAe!tlrRi~P$SB zV81C$FT?|s@0$RGPe3pZEe&D{9{@;R5M_aBadbMhn9*=zRUiIW@wk zSHe6P7v`09lXPB~?`?~*m?F$7~c`2zVuKU{a z4K5!o^*srF0lXl*u7?#oHVMG~xAs8ufdJsH1pucLa$m!49bTznMQI?wFra?=lPU-! kmg2unK8nWvG4cU^1Iy~;`Q8+Fpa1{>07*qoM6N<$f`~v9fdBvi literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/meta.json b/Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/ambrosiavulgariscrushed.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/apple_cake_slice.rsi/icon.png b/Resources/Textures/Objects/Food/apple_cake_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8caf9be48ac7a557da28fce026c38bf473a69c21 GIT binary patch literal 632 zcmV-;0*C#HP)Dwi0aZk7YCy!LAdHh*WfI(2G|EbpwwM+(q%`#k=DE0*^9f_Tpq92+G{9 zn}{;En~as{y7Z#0OmHMyY}dp?sBU#jS`dbkF9Z_a=Y77P_u+Z+21*Y~?4^Qx>h1&h z06u^Z@V5by7w_Ax?g@DPiZ|NM+9^eW&NO^0u$DZE863ube+K~R?i1+4dFopD{aQX< z3b^I>tiXrwX;^;id~~LXZdOTF9wD7PL?Amt>E4iIxW%*%<7Ey_RsbN?RfGPkJI1WF zcM!ca0)0?O!B-uW9w^)10In6V1}z&v>^X%V=|`KMfcf!lG1~M58y|}luE3lK=`K)K zK@0X$8>rd!94!M_gO+U=2G3@`z`lb3q!b0c+Q#I>9L$eXTKSAsUPgPB`(?}m{J3_T zqMT!WeI3IvaD(vdf$WVbUcY=yB-w#pt`dq>e}S=doyf5)dbx@igNOxb4On$zwQMgdN5+VUKQ%@&}Bs-jdEhnBGnxQD?h{xjq1OiU)Ns@#h2&k&MD}d`1V1ePire{B*0JQ=iGSn SOj0cX0000 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/apple_cake_slice.rsi/meta.json b/Resources/Textures/Objects/Food/apple_cake_slice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/apple_cake_slice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/apple_pie.rsi/icon.png b/Resources/Textures/Objects/Food/apple_pie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b384e3d45f65a5a1b235bce5505751054f2a572d GIT binary patch literal 593 zcmV-X0{ z&?C^{EtkQ;L4@30V+U&qO1RS3!B*m+)wW=V`%Ulhd++=Gyf6HCvFq2@EVAw`)I9=- z03v`0;C}#E`qPVHM(WRBzK!t&Mz=%0-LH?L#UTEsT5; ze`Q;T8L8*di_Q8O{Sr3Lnji#DKSZuBkNQqO1VA=iJj!aN|-qlx(vnH1x zJHv(o5IE1v$ePRAWp|jwzQF01kqsAsM7jWP6-T>ura?>u@O^)@_AHb2N4Lnv@P$r4 z92&j(c|a&oip?i!det4)PTq6VY2#TY=f`SHYi58T2&le#O!Ksfkx!Di{~gaVDHaFF zhD)!ygLh?uQaB&VI2+|LVepw{5MI0-#hX5s%05eV=OV9nW5ji=H1VPV^qR zTn^v&N3Rw_a8NjyI1w|A;aw1bY&HupGE1dWbi3WLsDEcX7r-=_yEUunUjh8Y-=)Gjtl(~B4AprC7a8QjUHwz zarpq{!)1iC^{~NkI@eqe%9b&7w+otxrBvfrT@gb3ae=S@-Nw`_2FvB{_y2P~uXDcV zoE@!eXBW4#CfwHa2p|H803v`0V7vk9MZ2inp!g=$$$tt^#$-`>!{V>6qh`Z8rUZLw z?5-RYLLXD`TDxFfB5>pYO$QseKY1pJ(RSKT`B|A)Ky2DXF{^{xxC4}-3nE->{+7nt zkC>M-o1}zzTH8*MonHv4=`aA_A8o=-#y?|*ZJ2wk5ujUYfiiSao+07acB)@^mcWT) zES{TA%jut(wPYFDo450`eh;SCu9^Gnn%keD0Vq#Uerc#<+w)K0O#DKce=iTUXH)=X z=%Nf=th23D8ml?9<9!NBUc%Sv$L4ggx?&4M3CWmVyXI(04y{n-O%%1XLpEh+5py{} z@pCIFD=lK$z0T0wTDTvPGIXKagbVHLc(;O?GZJ}x`IG#3<{Yu^WTr2Cl#{*=Tqn{- zY^%y25<1UO^=26ybCL-_MNHRWXx_>J5`gZ7iHRPEkNeqj-*9s>q-%>7eB z<8BD}^qU-+H+wqsvodM%`x($CbKjhWSTQd2uM$QEuel=hU*gNR$~k@fIIkBMVY3Nu zZ~1_`XQl9R)h^IuF!ylHjkxg+q#u>957Z-Zu`D&#f*ytGofMiN-eVU{2hRHVu)GYp z*hOh^5pvn0;+^-1ijU`&ZPhT%4Z}9f8ryZRG=8?9%mo=N z%F3j(xrNHAog~e9n3ApAA)XD4oRV$e69*;6LE#AUGK; zf;K5Gkv5QM5=|~hAT+t&(93f;a)~xgVkHzx-g589@7=x6`@Y}1JH^;CI7^#2)9hn_ zF~AsL3~+7$qVa&}$(WqxUgfmk0zDa%T%icS;?+4)yJ-MkKmDnU6rf#cu2AIDhYG<3 zC*LK{1P!YNz}sh)p&|aM1$r_j??3L4D-HTo*>;JII-@qp~_WjLJnqH2np z{J^xh;!~ON!@c{fEP0%JJQtmHIWJr|5(XX46BUTY1G2srCRZr(En9Ibe0Upn%AJY< zmRGz?PF?2c@PJaO2{=l%{dX^n6ID0{peJLJ+D+52TG*zbY6^=jVJ@;tYBx>2W&=)@ zf5&xSLm@Ban(6wl9_M;O9BaYm-8V|TX0yH)2EaCj?eDO^mvLi4A+MW!eJ$)H%M0P4 z6Aw@-HUIF3R-kPgiCF4r+fY7z8lO#NzdINg!DTLpk}UI;EIeGg*a zDR}g9Q4UOthShQ(W}8CQz@7j0Ix-Jgs{_#uR5jqsR_}8#a11xM{8CYSS6R-BJ9h28 zVXE%7$$py~iCJk_3bxr~$pckQrCzgLh;~)Cp7`aY3J2NHui}lwtki3E-;o+Az^Lqe h{11!)#sL3gzX7n@Jkwf&Q!M}h002ovPDHLkV1fiKE|&lR literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/badrecipe.rsi/meta.json b/Resources/Textures/Objects/Food/badrecipe.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/badrecipe.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/baguette.rsi/icon.png b/Resources/Textures/Objects/Food/baguette.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..10aa6ada6f1990ce6f806b5ee707fff3b1b7c4fb GIT binary patch literal 1036 zcmV+n1oQieP)H9KiAKT`u>KrAgW}?b>Fv+3W_2D^myRL>X){5jK!9ozA^;N?$0x@~tm?A^6T$ z%Geuq;2ZIcpokz2#GzwU=^k3wHEEKzm&Z$TxmEcBemrM!`n111mwD$ZR1Dw?7Vl=8Cnl(Ch1*f_~A(y36F4OD!D4{S$WB{QV%r4|m zB17!h^$aQNE$N?oZu!r$jhtJh>)2Ea%S3b;yJkTTe1g=>3Zb}1J80mC z;v7hQAz@v=@0QCmXG(r(%;F63}K3TCZKrc`I& zkyqKHy)WHp?=1o5)eprcQ70Vm={LgYx=uI}!*-e=`;@9CUf03zNmObbemQ@cP<$&d z?KpMA@Y>w;1WSpJh2AL>vrSs16&4FCTy2Bh>@bqth88l=Rhgk#7GiFQwT)|n9rvfo}A+7=%=?F z|4+b$`nzH%r&Cx>leUWVTpO#f%vgMou%>_yJ+DVl3GwIRDt#kkR4Zks_n*D3@O6OG zGY3VCCPAmg%yN!cBFg0CHriScL(}OtUGk+mwMGRs5~o^~DEUDW$%mQVe)5ju*8rc* z92L}yc(O;U(PGPZimlrx2BT(?s$kduV|H=uXb1&a@96<5Qkeki39M+k7 zG)1veWOja@pek`Sn_)ba#Ijx7o=&0W@#5iQ>lO!)PCPOt3g!aiqbgy;CmQQRH8ec0 zjjV#NO0;M24M z&etmMe--(;`!*5GSb%2-*WKmCJOEPm0Qh#0XS(M8;XT*Ykg|uS6##g%T^|b)3-ECB zn!BqkOF&VV1j)lrlUFMOd=^1||= z*`3M_p)OtYKyi>NxGhY%sShtxiX1x=LP~;4l zbEf<0^}V3LY%$C7Vm_GuD3y&q&rK2R**_d`>&|104P)dC!~)c6HJWRUBVB}n{OfUr zJ8rBtu`G-FcKu`kK77~gx(AymlnzELRY@IK=mchBd&-^+2La<9T5OAfSq z00;m9AOHk_0I(MT;s04=)$VGMNFb~f`bP~JkJFgT0njO?#I6EHqKjHi9sy$*qEYI( zQ-9}@1~ zE~2yyQsOMVBs_Nxe*c1)iGH_2)wt$~@Qh%mx%uQ7$xq)f3Jb^sW9YA&;5e9f@&MFl zPlD?r4~^rNKSE?5gd&K{VeCfUGY;Q>An|q$wp*wdPodq$UH^bvUWaB4dG-Qke!dqm zHH~^x0;M39gvgNR{=N~UkF9F9TOdQIrRT`$!8JyxGtsB>S*2Qn# zCN!I)sxEm(;0xF(yZu0mVGH)hx&zGyYGoOb9z~4U2*bqv@)Axr!L(DCia3Ot#b`DI(G10@gHx$!jc{%bwToB~DQ?xFAT=pgMM}4V zICUr#E}#&NgBA*gpp^y!;p#;#ZHaddCMTC%(kryY;lAbL9^di%z3<(7_k{A3GTjWZ zt8`bu6>tSy0aw5k_#Xs3P7AZ*jNzp2ynahK6oF>oaOysqrV$JVTe2icX5G@4BuNyC8@63*y9BY9v*?P-TExrgPdkY55F^?S z7mn#nja{WMGy%Y=T?Gx6HA# z@&i+3E#l>kA7oDtx}vff_3?eLW=iUc%KJJLAeKlXk6z)$jStQQ0G@xDFh)|>&F9?e zif#MaMJ$md(AQ73Qetub8Dl4=+wKHg0r}5o6tamlDJKx;WTBaX_ga5O$9$EXq^r-(Jy3 zm_{PkIed1EYI26h_d=+l4ctD7QavDQO13YgC!nTeMRRiww@*S1Z4i{VXe4q} z*5`5fBScdxU5r0MWqsb*|NLf=cshyOC(+!TqaUItprC00#M4PW#cnaAJTtt*17Wl zxP1~ouEzPk-0Vz7ZUd0dw2ZFzCSGHeWe)Bb)jXDg0EZC(-s@hhviuw7prqX*x)SE1 zqEOH@qw9X*M*{u?0dS4E0E{rF(@D8p{$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/berryclafoutis.rsi/meta.json b/Resources/Textures/Objects/Food/berryclafoutis.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/berryclafoutis.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/bigbiteburger.rsi/icon.png b/Resources/Textures/Objects/Food/bigbiteburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a1cf1cdb4a246666fd06027e155ce4572bdd5a0d GIT binary patch literal 572 zcmV-C0>k}@P)5fK$9;!+#O&73$HS&^CIT6uL95qC2Y$haaA5uA%8 zs*B?kCx8YzZP~Qxq$0oCc`W;XJodd^ZGE$5pZc;__XEIZ0QmZrm%K^8cp3{QYwg1U zYU8W(cHFVyta`RBh^AVG-lShVXB;K%*!SPtK`8A3Z_+PD=Ek&EZQhJsoj?DJ-UZN9 z^NVZaW-N}jTd#8u7{PIIF9c_)gvR2h&c?WDdYi(%5M;Xo0C02Y>4Mu-Zh}utYxQ)2 zo5P=70bC9x9uOoJAn@%~X?oK(O`P&skZk6tsIv-;;J6@`M!Wbz;#+Rm|qoy z-T@1E7m~55)(bi_FgDlPb=of$iNv+VqsdDOrv=u`Vr;6|EB1jPvB>8J;k00pNWy8m z&otxK?1(g$YVIhOp&d!QsLW`HL9op5F2Fx2$H5YO46NA^b|i7xVHpDa%OyQs0O0-5 zfN~r-0z1-3909CIV-2^OuPWtMJQR{kuf1@cYCDqryc0yOWGK|lVawBSWR@-XCB;$M z6}LGJl>usqdOT|E@@6aku=~JkFmJsLy$fJh+WV#S0B`^}0Q?7)64!BP@ICne0000< KMNUMnLSTZiMFr6S literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/bigbiteburger.rsi/meta.json b/Resources/Textures/Objects/Food/bigbiteburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/bigbiteburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/birthday_cake_slice.rsi/icon.png b/Resources/Textures/Objects/Food/birthday_cake_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..50a231676a9caf5077c0eea4c387c68a843e2059 GIT binary patch literal 442 zcmV;r0Y(0aP)o1|bFD z(kX>+Sr{<}Fb3Okur!P>5Yc!U=cp%A_P)U2dopZV=qm40uo$a*#JP-b;=hf z!%oWhzK>~|_`c7jWs@)r8GioA@o;CNNJhZZIAcRoQN}v!TB?7R1<7R67sVg8?0pR`U z0_}D?(=Q>WX{Kf=C6g=S`#w<=akTFN*;g=e7r1Vhnzg{y(l>hUCOvl($8l7@<2cy1 zjbRw6x^3Gyj-zT@FI~QTc*W7aM}2h-*X?FlQ+L5*|9*Vy?j3dg_RZ^w_svRub&XvY|PH?R;0n1UOV(vsB1MH`KDp>J%- z=KZ@_%=^Fj-@F-<&QjV`r&V_aPyhu`00jWL=WLF`Y1LeZ(UXzZFfN}_Z5(VSEQ%Gr z^;i@ul71|P5Vs%-r`7HI=)fGnw;qq555H15CQ%D&bAaK+fS`BH=A&e3asZOAwWORJ zpsD#={2hI{Z-I+WZb9?(_g8m}yEnX++0NXzp3@x=C*WI;=j??`W67(6{O9r|$jzMq z>ZtRoAnC_|+xXQIjp1L+{aFD2q1K;b1yBG5P=M9}wtE<438a0x$iEP)izqtH2R)^c0A`SrWGZwJ|sYCp_CioMStKCj37{r-Nxd<`piSJ=-I z_BFi>Cp8Q&uK@_u1n#};%>zo*jMk34e$dz{HUQY4kqqk`HB>}Pso5xLSXD5OF zd&J|Ld|3^lX)z2HDMI~2WV94Zz90|BpA$^RaY%AWfPyQ?bY*m2fYek+cytn}sUGK< zlf=eeu{be7gX;k4#0E>gAS17*0B}e$3&|)Qb|=vjQQc~_B8&)mSCMxDnXZhUNF-Pe zg#d_o{ixvxvjf8bc=~#HH#W|lr;k|LSj&ZfR=?9>cVfHVjUWgl5{d0bb_>W><6tkJ z-h4o6sw3w0WAnHPk52OV{8c6+3$$5kbKyWP+~IH_2*o#Ca0Ol8OQ-na z^#R+jS~8u^ojrc*GOodkxLhtwCKIB#-It;$NRmV#5XcKK6#6OkAM)!alL@!mjjF1- zi;~wKP-U(rxcW6W?riAJV87pwrfIlm+<70uf`H#ac2+8t!e})9vg=ZUvsLs<2;?rB z)~5CBhdw2hLx_6SaVQa`d^DL@L4 z0;B-I%f}2VHFU=x``H+3&ki7sx69MVk#xg)!249c#EC{ph{h_G*)Bhy?FD5_Q0;CJ8LHFwE$)EcZG?uYPx4Z-)b{T z3Sc8Q)OIc1`E>)uB_-iAmFinkmdvWnLZ%(bG!$U*sOoft0H8+I8H+90cXRf^SDFKxH52M9S(*cz=D?;-mIZHo z@#;4}A_4>+Llpp^W*8to&D6dA{EhMcmV5p4=Fa@z?O*zNgHfd$dK~Ws0FV%^9IWTu z#`|z>xJ7;-WE-UXJ@NiR%owWqDCQ3W1c9g!enVAJ z%_9N$A)+d=CvYD`oK+?Q5CoD0L~MYhHTQqQ6yQIvbJk*FD)zeo00000x$iEP)izqtH2R)^c0A`SrWGZwJ|sYCp_CioMStKCj37{r-Nxd<`piSJ=-I z_BFi>Cp8Q&uK@_u1n#};%>zo*jMk34e$dz{HUQY4kqqk`HB>}Pso5xLSXD5OF zd&J|Ld|3^lX)z2HDMI~2WV94Zz90|BpA$^RaY%AWfPyQ?bY*m2fYek+cytn}sUGK< zlf=eeu{be7gX;k4#0E>gAS17*0B}e$3&|)Qb|=vjQQc~_B8&)mSCMxDnXZhUNF-Pe zg#d_o{ixvxvjf8bc=~#HH#W|lr;k|LSj&ZfR=?9>cVfHVjUWgl5{d0bb_>W><6tkJ z-h4o6sw3w0WAnHPk52OV{8c6+3$$5kbKyWP+~IH_2*o#Ca0Ol8OQ-na z^#R+jS~8u^ojrc*GOodkxLhtwCKIB#-It;$NRmV#5XcKK6#6OkAM)!alL@!mjjF1- zi;~wKP-U(rxcW6W?riAJV87pwrfIlm+<70uf`H#ac2+8t!e})9vg=ZUvsLs<2;?rB z)~5CBhAknM6ubrsJ%vyt5{i+< z1Uys`l}2e?3ko)@uEZY9uKBa8+fqmmJC}K1cHa3tvorg$j+*Z?-b{{Z0pn?o0#*OS7R6Mdh07DwA}rgDxy$>p%}Pk2r6X@+zy$EhL!kO&KU zTvzTfUW-#0KY)XrC76W(UkjN@Iyha6ejfm(?+X5{U$Zzz~Q6JLXf!t zAKyKmynG(gg|8);0!S6 zH0hr&(LZ0(#Q~N*B7;tofipm;`4G|X!};xm{e#*(3F9{)MWhM9n`{}a1tQQbDgX?g zG^d{CwR3XbGxaE}2nrweTCA>zsFqtu5oxl~+_=>S(-v%JOYH6>IBY|8ugvOth;)$Y z^ykehN`wVI9rxHT&%|H6FVJW-4C76QP>M*CSS-fwPC`!v=)!i)b{;Xf)#UE0akwu9>eE^3(LP6Zzd;#h3tTeSI zrLDx_8m{2bB(%+v55kfAj(op6xQ__u$sx_irCL1$WPl6+XmJ(~v4Z7yLtlKvcf>{k z)1ei3MOE<704=Zb9}8F#$V$L;Xa%_nls{qK1@8>(qRbh(#2g&6`MEh%n#4t;PdHx&?u2pc@5t11OxR`H>A~ z55|7HqVWJ)31M9!PA?I)5&-Xc`GkmC8zws&0=QOR{JuP+)vw84G#S})es2QKOs%sY z!L7!>1tRMIz<%2bMz$>4^`Yazt*P?mn`FHpawGa~I6^d_3^ajG%LAs=7>1uzaLM8zWT=7!+qt9E#i_GHq1`eG`UBjv`vW34Wpi{c9lEsGztBP`=n`;n zaS`M?v}Y4*;w4c8@m-F)<#~87`8dt*`y4YDN2Q+y&H^VTV2vzsGy$h=h+3^i_pO^) zBC~+gHiQXa+nA=AxQR>xYd9b!k~WcAz!@4sZvACETW~?L}Z4yx#cR2PLY&6VU1Vv2XxQONT!A&R1h$R0ac&GI%oi)_jS8h=J~KR0z-_vk=Xu0QOlQl? z@JIoG-fd4CkH@hRS>dq)5Zy!-e!ljM@SOtizlrsb*#lfj0K!eEPB_&lO+p!KWQkp~ k{h$Je$mzU_&jM-l4eG4aYo>B8H2?qr07*qoM6N<$f`)m)-2eap literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/candy.rsi/meta.json b/Resources/Textures/Objects/Food/candy.rsi/meta.json new file mode 100644 index 0000000000..e76eafc94d --- /dev/null +++ b/Resources/Textures/Objects/Food/candy.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", + "states": [ + { + "name": "icon", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/candy_corn.rsi/icon.png b/Resources/Textures/Objects/Food/candy_corn.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ef45f06fa8d6fd2150bfb5fa0bdb3f69608c8aba GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ&7LlfAr*7pUbE$6QWRi)VBU7A ztn9sFoRjyt$Bs59=Q+KxWr~iTl<;uUj^0f_j1Qh!&C&RQSAeNCxgjNN(Q0i6My`Mc zrdg~L7Q6IK;%JajO=B~DEX=XFgh{@vfwh45fp>qQ@gCNU*L)?bK|v zX+idYm-9E=zPH`pjXznZp?w?svC9so3?F4Rn4Y{UPWtkhu}ms>VygQGm96dpe*~`T kebCCi!^o=fU_GPx!sCXWhcy#|fzD^}boFyt=akR{0DYZWH2?qr literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/candy_corn.rsi/meta.json b/Resources/Textures/Objects/Food/candy_corn.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/candy_corn.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/carrotcake_slice.rsi/icon.png b/Resources/Textures/Objects/Food/carrotcake_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4a82d550d3df56c2dd85d47b03b055f4eea5dee7 GIT binary patch literal 639 zcmV-_0)YLAP)8^k);0m|` zfbuto!l`v;twnuBN(Yx7ZSPfpEI+E@hOVE?)2zX&*&9yr}AS_{tJ8vw>;H2g;< zRquJK2X$l&!TjEFA*ppn3?Yl=W{VsB3kHConx5h1~*$OcuFtzXcyr zN7-3kApd?HO9$`SHar@IQnKWP!(l{P^c3kSP}k~CrBcB(VLG0GlHL$`c9&c(N9@{F z-ep!WKY4m^H~a+EJP9jl)^!#XQSj^wc*eJLmNIZ zF@X^MyZpow1cO0Bp%6dkv+(6cL!zV;5t9T)_ZabmUunR{$HBS2#2G0OLZB!L<#HJ* z<%t446%E5cRaK;vghC;ln**Y=U))GlOYz1;q&=Wltx}sN>o+F zFpQo8Cw4(Tk#~GPAMtn`+qN+bgQN6Kl9yu?i#hb&_H#F(o#1>vPpwuXuE%?R!oF>I zTm)cyagmFM58;-M*X#YG)`NhD5;!iRC`wnx&9H5IU~n^rngzpLJZPNyG;{@A0aw5k Z_zke{?rVR1u@e9Q002ovPDHLkV1kjQAL#%9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/carrotcake_slice.rsi/meta.json b/Resources/Textures/Objects/Food/carrotcake_slice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/carrotcake_slice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/carrotfries.rsi/icon.png b/Resources/Textures/Objects/Food/carrotfries.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..abcfc906b61a947f9e8dde1d1237ca2cca5a8b4b GIT binary patch literal 587 zcmV-R0<`^!P)73?$_1O`ac6aEev92!$Lre!Z?QN>V~&x^vopS zO9P0`<$~nu2AB;Cxgfa$MwqXqK`ux>oMWhNt!hneED&IH-1(+Wt!g2EOYvl$< zvVyeP!)#dS1{5nA(q@l-S-~+>SFB&0NRVP-KO~N!y2+fz&j&gH2QTkatZ07SY*-|7 z8fIg>%g=}KY_G@dg*)`iiobp<9Sjo)AQvQecSB({)$A%} zDek5I;QX(>W+_hc?fIpRF9k3vF%d%A_P)iOB8<0Hrc31tJZg<}GnlIGJ1W z%IBbN6fxfp|-9JRPGAz}JH=!|FgP01ty>#Glx?>{1@C(xo%rsgkm z&@i#h!xY+%gZ=#*O3U)&(q9qA^aKfg2HSCHZN0)ao7j#6fEJCSg;g$GnJ1^iuCOQ~&?~07*qo IM6N<$f(zCVN&o-= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/chawanmushi.rsi/meta.json b/Resources/Textures/Objects/Food/chawanmushi.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/chawanmushi.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cheeseburger.rsi/icon.png b/Resources/Textures/Objects/Food/cheeseburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8a249699c5c616af7d48f7fe3d02c0db24626306 GIT binary patch literal 456 zcmV;(0XP1MP)%SL&x?B_kzv~~fr0MuW>tm!C(wXyflAM`cJ zyFeux^H&kxq@db>UzU9(F5c+?qzH7I!U$psp~MG~y!^5hPK)yvBLk2k;Cg0q(E#>O zf#7ofT;5{n42#(U0KkcGz*~<1fc1lLYW(S3dfgco(dWJF0s6d$J_mLW9bo8Sv$QcW ze*ZA~7Oob6AkG*-)q&#~-d*jKFlxvgQ3*>iaw(oDM%FkPnI+q_a1hhWvG!S@Akvl= y2K3GXEdT{EYfSef{1ZUdw(uX493ThC0X_lzq@8T}cefP)0000dpW(@gr4pGgt2nX|m-%=x}E7w)~W&TfZQMtr68NFWl31R?=o z?YbYvw@+2C-I|$CZAiM~j98-^ruU+P+TeLG zY3hzadc(xbKO%kC3~DaJ^Cc?;I;4P=Y4EdlM6ccAX39i)$_FZc^7G)#y&U@tKpT2h( znmLAM&KLRdg3r4zuYw_f|7pIZnl0lv4vyn6Ph#N~+_2w~Y)JrLWNU}@)ac?qpMl5l zZ+#10*B7;3ETCx`x~@~b^^D~4ez0z38k3?ku&US`)S5`11n|LNfTn5J6Od9OgupNi zUm{!P%bQoh-#9<2VHgM@kW$VRh|PPF)gRVXB9Wj_DB!v-QcC`Qc#2gt z7;f#5Jl>xRuGi~~Mk5Nf!ps9{uD~=AfUh54BQ{GEi^b{nA;3!sTow^ROwGHl8yY;0 qrS5`d8i$RQ--eMuBoGNi0{;Nax#HBeMxez200003`N8tD-*L|V{xb&rCAOGW4^PTl;&oW((092~m2h!y;SqE1zuQlydA7VM>_ zE$5Kt(h`+R4b%PyV|yV0I^ACnizYm`e2(gttK;=JZ>AeJ9}%oYd#C9`O?xy*aVq9Bm1`1B3+v3A^?Aa{|NR zivy1(008T&r#y*B0>px|pNR#JEdYe=xNZ6a7$gw)=0Pcw{+O`F4!f^)P<1Fu#mYqR jKM5pNQ~w-G0V(hW%kRUA9%Nlz00000NkvXXu0mjfBI3d_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/cheesewedge.rsi/meta.json b/Resources/Textures/Objects/Food/cheesewedge.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/cheesewedge.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cheesie_honkers.rsi/icon.png b/Resources/Textures/Objects/Food/cheesie_honkers.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..053e762db792b1fcfe3b676b633454ca87b6c7a1 GIT binary patch literal 286 zcmV+(0pb3MP){i_aK+o1uMLSj-RM7kSDih-h%L)&8l>A@WI2h<*W>cN9Qq9uQ#lpcEOrBFQzCWrLU z0VSoN0VRQg!3|_138`YEurNJLc3o*UYD*De-_y)|JNrK0x8KgLX1%kxP2Iay_W&RO z2mk_r0N~C6=vhPR%g?26d}T-KS;IH}&j6imOT!d+A)K+kvLoph)ipQJ#JHfIH6*D# zOuwP?{;Ae4^rarpW7PzP2O?fDBwe-sv(T4wvrX7px)#h>fX=q1=@=4<=*vhQuzLby zp@j8iiRt9%Ns3*#n)mb z3DuZ>ng12QI1Ms}oZPpxK}H?LR~b7Rdl213j^TBU9o?<3VE_;S{15#GSp)mkt`TY*D literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/cheesyfries.rsi/meta.json b/Resources/Textures/Objects/Food/cheesyfries.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/cheesyfries.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cherrypie.rsi/icon.png b/Resources/Textures/Objects/Food/cherrypie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c4a8a80cd5441d56cd964f405f6713883bc40818 GIT binary patch literal 635 zcmV->0)+jEP)ipU7AQp7)cNv zEIdW%K*NEGsIz7Le{)Qy_8*Z<{~ZRy4y~<%UHR&BvQmGOQI;TD`pK8DiJkiKo@e!mD}Q9ZhUZ)Uoh>kKn-w;Y8T@ zD+j`fun{~M!BuDF(Atha_=&Gc8@d#DR1f=mn^ZU7hV(e8r8MpfS4qZRbEdf)fZfw~ z&}Vx7=)`Xw&@>Hzrn7d^^YbjPRO9pwGxuZ;a@!pH@tH{f5CAoeS)%uz=EnoPee?o- zrUw99N-NYV%YojPy@n8ie#;0sw}SU%8%`ks^1I-_g}(ZXWWqt)#U_$#8#rqZaR#0j zI=7`XB1RulN=9#tmgj(~sz@oB6d`OWjg9qHbSZGUThO=dMDISt;qr2#>k5(KX`Ho( zERJn4b+fx5J}E*-DN$9md~=fX-WGPG$S(A2? z>3f?rO%-hkT}H1{dJqT#LEs+*`aXknrmHxPQ4|GS?O}OP5&`A<66#D>`5*_zulr5J zt}QUVOhppT8F0bZ>!+N}ec65j_lTOe22Hq~09c6FLV-7MJ9*@1djLb(v&6fA!+Fe0 z;P}A|hy*yCSKcPPm*5#bFCQ%cq$yy|KN2v}ZGG+jb$^=P1V0JU64cf5>f6A@0({E9 z0T&C@l>^^_iv?;44mW5g;=KzRZ#&DkfqMy1LTa=dRYa?MZuMsD=ClDNBsvYfW`Gh> uI@6VN+)@SyJdWdEN9TV;K_CcpE^r0ncV~0nCkLkh0000NA< literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/chips.rsi/meta.json b/Resources/Textures/Objects/Food/chips.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/chips.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/chocolatebar.rsi/icon.png b/Resources/Textures/Objects/Food/chocolatebar.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..02a357464cc3279efb7cf192267bb4ad8f034625 GIT binary patch literal 274 zcmV+t0qy>YP)|7@!6)#1!@ zJ9Yg6T!5bflvO&P1}Lj^em?F&h}{4)4gevDT>vv)x8ri>iwFkL@=PZSqHaeoL=fOx zxj|$)0l3G9LGP`(0a**UW-E`hDyTOGY(C4ATER$h{j+bF>d|^4*n1BESeZ3E({JGG;yjx zLe+*ixm-fToc9=d#x%GPLJ!Ust`4<_P|6h@>Tuuba=+jEeLwH_-n)0w=KLnTRHUcw zAwUQa0)znn13+I;!pjA%F)=oR5H^~YCO0GlV0?3%36ThR9zxju7%ejlo(I67wk-V< zz@-aO|5*qdAr52rZ)SWDO-mmJJP$Q#pq$@4)f~E5f^wx!adqRU!Ee2O{}mx@azir3 z)eVS5P?HAvMU(BVTu|v?0B^=?K(h-%*pw^vHjr|qj`6+5z3CnDg)eMxC`YzW;7wY=qK^0W@2#Wro{~ODhHs?p|SZw!rT0E{@}H8bsg{ zOwBFv$=XBH(gET8>nHc*1D7AaLseA(s?{orqWm3zWm(9wOe&QknM^V@x8y?rM`nEOX^GL<0*OQd z07+_Y{!}W3EX!Dy)e)fMG1S*}X^pi;EEYr8bzIj)dcI8l;cW(^Fn;Sg#gfIqqgVcn zTWT4brb(?4N}#eDi|-ksD;Q*^~3TFg_E&aS&OSPmH^++qH2^ rfnUNub(X^2s^^zc2oM5<03pCH`M}?s|I&vn00000NkvXXu0mjfWU~@5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/chocolatecake_slice.rsi/meta.json b/Resources/Textures/Objects/Food/chocolatecake_slice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/chocolatecake_slice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/chocolateegg.rsi/icon.png b/Resources/Textures/Objects/Food/chocolateegg.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6be9d422054d2f4b99030bb38d896166a80e10b2 GIT binary patch literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJd!8r zQqJoCPiDB5acG=?D9p(404jHIYLsy(;&2IFeXvOLI>PgLBAMsgnyGHZfO3 z2sD;GKE^E~71@`@_v6!ZelGbmOEb$^773BBb&tuW%O!NYxA@$U2;@yFX1dw=;lxaK zo)b4G#2oO*n{BW*j$8HM*{nToVU`Ztm{+i}?a`2fxZL1X17kS@gV9l2vq#R(YCxYd Nc)I$ztaD0e0ss&0W;Xx; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/chocolateegg.rsi/meta.json b/Resources/Textures/Objects/Food/chocolateegg.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/chocolateegg.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/clownburger.rsi/icon.png b/Resources/Textures/Objects/Food/clownburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..76c64b7ec8c0f9080f25295aca1470582dba4395 GIT binary patch literal 650 zcmV;50(Jd~P)1vumIed)acJnEWT-(*J4lKy8L~tyrpC!dQ9)>(Bw(x5LGD)kK{6CfGL+yX z8qk7T(Luo?Rnn6?H>?8vwmMVs$*BH1c}3 z*6`)GVAH;$Bjr%D75aZ%o&yBHheUCHS4l1pVKkOM2fAus!(76le*K~Hc=vYzrbB3} z05G)Q4?x%Dd&JIkY59qnS^VeW=$Z+D?wvXe&hm$_DnOxbf3c~O&&2`Xyq0@?@dk#m zF_!fGoa$cC@-HUM*ke|fJ#WgI7OLtsEL8Bl9l0+FlV&XTUgT7gPbcnxzF#vn_!M%F zg!#3*G4RwLw{C!ab21i_xPtQGB*8@mt}YPhGmCf;0tj>2lwu@4!twZ%n&Z~}68_4` zFzf=r@=QVUxscLek6Dq@Ao*Mb7Zow{2Gr0~93BW0jtmQsh&T(HVPu{jDbB&00j8I( zYwfjE_aOxF{EiR0+3T!av-09c$gaail~ zS#!6(j>x|O(uO;SC(twvQ55C2N%>w+8e0ZL(tkv;vF*5$$#^`5VVVF3ken_PXE)0C zdW9g;Gcc_6x$U^v+;0hUT?as*={gL zh9L~ogr@0|fyID;ijaYWFphwVe!>!Q0@7kgz=-+NDn5eaHb}t1DVdmCOqj=g3}Qi? z{_ZSc928`dA6S5Y-7P$V3_xe#@Uznv9-bnp-*(y{Og2wn$M=1&D~)YZip$Og&iB0O z0040F(c`<@>mc<8_}e2$y@7kiGI>R6QYyuR+dCXAySZ;dESE!Qxq^iEAHN~HkPfbuj?6$Iue#ebQ67FGT+QUH|$d;^8+&0JK*#ijrN N002ovPDHLkV1nXv&8`3d literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/clownstears.rsi/meta.json b/Resources/Textures/Objects/Food/clownstears.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/clownstears.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cocoa.rsi/icon.png b/Resources/Textures/Objects/Food/cocoa.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3071b2b5ceb697c7a841832a79fa5c1baa86bde6 GIT binary patch literal 336 zcmV-W0k8gvP)R7=Qs7fB}91K)k!~bX<(uSSWcfQMWzLyGs&V zCyD(JkZ{utDD%{fN(yLWvEBSfK?DOV_w%tTGSqF4s>lG`yY|JKZa`IJQ6ND8r{iJ- z0BtM)KuO_1>b7@zBu*f!_1{Z~mnNhwC!wYr+?+NRWuBtUQzx#ZK$)k|#$vgjj~@g0 z9RYB~t0HqS{z&N#pz9&`i4Aa4{qrNyZLFg@nrb5BR4z#%Suk{ z0PvTi!T@PAY1y61%deQ97I#QUW-Vcs? zbJ_`jw0kMQi`o0u!c+o%_c)h03!&|_5?7<2CtO*DX=GSke9QB?nY^E-6aaFgh_%Gw;4|EPC}Oy> z3INl{2opf$ZJ9;}eIs@0xsVsYh5(4wR5&0mi~2?i@OLN`1aO1+)m2VIUjYA7*XMT} c0Q|QA=ljOl>pRMHZvX%Q07*qoM6N<$g2dbc_W%F@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/coldchili.rsi/meta.json b/Resources/Textures/Objects/Food/coldchili.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/coldchili.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/coldsauce.rsi/icon.png b/Resources/Textures/Objects/Food/coldsauce.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..28020925e01bb84ad2d2bbf9f7ed167479f354c4 GIT binary patch literal 319 zcmV-F0l@x=P)J^>PO*fSu8AVHuJXb1`ob^_7l#3fkvDTY{b z+?{+~x{U0fG-+S*UVnXkZCWSVL}aPAOlL0uau47IUhD;4Y!ahn;{1Idnz#db-h%h( zI%fF^?RwI;4Um>Z06(kW?-GMS7V?>aG$lTUAGaAap5w*2Y!ATiT^Wt$sFe#L5Q0DG z+XDbl>H>^^S!$v<#x4Z(7DFzVL!12@oX842JUt7l# z0Kl<(c;18ne2L;@ei0P_1%Mo2zk_NeX$EqnU$g%YkSLfqRsqsdj%(mm03KozJZUsl R0L1_R002ovPDHLkV1mH2eP{px literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/coldsauce.rsi/meta.json b/Resources/Textures/Objects/Food/coldsauce.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/coldsauce.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cookie!!!.rsi/icon.png b/Resources/Textures/Objects/Food/cookie!!!.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9b51181a9570c7ca707a3e64a4588a5afd21f0cc GIT binary patch literal 428 zcmV;d0aN~oP)1vUQx>h*se@D6O`(HyEe`zw1?ebs5Tr`oM5Tk!MFa~Gap|suKcGKAbP5PA zr7jK~N=vUDyfsdDq%|ZFkvQBt9r?cd-iP;&TxxhXBuOnL>TUoGfC2aq0L#DG?6_5L z@!MhHKJ{k+i-x6QPOsaYE{$3l=ViVp3MdwUGFFBg_LiDAErsj$b$ zajRY-zsBbF4geqhS3OwCvMjw;X`Ef$&}!Co5;HNz?M(uYBQgPHzPEo$yVDKqQHdyX zA*OT35T;lOtfbe!)f7ytSqBI-oQW|2Zf^nvU&zn|)P|WD>tRYlOlj20j0Sz)-=618 z{rzF)5Rrh=)8~Qb_9g_Su?Xf@lzD6bKZt*D97X*HegyCrO8hM_00zJS7ytv1IKUU) W`J)S9_Z?;c0000b8Uc literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/cookie!!!.rsi/meta.json b/Resources/Textures/Objects/Food/cookie!!!.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/cookie!!!.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cracker.rsi/icon.png b/Resources/Textures/Objects/Food/cracker.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5c5d84b4d4a538000c09f2c29fbc38dbeb56bc43 GIT binary patch literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJSDr48Ar*7pUNhu6WFT_vV}0oa zKhc)~T#t12Hq72$^npRvrt$gK%Gkl>&W$?0^{d;UY z)_nfuGyUpole-K&2N-xB=rha|51Y$qq`#)^a;0{QL_qs=S3l_%jtP~CrXQFY`d%&- zb&?Kfzum`upu(tX9edq^-V01ua<|J)cTt_`LF(e2C`*YPIjBe+}F1!yUNdiNt+qT=ti}X?k zf=FUPH|xZtwj~CxBz8n`^I~(3P8Z+Knbz5wLs%Dk;p08upYuM?_k8bpzaynzrfH;E z8j9W|&?L|#@IMf+o>U;&5!95G7yuq$Kgvpsi>FVqf8niE?LDcUN_ZGd2P6?UU7N}O z;_Flo=R>beiBvrT*%8z>V?LvGq^@hSBdC#x1rv1yWGq~ci{GC;iU`!4x0sQ zFjWzwq5_*SpXTXm5gnKN=nh?OxI9jTj!tlfn~9A)c(p8l2E6;R$?6W}hl z7)X8qFm}lOIRU0Oyx{c$fl>qJ&l<|8*&-XG544&I04%KML;xuRnuD3>4kHskOMoR1 z0{p>5Y#_J?n&XIa$I5~2-5j#rDoB(9jd;(LF`{7s9u1cU!iX~vedFj7aTeBdZ13i< zo_lVpfN2ga&R@|wJKB)#R@7{fp-XLs5_)nO&$@s7Ly($ye?&#uZY7@Dxs8Wcscc$p;>to~T zO(PJ1k}jfViztA)_7T}$4&ga84-il7F)+Qv>gp=pberN-Ekw&_mbKQ_R-8^J`Fx%) z)TgpVL00000NkvXXu0mjf54cXe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/creamcheesebreadslice.rsi/meta.json b/Resources/Textures/Objects/Food/creamcheesebreadslice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/creamcheesebreadslice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/cubancarp.rsi/icon.png b/Resources/Textures/Objects/Food/cubancarp.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..387d28d99e42ab64417a7b8bd4492155a9127474 GIT binary patch literal 661 zcmV;G0&4wHtuh|37bJEbfK1cfq?E2=ZNIM+oe zbW>~|E0?S)QvU%EOU6WV|54#P-!EpmXGF3mxsf<$G~uWF z{rF^?mFH(zHwvuhBM8T0e{-2|EQo&Y4o2Y%frh9nt6@)SAx!W4-W@NU?P5y{N~IFT zVv$$C3b1_Gr14dpP=6T&GMvm-9&Y@caE0S6~ZZVq$`9 zCd1X)S*Cy`;N6V`YiWa!V$gL^K~WSYV%Rom+ywAsBR00000NkvXXu0mjfM6fd@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/cubancarp.rsi/meta.json b/Resources/Textures/Objects/Food/cubancarp.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/cubancarp.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/dionaroast.rsi/icon.png b/Resources/Textures/Objects/Food/dionaroast.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..aec6333a3afb3d70dfba534196be9aeae792c31b GIT binary patch literal 951 zcmV;o14#UdP)M>qo9WLAXrkZ1;tBZV@H!M(oM)TDeI=2&6?sq55o+b-I=&KNG|(@VcwgW z_xpZ--`{(0o}_=Gvzc&hDtlc(T|iwxT|iv`@UYX1)Ob>u?ZL#Dw2`2FBOT&V-xl6K zc+Mm;peo~9!!i$rUUBKYte8)Hog&L6%m0kkwnEfG${sqv&}-`Pwwq!14J2?zaj?uqebbDU$NqcArEfS&o& zYTKd8fov{EHkTtHKSo&bTO#f+Kd>@2NkiNG0BGr1I`^t%mkOw{CbaadK@9Z!;(U~u zb`(&x3eF$CE-A8%z(~F;(N0&QooGm*b5D$L(9do)YLT1wa&#Yfihf_5eqS6l){oOpHm{Tn;cMvApzrNxatkEGq#o+yB{OsNMYtrJF1K6>t$~bd$NYgjaUc zDtVc>b%$t3!4&@YY6*9Pi{QQ}sou-DzH-?LSodf2;pgA;_8XU2F65be=mDjhD*yx< z-Q4?e9M*ji$bdRG5`aMM{FmwqXXJ5O|-SOadxQN zdUo>A1wMYamuxPFBFk2`R&CaAj=svtLlLzZaX+`#dg?8U^^%6uptNj4{Z9G Z@Lxe@YX5!q0nh*d002ovPDHLkV1kiq%*Fr! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/dionaroast.rsi/meta.json b/Resources/Textures/Objects/Food/dionaroast.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/dionaroast.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/donkpocket.rsi/icon.png b/Resources/Textures/Objects/Food/donkpocket.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7eafe8f9a607193545d4183bef2daf6c836c86f5 GIT binary patch literal 348 zcmV-i0i*tjP)P+ z#L{9r)0S-JzkKuYe(z)Ev2t9ZOPzG;-2pfN2jBo4003@tXgC?Po9v^f88f|$nGU1j zWYAt-1n5WJihc3%Uy9J@om`v0000%q@B_GB{L{lu*z$+whdltLFRxhZM7x zrL0d}*f&@FD?YVJ(UJXt%)tW;oMjRXPdR3ZyWEg*;_W_J#Grei;d&d?^=`5Z3_iP~ VFR1TY9S`&Nklf004Mi;Y1d(9nY#X^f!Ppu+AHxN`ZF^G1#~uFKGw^Qr z-!QV_)r2k!vWF0L=I++^y+%B@2ZqsGPD9(<6P^pN61Z9?*rr+a!9_=`G4$R8z-$pk zQ=f^B93;obDS$P|k-(P%oRQmq!vGKf0zd%x0$As3-)D5LD*ylh07*qoM6N<$f{S~5 AtN;K2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/donut2.rsi/meta.json b/Resources/Textures/Objects/Food/donut2.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/donut2.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-blue.rsi/icon.png b/Resources/Textures/Objects/Food/egg-blue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..67c04ef645656be04022797c1c814dbe47d66f64 GIT binary patch literal 305 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJAD%9bAr*6yYb+nD9(G__#<;ci z3gcoviP8frnB8O#0D;rGV@?z6|8GrEk*NEZoKW%mk)HEk?KrnxmJ0o!fB*NWt+a^u zi=3HwX=e2Q&vM)o-f(PM8{0Ua3PfPx;`13&+Y{ z+n<#UD0^hz%%Hw(#})H+7}!+yYu5dgWNvP>F@7t%A;e+w#|PFv zA9Kz38*TY>X@S4eo}x!Ghu`*d{M%X1!?Q+y{lsJuX62o^PQAzb|D8UaZSW^0EurG` z3$DYWo~oNpF>aD|&^37A`Vr(KgI5iK>^wV|8S*AMF<&|q;Ry@_22WQ%mvv4FO#pDS BfI$EN literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg-blue.rsi/meta.json b/Resources/Textures/Objects/Food/egg-blue.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg-blue.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-green.rsi/icon.png b/Resources/Textures/Objects/Food/egg-green.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7c52beaa721dc98ef3c4316465919ca2483cc825 GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFtT{MIEGZrNv^Scta{jiX&K|z z+AEBU`6NmYtYCJNJpcqw>yEKHmi`xYxhnC`;7?M;?+3QdKh7n&6`fJkW=X3E|G!=M zYx;!b3n>9f7t%ijb)?;RX7t_uu8e}da`U13vmd5BocYPLs7L88mKHAdoJ;)Tr$rn!|?Tm zdyJveml@tmx9C%>`|~=l?MAn#%5#=YLJwbdUzeO`c&GWZyg^J-!Vb^4zBHBXzBAI& z{>FQSPHUX_Q2g*}>3oT0^K4zhEFHEnuV7`{qag?JpTVmJ#&QM*pC*TWO&?k-fx*Jy M>FVdQ&MBb@06Uh1{r~^~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg-green.rsi/meta.json b/Resources/Textures/Objects/Food/egg-green.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg-green.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-mime.rsi/icon.png b/Resources/Textures/Objects/Food/egg-mime.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6e4350f515dfa6fef2d98863b5b36feed9e2e581 GIT binary patch literal 310 zcmV-60m=S}P)0d2lsS9RaJxlT6>dHO00j^-a{C)2c(qHT3^py*P-wG zkW!$~KjH3s=Zd0$F$PW3U@NvkdmtF_sF-{eGk^gMV8G;nKcBW)SZ*Idc>n+a07*qo IM6N<$f*_WEUjP6A literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg-mime.rsi/meta.json b/Resources/Textures/Objects/Food/egg-mime.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg-mime.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-orange.rsi/icon.png b/Resources/Textures/Objects/Food/egg-orange.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5072aea969ac3809d26e38fb7bd9ccee7be9c2f5 GIT binary patch literal 302 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJubwWBAr*6yYb+nD9(G__#<;ci z3gcoviP8frnB8O#0D;psziX@hCwaZ%;i<1Pyi@({- z{Q9>^0T0(K^jF$b@Lh`e@a)|jjmO0$^Y*CdyBklstyWWX^UMBOyJVOTf1l5D{r&#L x3Fa1#VU`Ztm{+i}?a`2fc*x*Y17kS@!-aB3j?5obxxfHm@O1TaS?83{1OVRTf0O_K literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg-orange.rsi/meta.json b/Resources/Textures/Objects/Food/egg-orange.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg-orange.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-purple.rsi/icon.png b/Resources/Textures/Objects/Food/egg-purple.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..750a7a62e09cb0937e26d6321ee075a7c15590eb GIT binary patch literal 309 zcmV-50m}Y~P)|{LnUsyy4LtI`- zj$!Tl?IcG9$qv}P_%s7MCp(5X4<8T1!|TsUHI8%#DCtTveE#?uL;UrNR}2!0BD8lv zmVPwj-P;c_#IIbq&JZQ(N1sG^{^DtdH?QBr`A?s`V0iWA897EVFp}FQY~DQUznZcd z!|&gJ8SXv4!%*jwPO|SQasai!&@GBb9Wd&EQ3s4VfLZ_mVlz#dvZ~lo00000NkvXX Hu0mjf3LuIF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg-purple.rsi/meta.json b/Resources/Textures/Objects/Food/egg-purple.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg-purple.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-rainbow.rsi/icon.png b/Resources/Textures/Objects/Food/egg-rainbow.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4334573ec02a2f63bb04d4494366b4ee1a79e7b6 GIT binary patch literal 335 zcmV-V0kHmwP)kABQVILV7KIhQZ0dhY(7@w$@|L0+dKoP$!xSc`%)H0G2Az9_XsY^E* zzBAm1^M5d0W_Wdryc|uIE}P>U7}Ne*|CdsgWng6Z#qjFJ8-}T850O<4Fpf4#M;$Qg hfKdmGI$)q3002J6NX~~z?Lz2!!^H)zZFx+{B5V&xQ;W{fTIYu!slG`SH+~ECRT~3OD;U@#b zwKs1V6l&L#RSuBt0BV5&FN#MUFzSF&2aGykz#RYpV6j27X2R(n00000NkvXXu0mjf D1L1@? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg-red.rsi/meta.json b/Resources/Textures/Objects/Food/egg-red.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg-red.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/egg-yellow.rsi/icon.png b/Resources/Textures/Objects/Food/egg-yellow.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5b4a1fa17285ca633784391bf87c9c919ce434f8 GIT binary patch literal 311 zcmV-70m%M|P)f;UR;V034&W6uW%%^%9ftVxw=Wokc-3j| z0Pi0?j4vMD!VtfG`y7M)ha&nU!sBPIF?{>_6wd$f?mokl2fxTMih+^bHsNMg|NkoL ziVTeZelgs-@tnc$-+Hpj0kR!HEim9k@u&kv9Wd&EQ3njT0|0qE9V&kS@YVQ!Pj5=Vz9RL8-%t{8^=*t2C0000< KMNUMnLSTa9#g8li literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/egg.rsi/meta.json b/Resources/Textures/Objects/Food/egg.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/egg.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/eggplantparm.rsi/icon.png b/Resources/Textures/Objects/Food/eggplantparm.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..435619a93202f204b151570d775c33e6b74d3441 GIT binary patch literal 681 zcmV;a0#^NrP)x3n_GtaKQ{_D+i$j zteYj~%cLm^MS1}X26Sk&88XDBi`U`mS=x)yLJ=ju>ErIZdmi5RjyvUe`Ize*-?h?v z0zHAAKu_RC2~>6!JC#V;*CJ5aRcs-gwU*v+J<;!8cYY2GuIJwIsnmtMrbK%>q2Mz zM1$u~i9VSjl}Or)%ZtjD6F7rU_#H4n-_|N;(44tWJTi?CAhSAsTdRngvrfj6h_K*r zuh}hti!1o}p`U6Sh6jQ!+{haY1~dT1r)H26B+?ZVb2`zCQ`N)1NdUJVukozF8ntXW z29z|QAAm;5fmhpbxYtA?0T>KuViSJnKJPytA(4ohz#6se;Md?^Rdjp? zthEh-BR!%#wycAPZ1!IO&M+d1CRnMlcMK$)763&pG{yFzD$9j0vWmeRq$WjadW&YyXt;kT<-eK(SavRaMFd zS>#>=y&$pHHjst$Jue>J=i8?d1OgElK-3^MA9NGaBPPcF2IYe+s;W{f7Ci-&PCupT zFKOHF_Y)3>X|-BxZ*Md7<1Mo<@6p`xA#?#XiDkcn`U=e*AKK$n7=8`)6&GA66lk~G zEIe57d=)zic!^wPx`8h(@TZ8Xsu%8SwOW?~Us>RP&CU57_XK(Zw^raMawZ${^F6Ve P00000NkvXXu0mjfP-!hs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/eggplantparm.rsi/meta.json b/Resources/Textures/Objects/Food/eggplantparm.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/eggplantparm.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/emptycondiment.rsi/icon.png b/Resources/Textures/Objects/Food/emptycondiment.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d828c1fa4052cf49bcc94e6ba7e1d2ad6a1f95 GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJo1QL?Ar*6yYb+nD9(G__#<;ci z3ZwHq#%s3M{;#cG^FKI=jazkAa8S^@z(w;L6E)lq{^9@pJ}M%@z{A_y_{@KU|9W?2 z9dsS0F(>S+|MSC;83D#5?OGtC&>+6#{3j<69smu`4s-h6MwIex$YBpI`3# Qfu3aWboFyt=akR{05-*GCIA2c literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/emptycondiment.rsi/meta.json b/Resources/Textures/Objects/Food/emptycondiment.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/emptycondiment.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/enchiladas.rsi/icon.png b/Resources/Textures/Objects/Food/enchiladas.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4effa4ba23e07b988df86ae957271b6b1501dbe2 GIT binary patch literal 1690 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 LNkvXXu0mjfSVw5Y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/fishandchips.rsi/meta.json b/Resources/Textures/Objects/Food/fishandchips.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/fishandchips.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/fishburger.rsi/icon.png b/Resources/Textures/Objects/Food/fishburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c798c98c89782302e0e09fc558e4b83435c87fbc GIT binary patch literal 498 zcmVJ1;-I&tqV0`Z>W~A0%X>fG=O*W#8&`3oNF$@Eq3#ZV1KQtrf?}Fj?KD!_;*~=)XdCjkkPp&Jqg>8EfQaKRRyk^+< zVJbqHTea1xuRqbR0IXr%u`sr3=O^~os|k=xM$A}hnP}l{aq(Dcvc1PwP61*%UiVH&Q1-st(K@>#PB7t*!KWJOH>8fTEPm(?>@vW>Ww>KRwDUD-QsW zxzq9W4>G%Z`|X(du?`AnnTnjK6}Add*av<7@5hK!V5bmC0|*Gw7KI5aPeI*EaW$Bq oUPQkF_^W96|9}JF05lxn6;jKutm^3_IsgCw07*qoM6N<$f=2(|H~;_u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/fishburger.rsi/meta.json b/Resources/Textures/Objects/Food/fishburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/fishburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/fishfillet.rsi/icon.png b/Resources/Textures/Objects/Food/fishfillet.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b2391770aa42669201dcefb39dbbad706d126589 GIT binary patch literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ|DG<6Ar*7pPTSAb6d=-WubiPH z-k!mE>y}hZRjb^B=^GEmEpmUsSku}jwdm+s*NlxvWoGB>h?%m>yjNj*u|r+K$9eB} z*9*+enSL?#tJTu(296FeV)z>`UD02A^UJy14P|v=8=96~ezr3(;GS6Y;+Ev!@)gWk z7joDi|4@*`ZE4{pEg~IyEy{p)JR{z&2usBeZ**-hr0#}s&Z&?fWS9~psIc5g)on;QE zEMiz6x!UZ38zV!0jZWvHu-<)*+r)mjm;O@~VH6Z#6s%y%xLZH#-`4VTz@T98boFyt I=akR{0AajP)rQji@Q-^@_09iab4^U{=Ze2TeX`wHZK0>#wG57^Mb}@7o7?R1vgTY|b z=@QA7EIClT=m&!>Bk8-l|17ip*B(>qYSP_3fCumZ9>4uukMieQlICQ*b^NIYnGlE!OX!$at-c zlW0yH21-Dq0SH1~Sl(>)@??Z0xj-lYt~ER!a@^jpP7o$Yf+&C2Mu=Vpx)8i8qI~)(Wc0pZ6WXP_1T|f{?8i~bx2H;$GvE6_@zhQ}U7JywZ>TUo-Vzys0U1uy` zKOnXnWV{AJnq+IwQ2+!%(zU5hLoGS_OV~A?PGgK{1#syM)3-o=XELJJggOYh6gp#F xYDDJ}P$q1q(`m?vRulfWCO?infCrcy;12__z^-kXb&3E0002ovPDHLkV1hJ9ql5qe literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/fishfingers.rsi/meta.json b/Resources/Textures/Objects/Food/fishfingers.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/fishfingers.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/flour.rsi/icon.png b/Resources/Textures/Objects/Food/flour.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f7cfd516ab45e6bd494aab776910abc5f7f2caf4 GIT binary patch literal 345 zcmV-f0jB!0g~$i^g`y{Bm4yoLGwuM8_vA#Omu4q r2Cm+GkF!-ovID3M2E0)^;0^!)_${OMwz_k100000NkvXXu0mjfW1EwI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/flour.rsi/meta.json b/Resources/Textures/Objects/Food/flour.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/flour.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/fortune_cookie.rsi/icon.png b/Resources/Textures/Objects/Food/fortune_cookie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d604eb60a6de0172141fa71f8c9a1063cbd4d33f GIT binary patch literal 457 zcmV;)0XF`LP)7}&V78JCQ5_GDQh=V?WgRkM!xQMf(kDxJJ@hV1Inx6b?;z$(6} zL=i%eiiVhtD>SPm8BjE7=|AeW3Exs3|XDr)-WlwPpI1P9SIm(r6p9+wG?2trm>OhbhQtG{R^b zGH3*{Y+tR+ZJ3=pYo66$@SFscPopq_xEafX6LZ1bah!ifi%(+iI1T`oWpUcuk#RFF zOd}T{ZpJbULyopL0O)i&01Su2!ilnVW4%Hch7>^*CZOv&`(MBDWp9mszYjpK*Guck zw288{(+}_Xbp8`v*9(Dj_kg$S$y%*O6h-*H&yV&;j(^=1HcM3B(zqD?#xzZY5V)?3 zJ+WWh54p$Cp4gg;E34Hiwrz8C`G@+J#^?8M0r-CVkiHx1^ENm4j{sa<|3wIa=XuO# zvt0AS1hVpWy%eO3$`~gq^&?6exwCm9LWmc?i=wEs@lpW)gS@6zeitYJ1)u;Fz!NuC Vq-$SP@(&A8&ar$z=qd_&AS)D!%jQw;vXP(#C!b%EO^_Y zXu%2FNH4O;d#UL_MyOpK!t3E()^;wXRb))^y}WsNp5*(<_f1H&@MXwl>e{8crvNEH z3XlS%09Ovc$eGfZeJ&IGD+kiZnTh?s252@y4dKxX5g!{X2NJ)eW=7EUK}{oPN-P)b zHJY#QXq`e^61gY{&LBF4w!|-i@aPoQr8WH(D)U3Z3uz~?D;aSbZ- zV7aP}HlXa`FYjTWnhPgjym6Y$02u9}AClgP#l$+Ts73bGU8bJ6{e!n3!I!scjkUdm zZ|wnK+b!@*G(T)6CUGGEs90~lnCUka9<|9T`N{$;yHNJv*&Enig7?52V7b(yRq_*C zXXgkfVEmmvd;&25fVDNlwJEk19f<4LJnoe}l~l2cZ~`*APJOqYWRsi#z$f#g92>iVbKl{(-NuSGy4!HH(A|!n z=mE0RIWoG={?0xpCqK9sJ{bKONCJsxxovRLTYpMZ^!_?ZEG_n|&g|PvIBvM%cv$6;|EssuQH` z+I3skn#8nO6ECtV)Ai3}QZM>INWwYieSXRNgq%?AWsPx48LRsQU;;1!m;n3_08`gp zP|m0QitGHmPYQWyd~xMV=$`R%3@L~|w+mxybsdZSmowBHE;j|4IShfRUVYS40cxa5sedN@EipY}iIff;Dng79pZxb9Ln1+$t9 zKx#fPGtOOTIh3jjpFT6vTNnz^3*64Tz^HxFrfv%2y32_r2x}qQW|z7t5UE>~stU#T zE;90GK(Erk5PEB#PY&*;;JgdlZ@T~_bQhK&uDg8Lg4_25jk3$$4nUV!1df2@MGfV( z(l?NO0lYQOw=4?)y91^P2_qQW*@NmgIJRKQgGw`KMJxg`3bqAN8!EoTv}K{KX?-Dv zeuhaQxf8STd@viJ&%l#M;B{cmgs2XsaxhodgY&r;KqsTaTQD#Knx>(wZ*q{2GM@xh zg7o3&1geK{)(Wm=G%!DH2FFIL`sQa7%1zT>~BRmD1q(5bOd5^ zps1j9;q>^IanC%pkpnf#kPY<;_@@3 zHgXt-fs~R$p+Kk8A+ww58^VDASAmS8QH*;U>0i(*l<(wyRaKGl>To%ZGqUlu0DcF# jNsWC!FaekVj2++yv8E6_Ji)lp00000NkvXXu0mjfryoJE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/gappletart.rsi/meta.json b/Resources/Textures/Objects/Food/gappletart.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/gappletart.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/hburger.rsi/icon.png b/Resources/Textures/Objects/Food/hburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3b0f7badb6f2a42b82a1c57bab4b3342b4c244c4 GIT binary patch literal 444 zcmV;t0Ym1uNONOJUR^nDMF}LEFt5^bJ0*8fUf+Z7^m2)7LfW=K9wqydgxt**)Fo!H^ ztz)VarQslKyYdrEUv>Si{obePdw12Qy(x#((LvoafD9l5$N+%jO&)SwBU-Hu-Kn;B zfW)|6U9Q^}l;(43K{VB~z;TUeov|1%*KVKFK`3RwagC^ME=&_8=5noFUH^%;0+1!Y zabhgjJdv*7zZvNIMpS7)zXwRo&+Ub=Y})ss(%2zD)0}Eu--tdYP%26jE2fFw9`h6j z1)8QBfKmug-!G!c^%nrStB~1ip39qX$uy}K2L*gDAZ&dq1yN}kS|Y#^alavXI-`(E z16pVCxHAfA5t~~gpbWgIG*$)po&}ubbO4+?4T#4bTgMU_V_OF%_?||2e!r@eS3yk= zcyN{*`(Au)iGcej9Z?Rb>FVZ?awDpnar%FgC*nY+*@%<@5{P76mr^dTg1v3Uf5B{e m5N!ppD;@lQAOpw%GJqe6B$W7er$Ji)000033c)s7w%L9y#RIKe`_?=qBO#sBjnGRDAz=N$xlDFZF|f0JIy zWX_9+fg9^CiyaiigSE8Qi2(-O$iY&X<`y}k8;lkx#o_>_#@37=nz{J1&F#JMGsDVf238<);z z0gxn#^0z!&4TrY&|yyquK?I8XX+ptKEiCS2tZ`w6v>oKAq9?Zcst`__C}PIn8;G}4Zqh_zugI6 z4&JASzv0DMk>z|4fMa2ZPsxnEzEJmkLsKv^J&vPWeG7mbK{nhDz14*jba+$#Kg&DpW;l=fp)&Ky{zm6$G*RJa0<@a+eI6h`RsP+cpLc>0VhhaWWj z2|EJRLMYWV79pV5g)R>O)wPlyP+PCnZs9EfGzfo>mteq&MF{9HMvh{7ooueSW4Ivz wO?z1dH5pkA4FmiywS6-(0ZafBpzQ#E02pZiqjSa?^Z)<=07*qoM6N<$f>>!42LJ#7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/herbsalad.rsi/meta.json b/Resources/Textures/Objects/Food/herbsalad.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/herbsalad.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/honeycomb.rsi/icon.png b/Resources/Textures/Objects/Food/honeycomb.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b958f1eb84c24f656db84814b3e1001b8fe1ef10 GIT binary patch literal 308 zcmV-40n7f0P)?2drT(gIH~Q2_v$s9>~$(W+nj zApn=9HM)U&-sTOMxB&o+ZYJ@pX;TEgkGc-TY8Akl8?C@Z^)WWO8Gw9&F2@2mbDvxU zwB9?2ivV<}=+4LOkBMUzz-R6=b9Gm@L1)2Y2WZa2sjvEWhnZ3>{)TkuXx=pUSj~1| zygM#SOFM9sHXlR|C^qx4cHIR>nNlUcjx#_8$N(82Ilv3jl4mxL6@Tmi0000P` zs9d*z4sF4q6x+~1FkDSAwFJD+!QAQP?wac$5qfWV-#zZT|L?u`-Mf<-iw%Zp@=(=% z03W~y@Bw^)V+HWz!5J}BfD?-i>5~J*h}Q?K%JYsH^xLF9BOL|I6`)`6%JdUjtroFZ z%;p1ufO+4$%45qu1IVofHUL97cWu@tRvjBVG@B_QxO(rYCAKX|;&X5Pbr8U+JTHt) zoy0C=J&-{j$L#6;PiCq;g6-c93f$MgzBmnFct|TDa=T+cJ0$F`6jQsP> zlHP{TPwng+Hx+xnqzR-~sma*21o9GL6dQ>>Us?~6&1@%-W_M*BbRDKK zC+yq*ne)(c6_K_yjsW2ab9u{ug)HFmdAndfbKdTshB;Q{eGgAA@oHOM-fu9&-{#DN z=g-`yF}LN37y!YECtHnA1iWDAa(Vz#Gx_H>=I0Dq44W1?lwMc!ShV_GJI9A2gB9;? z9Xas8YPKC;0uX5I+Q}IwWCYY5qkee~V}Da1dyiE^4*Q*-M-C_);X62m!L4X_+6&$Z ppWaRHDJf;xdfG+{pZx*iXE}=rsNdgN3XK{}u!TXb@=a5tuw~?~2S_)*+?87{G_oAVskSTI)h{Tm|5RoFjZw kfNRF&f5~Qm8DMgNZ>XZnbd>D$KmY&$07*qoM6N<$f_VqR9RL6T literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/hugemushroomslice.rsi/meta.json b/Resources/Textures/Objects/Food/hugemushroomslice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/hugemushroomslice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/jdonut1.rsi/icon.png b/Resources/Textures/Objects/Food/jdonut1.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1d3d321a673580394dbd70fa9d14100e94adb617 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJJ)SO(Ar*6yYb+nD9(G__#<;ci z3gcoviP8frnB8OzUNNw-v56I#?z-Cj-~HM9teTS^#q0{vR)zxGWiW&bq2BgmpMn5Mj;0z`WmSj)=0G9MB&Op00i_>zopr02dKex&QzG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/jdonut1.rsi/meta.json b/Resources/Textures/Objects/Food/jdonut1.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/jdonut1.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/jdonut2.rsi/icon.png b/Resources/Textures/Objects/Food/jdonut2.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..dc606476510c734554e4ed737dc75fce07c456ea GIT binary patch literal 314 zcmV-A0mc4_P)Ke?O5r@v#FzAO_nXJbUL|TL@2hhCmkm=S4au6G1m6QDGYv8=8V}IX1f5kfh!1nU& z!U9MN+HN2L7zh9`AY)33`byo3WPm=%nC2cxvjKjs#lHm%zyJ*J2J}o`R*RKQ4*&oF M07*qoM6N<$g6LCz7ytkO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/jdonut2.rsi/meta.json b/Resources/Textures/Objects/Food/jdonut2.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/jdonut2.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/jellyburger.rsi/icon.png b/Resources/Textures/Objects/Food/jellyburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5e35240ffe519f8e32c23b17edf2a5d69bc38e87 GIT binary patch literal 441 zcmV;q0Y?6bP){=brnaI5!U4)XrAj1AqV^00;np-DN(?8>%}Wdo&zn z;{cv^Q2Thykeo;-6gRxK=^qLlzd ziGS=Fi?L?I-*{3zP_p3`Ko~ren;MIzHGA~_S^;8-I2EVM6+&g_Og&Y;6^03Yy#N41 zRp)vyOv`NZ1k{9F$p$T=5Is2LJ=~Wzmj)b;sOppa zo!RDeodC}oV7AEupRX^V>ckRpLQa>VsuLYo2H^7NgMlXLj*nGvoPl&19(peIj>TKY z!tS|*obF^=(q%Z?|B`pd=SEc2M&19HnvGFI`q_x20XzurxhRxbTm>83ivNRI_8?jb jU|rh!eINh`00Mwtv`CK;dw~v>00000NkvXXu0mjfgrUIX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/jellyburger.rsi/meta.json b/Resources/Textures/Objects/Food/jellyburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/jellyburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/jellysandwich.rsi/icon.png b/Resources/Textures/Objects/Food/jellysandwich.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..611a3a5847689a402c8cc7fe79474cdbcaef571c GIT binary patch literal 654 zcmV;90&)F`P)BjE7=~Xb6+Q|A6Rb9sZHghG1Vb?y>fpswr*_HGp-bsM$sg$6EiC~LT?!o=GK4~i zJs7n?LnVS~B|CN`im20Ywp!FdzKa|zMJfd^dO_Tsbo$=sPT$=rGkiV7BDJ(o_Y@!n zNC8rS6ac`je|c%iYbpXOAN5LyXL)kT;Nk}TMjp2ZQF977!)QYeAIaMDmk9v?pmcHp9an*L z6}%oSgZlo1@^7xIJ(Nx^Fo^I71#oL3j48yg^Pi9*qJL*J6FgX6mwYZ_d3c7wr3ber zCI_hOyo0*)41-G#==uw~H1wDApS$;XaH%Zwcb11|foCH=kSA~2z+plF0N8FSc>lc0 z^TB|h8w^M)%dn>P)!P{k8yxX=Q-P*wSi#C%kI0>{bHC#Wf`D?ljLBqzj~g32ID=ve zwuRORPft(L?RMe1E;heyhVF#1&VnFFTxpsXY0MPsG-QD~t`CyUX6N=BkH>Ib7lI(f oGLH>#9pry%;XfoPz`_Ck0^pV_luIbGrvLx|07*qoM6N<$f<1*A@c;k- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/jellysandwich.rsi/meta.json b/Resources/Textures/Objects/Food/jellysandwich.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/jellysandwich.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/jellytoast.rsi/icon.png b/Resources/Textures/Objects/Food/jellytoast.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..59afaad5a9f32c703ae800a02fe753aee134c81e GIT binary patch literal 506 zcmV3TTqB?s*qA}=+KHF#o4K=lXh|P8#p-lA#|!BbZ~c;B8YYtGY8 zTBVl?F`H^wjX} zg8Fvd;&~p)WD?Wq6pyDlKi*&P-EJ3z5M)2HtF_@gkf7FTwS0xC1$q_JM0H|=#A30z wag)gegb?sNA4ohfz%0mLTIgTH2q1KTAA9%V9thJ}NdN!<07*qoM6N<$f+iBtnE(I) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/jellytoast.rsi/meta.json b/Resources/Textures/Objects/Food/jellytoast.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/jellytoast.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/kabob.rsi/icon.png b/Resources/Textures/Objects/Food/kabob.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c9baf5215b853ee43008971093369900db5406da GIT binary patch literal 649 zcmV;40(Sk0P)+Q)8u13``76 z3_PcSKqRgF!2>lG1A$0d{kb^iHeaOI#6LF>h@{m`@`%&ZCIF>Wj@n{P)fQ`NnNDmSend*iNDb&RYv}ar4@z8Zs)}V}Z0eX{htL3aUv;jR-70YHNjwd|iGr8`7HQXJwhMEC4JmfPe zrE*NKy~WtvVpbM_wJz4?1XPeb60sSYsl*(~7a|ghWa)G(v zGMRD#)3uHp*eg#1?%uA%QO)X>=!Iv>1!Cc-Q)+jQ_48vA{jOwQgLN6(X=nQB9RRU# zl!|5FgX*}t-SEs@%X0?WnXh-5kWwP0bTT{6=2%$zDmLO*!kzJ;aPVlsZN3P=cO&ZT z>w5K^2yk64_AT#2eSS!NTcFQr>DtHdH`YNcp700000NkvXXu0mjfsTVQG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/kabob.rsi/meta.json b/Resources/Textures/Objects/Food/kabob.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/kabob.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/ketchup.rsi/icon.png b/Resources/Textures/Objects/Food/ketchup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ff7f287fccd607eb5ba48492e81445940cb5433c GIT binary patch literal 317 zcmV-D0mA-?P)w!RHlo4j*DJVT+lo2SG6?-0FX0%8V{ltpaoz996WMNyy3p;PV5*$p8^RU9z_a{s!O*IWtSj&w(&f P00000NkvXXu0mjf9mIo; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/ketchup.rsi/meta.json b/Resources/Textures/Objects/Food/ketchup.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/ketchup.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/ketchupold.rsi/icon.png b/Resources/Textures/Objects/Food/ketchupold.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ef5f7153c9d168317ea241ad65b5c8a6b77aa3 GIT binary patch literal 419 zcmV;U0bKrxP)As=6vuy-O8o+2=~lYws9SM~Bs5U+4T3|5&e`%2(y^Pgdncz*2na46I;mrq4uu2+ zX>ctaBo0LsyzjtoP0BHRxN)J|1y=|3t@uU9QwQL;EIixJ%yHk}uu@{uwxH@b zeAQ~H<1|y!169Wn&Xv*wVHi>c>V^S7;=^8#&me#>%v`Ia0xNL=lX@8~g|C32X$nC| zslaqP-SX>(LD@9dV#)wE?Wx@s&XuwSQ512fX`pEkMF3l4WdK&+#}~*!e^dhiaR1_` z-i84EjJ1bx83BA>H{cY`Hs;5(>~#eh|AxC>J(f2qCRfQsOg+SLF6 N002ovPDHLkV1i#lx7+{# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/ketchupold.rsi/meta.json b/Resources/Textures/Objects/Food/ketchupold.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/ketchupold.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/lemoncake_slice.rsi/icon.png b/Resources/Textures/Objects/Food/lemoncake_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9995115999da93089d915fd134d5d476ec9244e9 GIT binary patch literal 637 zcmV-@0)qXCP)3W7>A#0X>&^L6>54I6KgSg#F!eQZDe89Mc8$4!LYHoIXF1@Hz*S9U^FBeqk`Z_ z4QNm{Luf9xlto&j269)<7VaD_O)Rv%HZdWZ`)yzDec#{nz3=zkClu}%I7oR8)ZGPe z0bBqV;BNy&MrEtroDQdeZSQ~;O(vl`20wCaMb2P&ZeV@9V+Tk+cBpdd7> z@7RIQn=#0~w-?1=n*#_=kI}YwzygRK-Gz(S z>c(t!`1m>fm}q~N+*|mjL9#`FrXw(iO^ay=pX^5izRykV1If=#A@&Vo7PBlpw~b>! zexeuu(5@v20-l$ih9C_`U=Ev>uIoIT-+;r%0f;7(XcaFrQ%msa35B(|7-n z3_6tt97fRD*@+}cn3rFnuZ|GtOQ01ige3@!*sZQAKhewD=}AJN5RzqYSkp9QS#Ao@ zumh^9B8noiEYsE1#d6OivrlITM0_=I+Ts}L^gQcIicly7fFRf-mt`4I6j4>RAwbhx zkU5*N{C+=*qF@*Xs;aUyeudGY9`s{_7^`W%^gbjU4%g&WjWd}H<#HKiMQL~l9k1bD z5P*dj;~Y74iFiC-KfVRywgC2mh@x2cyI~kD8&~D{EB;gM6mC`j*K6nkxBxD|KMC*~ XU1Zwol#GW{00000NkvXXu0mjfmWUYy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/lemoncake_slice.rsi/meta.json b/Resources/Textures/Objects/Food/lemoncake_slice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/lemoncake_slice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/limecake_slice.rsi/icon.png b/Resources/Textures/Objects/Food/limecake_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7b4f9671f0acaeefb3ba4c2c3f1ef65756867898 GIT binary patch literal 653 zcmV;80&@L{P)lp1A>EA{i7>==sf%>8sPrHnszaAb@ZhCehYtM}VIq5oVxfr2 zUmZ2HFujGi434{Aa@T&K&e*W4GaVMuHFsw>0x9M>y~F!F&-e2_&-=_PBp)X^O!FM7 zx(na}xBxD|-v*F-WxLcE!Rc50v+SbX7!E^S0KPA=?mvy`xsCnlVb;N0LH&FL?(GSh z+g&DSlR}~VjurU4769!-_M=xR)H0Llw(T3wdSF!-8U(SdK{(ceH4<59%scC3_! z2K00QZSZn1$ad$pEeHah*Pgr}d0Sw0S+-#qyqH*lBMksFhQsKYGDe~^F#C*T{0mk} zBQYAGrvriyV6F|OrtY(>MA+Qi#4wEPLH?uy0HM2MynlO*D>ts9r!rJ4Va~42ur!}w zRgciuofX}&jp=?qZe2%`YMfF#15{O2;q`j4I^JL`+@ZQTgr3Ua^TMUpT;cd&koc(~ z79|O&UWP5Fl?0R8>V3MPyl~wzihJ`XR=ik5KKe0CvSUru&(goM2grAW0Gc zf{<;wEX#`ctAtgJ*)6im}ZRaIsNF4Nmtk8!*mb77Lj;1hg4UryYP za4Z%holc|7D|s)W;~4G-0hoF)qw$a#yQ$@Po(Qy?gI{zwiIv`|e%9cxiB) zcH&sQ{|ERN08aYtFtw7|chgOs!=0BRw&qvA9{cX_VQj*vIe#KL-J^(`9T~v4XY;AtNNCQw$={9BDKs*7oavtjL z0-(CPM|dG^>r<+E18KVpoX*9eT;)D~s!_yxJ0V!mNG#9NfB8zw@ja~p>l_2*vU9fQ z$?1E1xC+VZP=4Cne`8)_y9SKR`U8;Yoz4dahs@{Cws^8wJ67J8N_p3#X8xJ8n(>g#`1)OsaFg!X&X?=~}3m0ugWgQ8f)ne=D!Q zZ6|6BkB;&F-5Xn*o3|#LrV8Nek8#(rl>kopWvj`)?>!%HQb*-{({kGMc1W0kKYrH7i=p zi~QiS3+gGIdP=8MJE#jUq-{C>cjb2l2o^Mg1RP=l-Ynut315H5#sA3T5iJ5Y%K#l~!4M@}xki$Uu22jDMj_Q8};3zSN!A=FSIQTC(IOt@-=wK<*L96Ie zf(18!&_atb4M}SPZ5OGvNzg#=aT!y_ zRKuRS*8%DPb%1>fkZc{(_Y^=LYA3mU%oaq=0X!F;+n(MwK#Tm$R#T%c_UZ-Xdu?rn zEr69TX_BpDx?KWKqg`u$Y(E+nI0tb;X0Y= zL56P+LwAmCu@T?V7SnisRjJt9QSL&r;Pwt8wYztHv-0*m zWFmy(9(>+3ZI{CU9DL(+Sb3C8V8@@+wXBMkRZ)~J0ckRJOgC`tU$`il^;hF zMgb}s8#++Y9n2<+`FULsM4DVq%eq62DpLD6vr)OCu_0Rt*iqbbOYiAEV)<(-GdD`Y z)C|CocJjVn4MfcW4E>wPe@&oT?aw=59iSTh23q|H$DYFbqyPW_07*qoM6N<$g1uZV AS^xk5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/loadedbakedpotato.rsi/meta.json b/Resources/Textures/Objects/Food/loadedbakedpotato.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/loadedbakedpotato.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/meat.rsi/icon.png b/Resources/Textures/Objects/Food/meat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..58509e4be51efe1bd1c0182abd043ce205bacb46 GIT binary patch literal 469 zcmV;`0V@89P)3% z*P$0ZD#nO~bjU$CF8AL1Jh_h~B6^9)vs~m#F9ZsKLZA>R1pb4-}E%UlQH#_{HX#7{9U(W10Lvm0f4=m8GtJAreoX6$Mc3*^iCH5c+$X{ zP8k1!Co+LC#+)SpYtcKn2U1Uglw(H9rv|Jve53nThD1_gBPIr#%16p^8X{dF4A)3G zrmcL+I&oRUlR7rw8-3M)u7;P~PU=ZX6|fdPkw|ovPv4y|)9{T^$40x%ZrzW;A;TW9 z7CpfNq&-mK)tZs=w|$SIu_qIl<1&=YFQSs$5f&hC2MT_cr>|w6MS~e^<)j=_qLV4F zIOn(g%O0pOT+?hm0N{B;Ap6swE%0096!4!4oKtfD8WsYDK<)zHruw+2F7-4i00000 LNkvXXu0mjfvgg!p literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/meat.rsi/meta.json b/Resources/Textures/Objects/Food/meat.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/meat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/meat_pizza_slice.rsi/icon.png b/Resources/Textures/Objects/Food/meat_pizza_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..687d9112f0a3150c04b1504a0c704add06f9bd67 GIT binary patch literal 513 zcmV+c0{;DpP)q_A}&rw zLZyR|+6FwOmEs~&G+x966Op5_#P*1uL+c{MoTx}H z*Y;6$gQqp+d~1{#Y*nR;=UQsu==MvqyEn!1)Ctv!4SQz?s&4RP#EsXf5RSyiMYcGI z?vi`ILUUyq2hm+_DH4I8r(n3{2J}o4Z~~CEo8)7w^!ND)kH-M;Iu*9sYT;j~s-F-D zdH_f!w1VN58~D8blhE)qT|;F&AN2zeUsY*+)(pV!o(3K|T(s24d`SNx5cH5tXv{5a zaKB=)U^swe^-nnc-D~Fe;=Gw0gp|ze>rcp%N!D)SFl^+MQ@jB;$%Mw&AGu3!T@>IP zk==~*;*}rQgHDzs8sV8G#ykBJ!V9Dr^yHnA;dt}`$&uo7(^)ysiP&;OF7 ze!vSNq8)Ie^#S99ugrMWJo)mQ;SVDRN!gI35WwdMax7m iQ3s4VVAKJ_)&T$=G+2F~{s@r(0000_-lY}!_4h@n$0GGK)?}wKA){tDX6yE zen3L^56K_nTZ@+*W+&fVg^36NRjr1U=$PY%ZbfmvauB8 z_9G=ah^ahV=^Uku#0

LcCp~wVt$| zKlB#doqP!s5vp2^(#|f~l@!YTO_H-SNOA}r z@PzvJPqz8&oiKpeSzNYOW97qZ3#6*mkmL}n`gvPzJQig!eVy%_+F$^HhqdR%#n>F- zsWHCnw+T;;QF*`Z$m^weENUCS&{UQ~Y1c2o6`&VHuh^~0Gp7MK`0=x^d0zl9*EF!`N_QHgui}Ef)au7jKciDy6P0$OiNC=EF z>?R9Ex{4H%2BL&Y*rH|)bj=w{ow}Xro-Ra*m^wiaW52t@`E!1s=i!0pB>7r=Y-d#4 z+MWO;00}?>kN_kAI}*^*YY^K8(3#A_{`?17wwFS0bqKxHAs%!ZgwA9ZI+I!GtqyU{ zu{mH;JU=8Iy#`^w{c!nV<}2R!Ptaz_Xe1Dl3c2JOWLm-hcJ+O7)RnX)0G-J!)cek( z%BkmMsfh|BG~Kxjc@0E8Z2+jeJs_(g93dQZQ+vfrg%Rwhc5Mh*6QIzyQwm$XJJp!+qO97A#c_3ADz3~EvbD*HnkJJ^72}xP2d^Wg1 z_Awho8c0!VX}UE*@Yz8CW}{0OsxGql=`kS%x<{bG2xOEKil!s9M{)O@rS7zaxy52W z-^iq((Jx{lV(x%aqY?n)-YE**M@TEH2SBwj!K0h4*e}%*_I+b?aG2ckY9i_k)Y>e@ z-rXl{|8auT0n&|i%y`=Amz1{9Z&C5cpxwC?;uNQtXBZot2gtQzJ7dC7aXV}e6SSkkKw^a+* zF0cLA5@Jh$--V9VsSPt3_47R%PZI#%1NVBWh$!^{gwo%+elw;UB;10>Bdv9(JYM|NrtDvI8 zsrvP?9XN9&MI;uby|syJVJ;VB3v@4c zMz>9?y0OMW(cz@A#-fc&{qb%a0FhXfU?NW@n->BI-+_f(L4%-0g`l%R^~|q>r8GbH z#m&-M9>-xx%Mnbdg=Dhg4hT=d;E-DZXsR`8FblZ?-EK3}O9eU_|72fyvrN;ugG?_K zHpN_f@)p-S*UnDCiMtQ+`FxCA4rqx0E%|gwmp1HB$vi+fxk~@U95XXBxNz;P0|1k@ zNyTI`;q`ivB#8&Tej4g5x@$Y)5=DoT57rEsY@Ys!Il|#EvMke??%dr)qz59hP)`?& z@g#PSi^X^n=hzszzCJDtr^slcEB0000}==yW1A!auY=s$YdpgqDYstU9a|dbA6edoOA7nE8t>y zsn8*l4FGU-2zMXcU}<5Ba=8iRCIAbmTgdS#DjOzqNs*u^^KNU0#nd`Q9or4zIs(Hm zob^gR#7y{<%7#fMD>*@_c~E45)I5Cpc+6Z!rL&R`Ay~%HUSk7H)8u6< zLu0c+z1kx1o>S z_E4*T6?`ecD9ptgH}sDHf4i>yGV%Z(zyo-IZve^koH$iulK=n!07*qoM6N<$f>+xd Aq_A}&rw zLZyR|+6FwOmEs~&G+x966Op5_#P*1uL+c{MoTx}H z*Y;6$gQqp+d~1{#Y*nR;=UQsu==MvqyEn!1)Ctv!4SQz?s&4RP#EsXf5RSyiMYcGI z?vi`ILUUyq2hm+_DH4I8r(n3{2J}o4Z~~CEo8)7w^!ND)kH-M;Iu*9sYT;j~s-F-D zdH_f!w1VN58~D8blhE)qT|;F&AN2zeUsY*+)(pV!o(3K|T(s24d`SNx5cH5tXv{5a zaKB=)U^swe^-nnc-D~Fe;=Gw0gp|ze>rcp%N!D)SFl^+MQ@jB;$%Mw&AGu3!T@>IP zk==~*;*}rQgHDzs8sV8G#yfPRmXju6A#~`_B^@#dN0I9yojSRcPWB(Do8!&mD1sp9p$P5=Qe3>D zxP@TX4t6Qz38$om80Zj(k6hwiy~~MmOWyK$yvO(Z<@>&u*U&FCiyYS$O0NZKfm)yz zs0D!QRS!OTVrO?0+`SF=c6H-l2{dLsMo*vF*&u?B1C9Yv3WEsz7MM-AxPj? z6HYEIsV@ctA&KJ-TMDhcSe&f+*`f6L=wUDE#UYXRF^os@~v z0`3?B&odRJ@MhN|j$^Kp_+tqU)&(^FrQsOzSQA!a60co1D z{d0TbT2B2Bltun#OaoUE7#C4WRRSkTG7~(P!2cWze~fB@TA&tKxWF$8zvlY#n?KM1 O0000W`}$s{K(78`+k1k{3X`Bg(%e* zse23%1H=F^z_9|LhAJWhpoS`}xlIxUL>~Z1^C%#kOW=mc*K_|3g0z2*^Yxrqx$%z3 zD#v?C#+utC-DlbIJq6Nyt@aK1dQMP771U6LINU*%&EhCko+Gy~0AB*~giG3a6tg8P zt}fv7@;WM&3X;hr5{X3Du5?`o=iI6H%8vt+@vKG-RaDt5bX^By42!D^C}vBze0voV0KmgLyC_c&*b8qTKsnbBbNc|- zruP5tIMTYl;5z9WDeA~Tl4#+O}W#!{%gsrlvwNh@fc{UGx| zfFOvV+OA<`5CG6Ho1x~R0Knh-K`Uq;(_7gz8fFv2%Aix-YM4zYv2HJ=P=I!jp$k_# ycI?(sje7!U2MJRzui>5n{)LXuA5jbtmHq&A$S6LH?pOf;00004L6i6snl>W~2`U9ODDe}Du-C8V;#m@rk%(n=mObc@tl zm5|to)C~z0WDi&fl1xpqn88i3fr>jqgm9Cy5+@m=R%6 z4U{0XPeEMBvaCBf*LAhld$0)`MzrtcG7PH#P$(4c6_rv_t3feTtH6U>Pz(d3VTiET zgG@$_@^Kg`Z}J@{i|v>c3n+zB4{Ut1DdpRA9LT)x()*Gnx0Vzg=55F1yw#zr2%zKx zOI!BH;f`uke7@`gP|9Z$W7{z?o6&lQ?@yo32Yz1uVlF=oz+!m-MB|NB6SFy>y((bk zl=GIs!teR2p?nIq_xAbTI!@#ol@9=z&4BgY92dz`i^pMfMdLB{bv$nTUw=d?Knn0r0$c++Ke#{0CI?FZ O0000$d$Wm;r#WYRP@+4qE0Dzg^5YBLlS%4TsDYcq&&asQL l03l?{+5IRMfB*y_fER#?YG46fHOl}1002ovPDHLkV1k0hanb+) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/mint.rsi/meta.json b/Resources/Textures/Objects/Food/mint.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/mint.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/mixedcondiments.rsi/icon.png b/Resources/Textures/Objects/Food/mixedcondiments.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..292f33a7c57f97ecb92a6e3fabdc9e14a9a0db1a GIT binary patch literal 309 zcmV-50m}Y~P)&&dr3c0V^FPeL zYhhslcf|Y;^Y7Bt0n`K}I{@bU$B!Sw#V84dp%((w24rQ!-pPGR=wjBUR%B&Mk{xjL z^f9GPYc?`4Fq$wh{67Py{X+be5?vEXcEEr~0eKEU^F0Hj37s84ML?MY{-2@P0VF3v zYg4OxehkNy7()CJg2B@C%LNP!3=GA&MfZ?PLIwr~hNn-Tl4I0RPXnV47!D2~D;GR| z{Fp&RLcKj@B1OZb4_2ELkq- zicbqjY4~`OlXsHrho`Ug*?>Ug^!}Q^M?ZXc=i8?J{r==E8D{R2Rug1DJ+eDIef@rk ziXAr}@F|Nj)C^=$l&Qn#Sy)q+{zXnIwd9!;+@ z`~5XFua*i?vulYN%Zw_;mAy&;P$(1#b}HfG#|;32or-Fw>EPf1fW~|y79vPI8Hj3YYs-ifV7t|#?1bhDLX+OtAx3Ge zQVd}RnjLsI1@!(5_6GBxbA$Hnshe<;{J*gQwmab#e27FZ51~HxX)Mh>&r2@FQq{w1Ff%g)FmxuymGApNn0i@! zQUN4{5CYpyKgmh*JP*sVV$Bl)q|Wo`Nc{ey50ZbSD}R<>1N;UDtuI}2RQ3e`0000< KMNUMnLSTaa?@q-4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/monkeysdelight.rsi/meta.json b/Resources/Textures/Objects/Food/monkeysdelight.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/monkeysdelight.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/monkiesdelightold.rsi/icon.png b/Resources/Textures/Objects/Food/monkiesdelightold.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8d16707ffde17e01268c231916f29e4819d3de71 GIT binary patch literal 443 zcmV;s0Yv_ZP)K_Wj=XUaz&XFhiel(yRIaFaQhy0|0@If&0NhTel{1^LIaI9!)B^e~ zguugokEg2(eA+5EU#a~jAO{_wN`Y#%ciSy^K5+310RZdN9O9@0LI?nW@0B?Yvk5bc zDyIls6KNIN4)`80%2maqTCruo0x0P9rs_>r{$C|%&W_xuAG{{!II3?Q$b<1OH` zVKM_oPeJrru6<9r!Xt3a#Qy}4QZ<;1)ZGJ73M_6+~U-2d^}%*k3jt$u4<$&(xWHyM@O>rvmK?2J4O>FLq&8%|H2G)4uQf|8epL zwfqgs%vLWGW?&Qmqcf})u_5JW;_u4vKl>zG-^NzhEg&jqu^>#YX~$91TbozL`SE(h zDRo3M9C(*`tl*^gl~bEP-MZEG{WAA~FPF2g&R5l6*t=ot=KKX7wQ7}|3><;IzC6G7 z>GJ{I%OSGz{3eY=<`%Q0JM7Yyx)1f|zTd9bJ?Z4>?G_EI|NT}}Vqj8WV2W_c|KRLY Vb^iRdQlKvxJYD@<);T3K0RTM}Y)=3H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/mtearp.rsi/meta.json b/Resources/Textures/Objects/Food/mtearp.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/mtearp.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/muffin.rsi/icon.png b/Resources/Textures/Objects/Food/muffin.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..96fb8c1b1abfedabfa42fefb15fd9d2594fa22c0 GIT binary patch literal 1113 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/mushroomsoup.rsi/meta.json b/Resources/Textures/Objects/Food/mushroomsoup.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/mushroomsoup.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/mysterysoup.rsi/icon.png b/Resources/Textures/Objects/Food/mysterysoup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1daca9525b1da6d7fe268d3c5362fa0dd76fe3d9 GIT binary patch literal 463 zcmV;=0WkiFP)A$|)x`W1u>MaU{b0~SOIK~Zvp zfws_$UE<=Ev?jTC4WUK+Z!h=m-tXPLyBEc~^{`FtZ8iEo00qFxSwR{*HGn?XmGGjn zc4~mEwfg{8&I7Hyc=!^%;MtuN1gQps zQJ3O|YO{v%u=@)nNr~4`)hck!HW*_onTNCI-}x8-Fvj4TZKzsB2q3J1PUm82-(Me~ zP$Vwl z5|vm3y@shcu20T}Ycid|aedM|KyF4<2w7Mm0N(|^cwB(+7&Uu9q8asVBdDCHLO+?{ zfS?H1-*&zeQ6PLwwjl|3AgTL>wMi!=0c5S+|0VnL0N+mu<3b9)VjBPe002ovPDHLk FV1k}_%FzG- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/mysterysoup.rsi/meta.json b/Resources/Textures/Objects/Food/mysterysoup.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/mysterysoup.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/nettlesoup.rsi/icon.png b/Resources/Textures/Objects/Food/nettlesoup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7ba2eb7e1526d4d893c5e66b374d3c418b74f3c0 GIT binary patch literal 508 zcmV$9Af5;UP`~Kd_MDuJ zQ~mwO@qx*WXtJPsRKThNz-fJpwT&16;`)hrBG`?+YnE{@h`4_0R;W^X;ER?6hByL% z{Yu8%-dy3&-4gK|oG=OBaMUwBrAH_%IszW#j{l9N+~wWY5$Fz9Z5A0000i_EtbEpcQcQ0+LHOR6zG-0X8wP;?T^yC5by)TlU{hb_xR!f0000< KMNUMnLSTZ1VVtx8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/oliveoil.rsi/meta.json b/Resources/Textures/Objects/Food/oliveoil.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/oliveoil.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/omelette.rsi/icon.png b/Resources/Textures/Objects/Food/omelette.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..adb11cb2d2479ee41e5bd57d466fcfcd338442b7 GIT binary patch literal 502 zcmV1s?gm7r>c`;13K$met4TnJ6PKseP>13mcVriLa#-yEbG1Pw8WD*dHGG}+W?>X;t5BJbi_;RI&^2?N0If^Nu0=4yoEcyK#rk4%E66Y5KBAx6|XEb zs~^~b4{I4Hyz>{`8RDCDQnd%DXO1Hb--We0<ho!6eQXm(4$n0j&O8yx+V?JRT1! z4FpUAunAdbe%iYp~Ki&hzNo@27*!`ln6l)bqp^- zFNY>w@{PBX175Qy>r!UGRH55Mn+&*gaxu?I2sGR8e^ z*8y|@9Y6=r0d#Xh02P3%#s)yHZOou$t|kMKfJ3azDYSY#xVqX&0~1M5SX)Q(3TH40!}-)Dg#;I z&xI(s3(iM3umgpxY0n!l0|{Up@LX@8Wx&Ir{~^m);a$ifRG)E68=D$XeMYgE&f=sK zi_=eLsvAoxNH{zUz`+qO)@#iygr1SN{{&gm>rK%ZMPClq$x`GGyf`z{ZbP%i4vsxa#C-) zIbid!kV#W&X(PGvlm$7+nVWF{?Eu5>Dd9cgCcB*5fJiT90jTueV#(kIU~%F(sYw}t zXx|`*PPqY?ACf6M-9+SVkk+m^=38%Zoc%%%*{db{V?U;)tK83%MQ`Jq&w*}Y?WH;HVIG@6u2IU6~sIrhu yCd|dAZSQB7RZYd30saK}*V%uMkq+?R0sI6`t_I{oU$i~|0000Xq*K&;6PG+;4Lx$`qgAVtlD{^1pWY`m_uG(@!ug zz9{RWlc2KQ(ddC9!)B2*!<~u_Wl{zvW@#U0zWyBV>DhVk!i^aZ|J>Z1GSj(;!vkoR zxry1aR|-W=jf-+tELn1-;Qc*YuO5ZFjQ-1Q(~pSVd47JLsJP)BunjRZGhOiWCSaia?tCPX(b{0J^w7?;Lqg3-8P zAuik)-DwCSS};(sNP(tw=sPKGXNC^ty6^)qB$&FGyT9lDa?ZKuUMc=8PC1vYtfyN5 z3t#~(fCcy;0QUWEsJpo%vdiz08u}?IV^sSdqh;n0)KK5lMfQzd+D|;w87THV7xK`Y zD5U+=^#t?ZOEfXTQ^qRKeN63W`!PG@l2-78~u=i2ldjp#+NCd}8_&?$~+)ZtBJ8J4P zw$?Lr9D9KB={~xxhSuSGu&{Sr$;^i&o;xjS2Yg7X7f}@^6IjNGhA4H)^d7xVUYVwl z(y2OfmcUe)u1=ke)fgwe{yqD_bPu>39z=eY+{Ow`gV!jw)YIs@jaIB?BUL2V)<YMoq;v1&A)KV`R6`(lOLjno?n&xa+aYH!Qrp=;_}2%vDxD~6t4M_?LA8>J@l8_z zQ#}AM^Q}izP{7&TNLF*=a{n#w?sgukow#>*@JF2ZzeezOdAM_V(bPOJeG5(vu1Ww; zUbcvg26`UOA9wL(R-@f3@it)RLaV{UyYYPuBGVc8SF7xAfd#Mt7NG2aKjBH{I;ESQ Q_5c6?07*qoM6N<$g7qjNM*si- literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/phelmbiscuit.rsi/meta.json b/Resources/Textures/Objects/Food/phelmbiscuit.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/phelmbiscuit.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/pie.rsi/icon.png b/Resources/Textures/Objects/Food/pie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..afdd303971dfd23999879e0ea11ce7d1526a90b2 GIT binary patch literal 587 zcmV-R0<`^!P)Du4s@q^JWYE|xF?0!CymV=y zP$-5BDrAWX#)E2dWQ%|iu_iZC2Z3Tk<;K0>4tgi)=<@%a_Z*O7lQ$DKS<*(+BR~X* z01@DS0K|Xip?S9E$(dqso_4=-b^Vx!<1evw-?df;=GmIJ)#!S1rbt>E`h&>|0CJ{C zru5pIXKUU+0nD>CPcFAfTZfRWV7oh{r6K8?W5Dl%y`4fXw^;|VatSm;^BT7uO4TF< zrH+054qMvu1EnFhyR$Tf^vyB0vqwRxb4AVT_Z&VwXwoXSLYF4A1B>DE{wZvIWM&zD z%bjySe6f-hY-!KG2axwqDOHm+ZaZj(7TS?efDj@$o}C?VIe3IzZi90k1P0eF!ykY0 zf`U@#^4n)-X9obpEwS{jdjm|<Sez=_wyG|f;z=pIm26suQZ)&wrvQwHBjl8e zoPvJOf!=fCmf-z%i$pGgsq3h!8VZQ5`X$p0&C_)qfO5G^B9ZVhu{%sK6H9R7HOc4m z2qA)5tE#$k6RrgO3<8kL(MNyber%SE=Rq$GXRhY%PZ|ENZ{&sErV-x`*Km>>Y ZKLCu{;KijIcYOc=002ovPDHLkV1lHh3bOzJ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/pie.rsi/meta.json b/Resources/Textures/Objects/Food/pie.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/pie.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/icon.png b/Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ee9b19cc12eb73456e6db1da75a026214a7ba4 GIT binary patch literal 469 zcmV;`0V@89P)7UeE9Q^zphiMpA{04gq(u=hl4eglUEa?fBJ9>VC&qc-{gh`HQ2EMiV{d>Ti68_E27$#5`P zg1ejS$Gcq>PuuVic)X~)R$?x<2#;tO{vHTwSYM7w=GVz)(j~)919sx~1g6%&S&MCU zRCMZLjFcZdUhFDj<*Uo6jXo0k64^|eP~?=Bx~-DoV6p@NYe(J1*Q+GH#Syr!hMAQw zV-lW0vY9l8=f=0I{uAIG@o<)8Y_bn~YbTtXgR@qIAKZOg>#_je5gpB9BlJ2upy8Fx zxieCQ+h2$O3Gf*K{OXsN1pwk)sCm?X++_a-C|9faQ7i!xP;tN;8up^fHf#E}00000 LNkvXXu0mjfa>CkE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/meta.json b/Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/pizzamargheritaslice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/plaincake_slice.rsi/icon.png b/Resources/Textures/Objects/Food/plaincake_slice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4981b1d5b38349b3ad8041b1af1de99b3bc6df4e GIT binary patch literal 653 zcmV;80&@L{P)D?7FdIB-t7@5@7`HP#3QSk)FIn(52`S9qQoCLw`VY3=7-93^52Q zU#=RxV0I8fT*llN1e*;MWoDgrb*ICiYTQY1h9 z!qptg>;OR1kqv0Owx?#b#?SJ*euS2G@)HSu>Y(%tk$c|m3gFm*QfJ8mh@3c&9%v&o zHV9J#+ccT6LDuH7lydWAMiRvC4WZnDOn)~U9UInWjfw$Eoh8dK3|@`@fJ4UsXi^mP zVl~5qlQ1=amR{Ut%u*M>QuoQq3G(?ohGF0Y;W`8HTcf;x`;0);kDeuM!Lf-AV&c<8)b9SBEHylrFu&n7v7$C61me5)mPAeTdjn*OqZ+q?z=o zK0=`oqGdl=*L5UGas=471FEVb2m+EM5e|p>+R(@7%V7dhzb*LV#S?SmWaR{*PzV5@ z&z?O=k`M#|RaN%|aNL6AnWR-)TZ=5qn5K!Us!aA?=5|K|#?f}n*$KWkKOqu{Y|Gm; zP9~ES3I*gDdEaetUBjIq03TlWa`@y0T3cK9)|X*i5x`CmK@j%5H%+r_!4B`?v4)U(7)gYccq)?=5BElMY=iMU*K|Zf(~-@ z7MCI^dWFD2MHB)mby4CF-kPL&(}*X%A^4?)0v^XClFH|=Ksr1X*<1M7pZoa>OiH~ju z_xQ4HM|NW93><7-JGvpz4MA>JV0_K;`TIGAau!g-!G-IFh}@>g4oG+^4TW-++{!Tk ze|J9d=U2B6mTtZ9yC<8;alze_D?-%?)&gL53ki5uj_!>YeIV--4L{YbbT=CItcS- zv)Am`sw{6}T2RV_3s4T>>CJ+3xVz4m(&7Lx%%wMK^#-P8Q_KrY%chh$Q9g#sA#8PQ zYV`)&YwmgR!@SaE5D3CoN98_Jz|!2A_CVFCEN@cGi@p#U@_G;mU|Ke{D%r`Cewbtv;|oT?($ j$LKv{y|&3Ecgg3FUK+^qof3 z+I;{p02lxa0R99(kK}|E^+-yb>TVfq+tpUnl4U>T}nSqFf}mtd+Lk# zt}8OS4p~x{QYCbGn6qa*eAg7NjE&;#x_W01-euQGCT>%nC_}y_r7P`~%TdSeP#AR& zarJ^ix!TSbw00aH2E%AFmVlR!zR1eTJ8&y{kx*iUOMv$N!L#R^q#jJ!0raA~39TBKb!gRl#;~2{wgLLF{@p*K0l%?Yx>9&u=XrNNu z@*GZ>vu%K&wnjMG-Gm|%pMU)hj!qWam_4@hjya{zyHUXc9#ZZ9Vas`tU4=HarL(2RVjV*oH zn@#ceN5&?(Kll)H@jk5jA7tBdAgHYoP1PEl{Sp~EIUhD;vM}u@;Par)%I1@HFT0;t zQQmNdmDy1M?9C=d#wHmVn?#cQT)h#)T)Yowzr?^ySwbf^bzoqoOr)nO$i|{*Icndd}d~mdds*B;QoVIY^Hp&3bT>z z`6FSY2^|;>R0@Czx0hh_alGJKOoT0>q~U#1=BIGqbFb_C$=oY<3PoW~7S4W&TAMQA z93*r=XHwDC>rY4wU^!74AG(pTNg|qn9L90y8sIh3biC~Or&VXJVuUKFQZI}Cs%`8jql##=>qx3>q*o}7{?mZNlE z^U~c>1;7!r0RZeYBl7GdDdO?>w3K zmH?iF(3w;i3Qa^;9@BL0`?&ZT$iO#u$k55TJv`6EFFrnaV>YSymI3|_;b?bbKesv$ z(G@`~8spQ8zjOMyoQ1#=H;3i4y*v1i;@bjPi=ehfIKLbQVC`s*9gG2NOZZ;{{MYep e{F42z0saEPGR5SAc-#E|0000kiO%1=Y!_%R?X*rTBUlhEI~Xa2Z3pL;vPFwk&YU25T!>jGPx59E0)! zM59o=Sac(i2-1SoauqEnP@Sy0rfHJju8kpwQpi)BnFe4aHO1=7d7j_Tvb*aALnFL8 zxrii5n5O9+zX8SFu@kTH-!be9(k)+NWZo7g|C`33M z=1V#QODTv&p_pS(8YegaeE|r_Uii=uxK|e$76M6GS z9A@oOhIbp@?S+Gnl$<7L`U$}sFNnwED2jqCd*>2DpsFgmuD1mE+WnMjr!`km6q3m# zmSxo&RTi!>q3n<=G{#*EZ4TBn4coR!=8`R6!nT0lL7K~P9Q=O&FT3t0xKoSs)GWvjQt*fHYabumLl81MmuIG5{+adoYDlAVfsK;>;y(I0?xJoA>bF z8P(T4QpPDM{SY_=4uL}ez&WOo?lQl*vUBL`yAl)7UFLJMy*|M}m(H(Au!cZ)nMclP z0pvLVW1!2|Vy{IFLCArK_b&b)5CYr8LuzO$}f0~s)pIuuE-&BKC zp-^Cb&WbO?M{7}46Wlc61tTi31h>}yM_>*9yi~szScTuha1nt$@ZAD?;kyJR;L!q7 z@F)REc$9!7JW7BC-;kKtx!`M)VP?O1DDJ-@>ohb*;8esGkdEYs(&Pef{(F~ml_wpF P00000NkvXXu0mjfL1wfKzl2cl0zx1w8PSSAq)z77z7!3=z6e6?WrCH7O7B_fD|k{TYAtPD(tW| z$Y3oy$_g44M0VQfN`g|P6eR4@4IJ^bKrLhWLt!ZWF8`M=f4=wS{oj0vZ%`j_m2vG# z(Pso^1ZD)h5LkV`YKzn_3!j%kwESjy0&M5uj?W8$IWG^zVlhgkl5<_HR=u__m3~^sskYpGEqer(k=jqT6hQB+CD3$Bhp zQ6)Q`&JqrX0gz>xZwm{^!JxAO^!t6{=`4yW*>05(@<6ZGbMoPENH7?r+wEdmmPnhi zxYPs9v!)I3`o$yS=`5ycGCw~*vClM3LZJ{pzqZLgd&SE26;}$lGGX(qX(y9O9^b#? z)Z*!^lOJ`qoV>E$Cf6u%c>B}zj-cFGVqC*8CK zTq+^0&^geT4Hl=-vI|4sS~f>h{s2mP V&6_VXKMDW<002ovPDHLkV1ntb0cijL literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/roburger.rsi/meta.json b/Resources/Textures/Objects/Food/roburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/roburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/rofflewaffles.rsi/icon.png b/Resources/Textures/Objects/Food/rofflewaffles.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f69ff80bb12a0cca1c999a994afb6f5a73d19052 GIT binary patch literal 415 zcmV;Q0bu@#P)9C6vlt9ash^7smG`nU!j%C9lDTn^bnP5I^+%+dIlB`y+XER$r0QE2S|heFjREl zNyrcQ@b|sX&wx0799c5%7G+-rtO8a6tAPI?U^53SMd?zQqdSQ|5g78M19yyF0 zsCJbriUO^52sqEvrzl)^uPcB002ov JPDHLkV1ndGyn_G$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/rofflewaffles.rsi/meta.json b/Resources/Textures/Objects/Food/rofflewaffles.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/rofflewaffles.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/rorosoup.rsi/icon.png b/Resources/Textures/Objects/Food/rorosoup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..02b9a61600ed7663adc1323d3bbfccc59126352b GIT binary patch literal 491 zcmV1u36E6g!NC&$$CWvd9jGHbjE)IrG-4zG_fpK)9lOt@#RSh`!6J&*u5GF{y zn-IKAboPOuL&-bwaHUEw^hKhEMl=3dx->w6ugvKpx$VSxvFd2x4Yun!^fMLJ1R&()w1b> zaNUBAb%$kHB2z;;7@*#0q3Rj{_wBAQQ*}+4J5Z{wk(!voR1^WyvF@Caiq@3r$+0O0(^v{#oGP?BlvrzT1=P2=Xq7dJ?mY}PfuzO1l5 zQwV$$0s#g=3>v+fo}B~W_4zT>JQM)@y_Dp1>qO1_%DYK hqmh4%B7l(td;<5Q*=x|6sUZLW002ovPDHLkV1ntu+$jJ6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/rorosoup.rsi/meta.json b/Resources/Textures/Objects/Food/rorosoup.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/rorosoup.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/rottenmeat.rsi/icon.png b/Resources/Textures/Objects/Food/rottenmeat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0591ca235286431363bc49cac00c8b9d8359164b GIT binary patch literal 505 zcmVgLeaI~2IqB1l71Lj+AtL6D)+;^5}mnjjoDh2WwE z6&lrG=8vx7?bWmBJS(u_9ys26d7tO`exB#O_wKa2qdO*P`b5<|01v_&{^x@8stSpcRW-!9;_@g*-DlJibA-0|)C3tF}M)1x5)66Ae;ldBQcU z?;u73v|@4VJecl_UcG@&hovbR~8Ht}j_ zcvPJMd4KUDeYfrf*^^sDFY~hwq@G~WfPf(rHb1I@VTh_N#@;31TX7h13QA^$ zPl_Xe=w&nov0WFO#v+v448hoiefsdej}iwL&w%JT9lYGs%GB%eipZD%(91?IYI zi*sSFUqqo|P747AGirg{p4|rtvlmEHZqtV=nH54V^Ew{GQC3)qT4mGE>c%_(*^^tq vef7Tv_zW_R@Sg(w#wPwX^Z-17i37X?F+JwTFZ4MS00000NkvXXu0mjfQqtuu literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/rottenmeat.rsi/meta.json b/Resources/Textures/Objects/Food/rottenmeat.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/rottenmeat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/rpudding.rsi/icon.png b/Resources/Textures/Objects/Food/rpudding.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd7fda9d4c161d9bddffc90480cc3cca079ec22 GIT binary patch literal 557 zcmV+|0@D47P)Nkl78Bb1J%CXpV=5!#Z$BZcNUg!gzcCcV@@MY!+s-u)i@z8}8#{#f-#b@o$YU)>{s z2p|H80Dc!Bo-a!054*V7;DgDWHw4==QuvLuGeJXVT~m9XsRBY!uNfupWo@)iS}(PG=MTrW#<4$A6)Ef z_A^YowSlk`v|AfA#xCLeKDG6)Y}b~53DN`Lih@+e)0rHt%3HmrB9D!xk%8A~U;vqb zYHm-?1MuPfD*(1@%UuvXdth~~s?Aj+WgZ(%BkY7WHur%Ev$M6rfn&F{Il$>N=eqj$ zO+cjpaQ4Q1fUXqGG=!b#NgV{hJGf_yqu$pH9ig5AU#4+SD}# zGmPFmxu@s3nOSaLxX6p^Uv>uocwW9M&tJQ$zZXA!92y`uGmA5xq}lLz`D}qJhadEu zgn`FULC9ta%gN}vGv0~4+3>W1SvNJvd{+Pkar8)v>C7Q4C!=A)j7z0WR@bV1%|ihw v4RgCG^}Brb1n{@?e?P|&Km-s0{0aR4EFb&*X&cf-00000NkvXXu0mjfsU-hY literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/rpudding.rsi/meta.json b/Resources/Textures/Objects/Food/rpudding.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/rpudding.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/saltshakersmall.rsi/icon.png b/Resources/Textures/Objects/Food/saltshakersmall.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b9696a57ad055f5deb59795017bb3a63602305b9 GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJZJsWUAr*7pPIKfstRUdJ-?y6M zBS%y2ciV~Vlj0UWF;aaX=;HJ)V7Jh$HLvmy=%txiHT^qY?iTX7*6qASNvJpjqW~EF zU~f>~eX%0e?z70Iq;m^p4C1CAw|Mkt*P_1Y1^Lb!(M31B1@?R-wO~ z2P$IcU1nj}aE*x}D{qe8+HgnffTP<#U&~n6D6(mnMZ3h~tiL8aA&NnKOD0S${9VF$ kx2@Xs`|=0|76*oVUmw~^y*S2w*q-0kXgcdmM{hn<(-J>2s<-_QB|&hOq|#^}va zR?;$8R6Pxl21o;>0nz|zfd2tN_cxQ~jHhMc<$Kk4?kgwe?{v0h{7J5iRPFmMGZ$b4hG=XBOsy zd;oN~qRxUi<{|hili;sRRU9DCXht0K zAnGjGJZmu*JYAm>uMq(4k$J*wpc7c<292~c>?jI z0MG8OllPo;0^q1RggEk)TcDSxk=#3<reV4wIW_M+^=FAccl7m^LDXhM3iDK$@5Xp#7>q?{|1L0>?I+G(nSoijQqJaqmlr z;?;2Fj6m180#s}QcL=)1iTb{%?_=+JI8ulzexZI#+?Fgh&7V=(#rr@s!4E|Yz@&$J zL)tz-OJ}_J!P|l+fMySLJG$kPk`f*sulT1XY-sJFzrUaDp6!3ugfR%cUQba`5i>J0 zJZW-j#xAyo)*c222MLG6n&Qg>Bmzm*l2yIXQo0Ys5_N|aknHU2gmKf;(}cre^m=_t b;sCz^7^!KsPfQtY00000NkvXXu0mjfFl~+x literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/sandwich.rsi/meta.json b/Resources/Textures/Objects/Food/sandwich.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/sandwich.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/sandwich_filling.rsi/icon.png b/Resources/Textures/Objects/Food/sandwich_filling.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..50a937cdd347c17773b4f005f04fef25b65a3483 GIT binary patch literal 404 zcmV;F0c-w=P)eg!i74IW^vU>bmZP>2w5};ieHnV2nX)&3e5?DMg;= zIOmX3BBi`qBZO$tPXUTU(Fh^XTDM_JDXg_@w_B{WjK^aD>bgcsNeBV0btlAKKyfIV z*=$A#0q0yBb{k$*)zx^O=Xmc4A+X=?pWA^D0+Y!EV+_09j@4=ffVCEY<#Gu?RaKN_ zNsN)QECEnTJ^DO@M}J1ep=hSlDe!x)A%wg0vn<0oM~sp4`OM;DarYuV1Y8gRqtOVZ y6fwrD_O`l)cLv--x>T3&KLcJ-y+6gh1AYL^sh&k%)DzhN0000}lEHXfjADIB{Gz}KghwIY!M@83QfzkX?i z;Lej@;k$%y%?kA*bT4qFGyrx@p^%klBHh(Tv$6*Q_^l_SPT>jP0=-CbZv`WBpiXc8QO3OEf90Qb2$$(RfEc1@XNJTkJ!yH6c* z2L`QXXC-584+IP34h+gVVfU|!LRRMEWj~zLYIb<_=I3@zxGVuMFBIhEnBQ>}d?SHn nnN4fgfwvO)AF=aqfe^R{u)Vi^89V0<00000NkvXXu0mjf)k4_& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/sandwich_top.rsi/meta.json b/Resources/Textures/Objects/Food/sandwich_top.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/sandwich_top.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/sausage.rsi/icon.png b/Resources/Textures/Objects/Food/sausage.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ec1150001067125250cfd202b95441dad2ce0ae9 GIT binary patch literal 358 zcmV-s0h#`ZP)9p26Uoh>fmy5u3meIAV6z(hN+z3Mz-DyLX=1Y&s2H3<1CvD6^x|>cfe0s? zyWht6v$5y7_jvCx?u$F>Oruu17SIB!1rEFElMeRzay5?c4Ha!jz;3St0JvS=3_l3t z>)B*&G*yCmH~{q9E%-r**<@`1KxqNCyjfs21pit<2F(MD@{s`l5%JI>U_S^kk_nt2 z^CtjYPshYdB4AN4!TH1j1UFp|mSf|3I+hx#49?DfLVyxEgVHb=T$IE@WV#+q*8>1p zL%VV~Kl+qF)yabc+!V0ouL_(6PYF~B%>xSsOxHu?4C1p&FeR}WQ7cmT^*{zJ3S}dl z0;)h(`;>vQNo~heh5dG;1eh!E>-_gGnHJCjTHuqs0N5&xQbB0d(%Pg?)~2X|K33yc`w;zxI4{m0W5$8umBdo0$6~*0I+AevE8j} z;jegAlmXxc1xAyYswgp43*?P-wgoU!;Oyy81B5amlnKIjHo+4cj1&;QOI4IuTL9$M3*V*EEFye&LmksF z?t!lrT|6J@Sf(7D2nM}50F`DD6=k_P!9$=;dcsJ7erLRK(NcX{-3ZErGGR7U++KM! zf-<8?Od}{8751Ys?03eF@LdMIIV#HXDY$!l&nLt*j4k*MV!dv6>$)mRctL?!rohS) zllYZ~Xx$&NOqr?$r|0|3hRW!yWB-gSz`qCh07OK6CyM#)&Hw-a07*qoM6N<$f--xn AxBvhE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/shandp.rsi/meta.json b/Resources/Textures/Objects/Food/shandp.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/shandp.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/skrellsnacks.rsi/icon.png b/Resources/Textures/Objects/Food/skrellsnacks.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e06bcc5676165741eface48e423f5cb290e810 GIT binary patch literal 325 zcmV-L0lNN)P)Zq}6ox;l?2+IK^}r=Oa074MJ#&E^pci22;t?sEZ(u20B7<{*EJ!^;IyoW%WYZ2A z>VE{1i!Lw#FXZ`&4tuIm=xJAa;wKLgZ< z`ev=gIY-kp_v=*8&r(XNs*2W*0tDwuDPZn&&AGKU+B^vWpe)PTT5#O={VX<)V^VY2 zunE2Qc<+B5UsKWqLSZ2U-g|~&Kx@tAxaVXHQc8pn_uQ0kACxqKP<(oSIqrG?_sfru1d;$^u9o6TspuJy46wATopY-(h#x>fMgA+!02v?y{Cj{O XlZIq&s1PgF00000NkvXXu0mjfzv+kf literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/skrellsnacks.rsi/meta.json b/Resources/Textures/Objects/Food/skrellsnacks.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/skrellsnacks.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/sosjerky.rsi/icon.png b/Resources/Textures/Objects/Food/sosjerky.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b2f5424fb19be48dfbca3de44a68aaaf71a73898 GIT binary patch literal 429 zcmV;e0aE^nP)iuE7=|AjHy50oni!cnsc?2~j3Yn59oxoVWNmcs4{$Wb-NU$bXlz`W>e7+W0gY6X za%W5Ez?%@@yDz-YeILhR1Wy5Z>MB?F0-yjW0R96&NhQghxRDS7DJ5y=sW&xr0F1OR zp*wM-WqHYH;iNw7@y@6H+17$cZGoyez-ZyHEH72P0mT*oJUD=q@r@AQ2lw%3<0Sr< z07!Xm{8L;}>Z?GAV+Eu<9?5v70H+YiS^ok;uLVi7WHnBKG64_*uhD`=3%vWY;mJkz z8UX#KO=-OXVC(Mys5vI}iqCvz(f2ys`m5{!4ysptwpet!8vy1ri<)B+YFo!rehJ6x z6=Bon{llS#$$VzT*N#cpv>C7UXRift(AM991D)s<>0Fd4FR=p$tE+OCDrXDDRp3%C$E1Uhy}*FyL1Sqdoz zM^5CyU<*sN!6Ds~Zz@G=4 zogYPEGh7R@5+H1bk?Xp|&TTt(xOA@xm3*PVO^^i^7jZB&`H?RH;7lgCuFE=zwF%^M zIhabmert0-mq!z7+<2MDO^{``Ql#$$SiMUCvW|^u*}pXIl7O!32q8E;KH*@$fhJU> z=X2G)LV7-ZCqNS_S;wY78k2Qws^wCA{$Rhs%Xc3ULZIvVN`SRf&}nocMNz2N>v*1r zX_|a``vw53cS-s2liwUy%OxJwsvI7lAcUaP=`fqksJH7YCnC`p-UdlhNg6LJ(VK87 zbTPY#6h%P@@z;Hx=Ou2u5x}1y|FX9JF-ieafS)@T{q{yDdu#vz002ovPDHLkV1n1j B{civO literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/soydope.rsi/meta.json b/Resources/Textures/Objects/Food/soydope.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/soydope.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/soylent_green.rsi/icon.png b/Resources/Textures/Objects/Food/soylent_green.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1d0896814c3c443f669bf2eecc4d2f637b41042f GIT binary patch literal 440 zcmV;p0Z0CcP)Zq}6ox-nxd21NJ?fzxp^5~`723g^qEaqVsd0x~0cGeJvXFaZ$`Rbbm>6neXQBiD z!V^6E|KIzc0de`dFejd7WnTm=0u}*_fd3$1^+<9faudthnu~a3&*Tm?A~z^N0TOBg zv4YJxF4Bic`4|l-9Py4|bqG@6t{=%92ZNl_^)Hmotbx+#?TmAojK!R6mu| zRbQ67yW}uB1=XQ4@1OTK4^CeIDdgaFpgL40%QA|hi0__&6!Km`b*LVCf2Sfw-V2x$ iv;Pk)0u}+Y3-|?HZlXxw#i%a;0000+%5(&gQ%gaT^;V7CLcM|G)O`Qp z*}`xJ?`S6KYiOc++37DzGm{aS+wGTLT#B>Z`vkQn7C>|!w6lM40odMDIKQx1U1>fI zN1|VAB3rOr`iP^CQOSpj2U%bROjOUf3sD@Ge8HCWmfeT@0XRHb^4E^Hjx!KY0Tb1e z3hyiyKz_<~_1&KOhjcWC`IP|#*TjyOFX&}Tfy*@xuxWCqWV_Fs_4t-`I zYU(@78Wsc1vWJO7PYd+2?w#(1PrXseN1hC$l8+@09Tm{ax+lvrnx=(r9@pZC`v7`b sk9FA$YEj}oK$4dD|3C_m0wfOb4PEc^X6Hc}4gdfE07*qoM6N<$f^@pq`Tzg` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/soylent_yellow.rsi/meta.json b/Resources/Textures/Objects/Food/soylent_yellow.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/soylent_yellow.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/soysauce.rsi/icon.png b/Resources/Textures/Objects/Food/soysauce.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..141f42ef5ce2e20eea2c7340c954f8e313b3a9e5 GIT binary patch literal 294 zcmV+>0oneEP)#o)KGk|JrJPZeWpz#z4vIC&rzRl{c(;@-5TH~$@lAZ$O z%z~*7B8Uut#NYtTF2Eu9u3o{>@N&U!!@DuyYK^Ydcw+_!;1uCZk52gGUHeLY5s?8z zC%lrdXg?Vq!Ehu$2a*D;*&oGCLtYLf1=zDcij#(X9GE1xmpB(PX&Odr)eK@j2I8yj s?dhq=8pm5XrUd>7;G4>@2>%V>300&_t7|rQl>h($07*qoM6N<$g6(d6l>h($ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/soysauce.rsi/meta.json b/Resources/Textures/Objects/Food/soysauce.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/soysauce.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/space_twinkie.rsi/icon.png b/Resources/Textures/Objects/Food/space_twinkie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0d5d9e4657c89d6dd038158ce9c3d290c9c95c1a GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJNuDl_Ar*6yYb+nD9(G__#<;ci z3gcoviP8frnB8OzUNr==8yFaDn6S$6jM682yPx6e(~K{jVN4R6_+RqJ8O~LTM+IHn z84afy*I1oAa3I~!V9Er>Kt%@g50^dvaDDym^rHLRkz4*wA_9+p{|;@D?POaqo%_d` zhtnocV(Z{%RH}8$(o2xZoz`!a0Jb)Roq=J6zj|%+gNCg@*D-jy`njxgN@xNAK!8fG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/space_twinkie.rsi/meta.json b/Resources/Textures/Objects/Food/space_twinkie.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/space_twinkie.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/spacylibertyduff.rsi/icon.png b/Resources/Textures/Objects/Food/spacylibertyduff.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4b132f3f38a024ec464b2316dc6314dead496118 GIT binary patch literal 3480 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 NOLJSZmnI$w{{~!1iI)HX literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/spacylibertyduff.rsi/meta.json b/Resources/Textures/Objects/Food/spacylibertyduff.rsi/meta.json new file mode 100644 index 0000000000..8caffd9102 --- /dev/null +++ b/Resources/Textures/Objects/Food/spacylibertyduff.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1, "delays": [[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/spaghetti.rsi/icon.png b/Resources/Textures/Objects/Food/spaghetti.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3957e4c775cf008c1201cb2193446d7d17cd07 GIT binary patch literal 650 zcmV;50(Jd~P)gDS`S2 zTr;@^H%YRDR@y}()HIjoFtu1Uz7F=zYjW2l&0RD2P6a1jZw+nU63w$?_7P06wC+e*9RvcWeKqwOtA>hl@q%B_F+h?@pH?H+S zC=)UFb?oU2TRaf>*4C7+1St4YqNtz!Z?1`|!OUisQoec)m&c~swxI6-1z$=$eDau~ zwMB}$fViLJ&c6`vv+o>n=(7oH6U)N-hNXO!@ai^-EJ3abaX$dZZ&z$_=%WI5_;~ad z!Hos862@}EFCD;&pDwMNxKV0zJAlKv14sN)0a|fImiW1nHSzM^K6UMgN;=UI?>T@S zPOeEZ2-?Dii8tzBx&Ql3M;v-Mh@5cZeu}zaXl;?YcEtGYA+FcD!=cLx^n`zS*)`r( zfYxrWq!XwbuHYR5IE|W;nRf-hFhIeVvc;{V)-UcDz&Kv5_{?VesP&73%@l+(5fRn} z<+Han@XxR2UB{v2F0fvyMO{!yC(f1KZ5%9HVBkevK(2`*ON3XqJ;lN1HVkDVLe(I- z(>~|DoN(Q)wkABBJCKq=P$&InB~F*tJ;7}QSVI)={e7&+k|(%h03(DVOXg=U@CyT2 kgLs8^4B$21F~C)u5E5(xXo=o%l$eGqd&7v2)z8hw;z0;-}m)=cpiQ~P4H2W{VeUi zPFDdcKn17(6`%rC0HE7Tvutcr4xO1K6P?ICZ!7~4TpB?L5X;k=y#h4F{*aUpyij(A zetP==qt1-3REH2yX}g87s*iNwIZ^)t-(1f)oSiQUQ!oM9*rt@%51}s~Bomz=xHQ6% zlQ(|riLH&YxjxRelpFven_1dRdX@JYZ$Zee3CMn}B3&o2HeDt9Wd!$Jn)BD+A=h65 zur_-aA#%OK+(Q@kEN|o(sSLXiI1- zTj1kp2LSPnEXU5>B;p<=o%9i0aicep&d0pv|!!SfmWaT~SOmH2ptSnWbeNJKX{a_Tm5r2|n0rRH&>fu-DkI0 z+bu*kvuwvB99#oWDOj5wtV}xbg`wxpBDK|(n2ZMI7FXGll2%V$-ZN0}8vY8|OBEWt zQw6W#&I_ibM==P2$teEWpGwQ31{V$Z6Y{@n-@gSaKn45&rRx3n$*GR^00000NkvXX Hu0mjf9D_8? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/spaghettiboiled.rsi/meta.json b/Resources/Textures/Objects/Food/spaghettiboiled.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/spaghettiboiled.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/spellburger.rsi/icon.png b/Resources/Textures/Objects/Food/spellburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3042a0f4f7243317a324a66beb986b38d7e0cda3 GIT binary patch literal 797 zcmV+&1LFLNP)?wz&x;>qeL_X(#sYGz=jb?FHq1 z{#>yg+vFfpVVarjIEVtyJ%Co-{p3%dVuSP*Tk$Kl z;umb<3;A=GxK-ol>e14Cy#R)`06-ZnjgNMm!RJ}LE{_StSiHXiL{wR{cR^n-uq3$G z_h->Q723O25FqHtN)c5SgJaOj^F>2`<$|vCkI#-rkr?&aficvCg#X8Uy{5Ykbl5ez1B-zJogvb_2?CuV zJc`D}+jbPcMu%O$I2h;!tPlZ$}MWf3FKx?-KK%>h=DwQ%U4ko%`AS{cUk6!gSv~v% bKPKM+zF8=8ryH!Y00000NkvXXu0mjf6mek+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/spellburger.rsi/meta.json b/Resources/Textures/Objects/Food/spellburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/spellburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/spellburgerold.rsi/icon.png b/Resources/Textures/Objects/Food/spellburgerold.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2948aa0035565b3188f71027b9b81b8c5e90dd GIT binary patch literal 804 zcmV+<1Ka$GP) z->m4xd>Vl5$CHwoy>+!9KWy#8+CGT2eGvEjlx}9fr55D+uFAFV9|71i8KYtcE+Q}H z)5s2=DHkdda1r@_A$u&sVwHtsRh0q*`-Lofzqa`{`b+};tpmpCFN2v*sJaWPg((52 zPjBS^pt%Q&&5QMho0gezQ!NOBHDFvcvcq@on^A-on-_qVnQ>i`n~uMiOGjA;-1AfV zVQU|DZYACWYdbO~HcV)B#o(VaQdQ8#{dZSCLB!^p8Nu zr3yJ9R09i&Q=gcCyKN_Ph8Tb)yRgu7=0)7`Y zuFG}+g5wfU8qfCH@h2p{^xA?Ic>lI(a;V^kBpy+v zXe>rHmpdkp#$pwbS0n%+n~aODnMxqv_HElt!~88fK>00002yMD<>_UPr1Z_srm3Li?l0fL|YOV_%T~tJ0&>}MW zxGNQFK|$2+gi4}bWDQMCu(2jsr0L$(P8VZS;x#P+XbT+i9YrcRKR5iZ>J5pwhMW0C|mn!tXMOIVYMHT#o-ifC!@IRFg%qu=)Q0a z%8!tmx|{AI`U2!!NF+(jjg#5maUhQ^sfgj90Mu5acyzpwpaKJDtoQ>lx(6c=f5x>F zM+qv>f8GW_@9k)M?cWK2Y%K?=iPOHrG?qZ6FOKvur3sR=lKHo}h3rUkc6jJM`-!O5TU@)J~GUk!A0wvmW^AUynz()uQnx%uR7En?#NWxN9dmmO@DG}!)5Xm-Z|G^d~$ z!jZ@%W|K^@t$=V@h~((aY?na=T0H%TvL1%U1ns^je3|{qtNWK28cS!-xqWFW&F(m6 zlgvnDQp;-P47{nB60#&wQ&q~sVuI=D4DvuVFFy<1yYiU*p5)Yxd0cjAEP;aR2E2hG zTy|*jhbgudU^dAp;RzC|N?pXRnSoVr!E%tl(Q3vSX@+pQG6%d?BSMxW%qHoN`xh3~ pH5soN;CGPq*5-SRbb$X3;1^z}`C2w^wxR$4002ovPDHLkV1i4MElmIb literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/spesslaw.rsi/meta.json b/Resources/Textures/Objects/Food/spesslaw.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/spesslaw.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/stew.rsi/icon.png b/Resources/Textures/Objects/Food/stew.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d324b57a31afebe0465ffce1a6de8a0cdcb3326a GIT binary patch literal 635 zcmV->0)+jEP)lTN0g?vQ7>*XRDfd+xO~Kbx~ld$d#a2Y?5F{{i6fHl2I@ z-nwYti;owjzXnJOb~+tas}<#PS()bfW&xE{7g6YJSyoJBI-PQOeXgCAV;!gJY};0X zqyT#T-rBM(T-U`kO`d)G5^I0^=2euROm1m55134D0cbW40Js|6WCGc?9fL?MK@bGE zuFK)|IWHGaXi9>i=uvAAfJSSN;dlels4Rgc!|`1Va^utIr}G=fIwlB$SX=HAyyrU~ z-n{_e*Rn#RvW!x>4q!OGlR!3YVT7(mH+P$iFu(zjMdE_>dOgbf zzK`d5De+7I0Mj(1ybvOqgq2pW z*=&}14`{Dqm8d*;5+vEKGcABDAn%8ykPMm!w>3a0sw(HrvS<_vy@v8Yd265CFRK1Y z%YBTJ&T^PlaH_J-3U5L=^r{)lR;^Z}HXV@iCIt1{Zx}{uIg$e5@l~1XDCWKeNyj1| zlB9_4U!Z)Bb=2GR)Ah~W14X}8I?Ed;6X3qYb>pRu;e8A1#@_k2Jo6a-E8BSl{s3B8 VOI(jKOez2X002ovPDHLkV1n|=CMo~` literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/stew.rsi/meta.json b/Resources/Textures/Objects/Food/stew.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/stew.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/stewedsoymeat.rsi/icon.png b/Resources/Textures/Objects/Food/stewedsoymeat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d14f83794abfc7afd440f3ad38429e480c0e7f4f GIT binary patch literal 638 zcmV-^0)hRBP)f^LHN*?!7gaNedHtAfRvsqOXFOG2D*UzSY zRa_3gb^Q|nubL2FA3o*9X@${nfXMg+>|3l@3b~am!$AcA`@Ssz`d;?+1k!Z`_Pi}# zzX=L0mE_B0goe*gWPAcGm84icU|?vF;h;h^9%E*&#FLwTHtt36stIAw+g-=v>hvXR zZdNuH(X!hZ?@|Edwn{8sg69WH%Lka9i@+%#>{}SR3BcsiCbBFaR@$K>Z98Dk+oD>n zQmt0mI(L_JF3-$fiD*2=m6?&2c+(F|g)wxKbS{sfn>2iW0E)}EXy)nEjgBLbWtmE) z!lwt*xUD?Tc0o%eTkE6Y0IO@O?0$1|`^Gg!!vV~7ojd&{+*Td{LpP~ZDy=T`3}6@r zk|d$3Dr1Q?qVX8Ba}kQ=1KzJ>85kNQZGGpAx1Z}-9W9l_&`pMe3d?dBfQHY{SYi!T zRgokK!!X(cbUXu@3mM_@cnF0;)M_;fg~PZHj~4(i*L4C@hhoi&8$Lg7EB}*lCX=CF zuM_$lYI_Dc0<;796YD12w66C+Gl5pugvaASlBD0p*J`z%gnI_~736Q*$$g9*fd2;I Y2RY~Yz&hNz2><{907*qoM6N<$g6e@AnE(I) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/stewedsoymeat.rsi/meta.json b/Resources/Textures/Objects/Food/stewedsoymeat.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/stewedsoymeat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/stuffing.rsi/icon.png b/Resources/Textures/Objects/Food/stuffing.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5a11ff08250475c4774dcfd08ae8d6e719e428ec GIT binary patch literal 972 zcmV;-12g=IP)NS8GKn)sn85RhEEX#PVhhdEYxt@SqbqY)gyA>Pbd9rTK49Pe(=1*e zC46uhUN`elq$&v!97a-aG`GTN~;2U?Ec*aptNBHrjaAANg) zTrS7Oj*B}Ws+K@e6nf5GP7i*+ze1}jfU0Ty^uq?f-k4x-s{^GaLY%@* z!TgU8Np|1m#ZW7U-w)F+HUS8~lI3I&PMkZ;%vWQ4FK(ALKIG%2Ig8oIl%PS-xE829OMNGueGy2G|uuEbiUBV+;`&?mtnmzL|{^5P3qv? zga$vSz`n(Ue3aP!6?_X7U!XdGWm)__(objXLy|Y=>FUsl9ZgeQb(x(?Vb7#U2cf9@ z2;UfI@3AONZ`2X~GKON!;8`-aKig!*TIWC(RIif(GfvSdJ{f?|ClQaw>Fq5c=@Oq0 zdK3yT)7-oVx9&|q5KscFJzV2fy^NAn;Nz{*Wu{^@wl-1PD3Q%%nH4SAj!pd1CA#C? zm13#ERK-dp62dOpLI@%Hdi%t78yFba;a^T%-r*+_JLCKN`h^fe%qNqgr>93eu2uCD z=JRbw5kF$ zHa0vGvu&HCX%Y%G(-w&UkTgw7w!_h9kKnrQHZTcY+X4?XG?LBbaow%^<+4DOpAev2 z7JM>1Oj{&EE?)p35{ZyBO){Ab0P;qLh z;oo-k{#7B%3bG>65Dc=pnL$-GGMP;b!=P9!qNy5g$)h0{M3yByuS7my!0*?QWf{kD uP!yF5PgS%D^4~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/stuffing.rsi/meta.json b/Resources/Textures/Objects/Food/stuffing.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/stuffing.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/sugar.rsi/icon.png b/Resources/Textures/Objects/Food/sugar.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c247ab0d066e78666d493855622220abddc6a5b7 GIT binary patch literal 323 zcmV-J0lfZ+P)4VQ3uZci9efi-wpmj4kj!Luy;y?_ax=lR!MX8{+uvw$nyNq_=wEkFgg z5}<@z2~fhV1TgTeMQaNDYPk5w^nH&mF%O3QH_eMH=QD;`HTjv+gZU6)wOS}KNFMIipfsKu=ZLW2B(4x6T>;cR?JD4L*TrBzh zEtid(n>)l&`jgB7i(3kkr3Y3pyU7~7Y6xWSu}WAV%fN7fLwSRJVh}3{eD{NUo!72q9 z43sTn0Rb**q!AbO%sk|Q^WQX^&RzORkuT4edoOqI`|i$qIDepNc*AzOj0M97tMNd< z>*o-k?$+_13)|Vdra~;!8SsYfbQSS5tYe?QH52j5lzhKalID?DFup`z;wn5m*~GHGFdv55P3MyY7z0o#v}u7H8iz(5d;Qo24QlN8St zPkysj56Fxl_d?hccmoUR>SvDS@0*0t40s2Mai|SeJSo42p`h9n%O-6388wMj?-m94) zT}>K{(kHm7360aRAY3768MpnI_`+;QG!n3L^1j&JaznaPRqL~i-yE;84xBAiX|^F8 zyNXUv)Ux9EO5lf!qTgCKqg5u1W{UZh7BjyB>6Gulybv|213;1Q@~`9HdOR!(eFND`+DQ)cOQW=J*6wa zF<%0s8TcBt)8Imjs2MUW+mIC`^pYKQ);I&8|Gjj@>Z(|YV3guqI~;Y)#x>dv$DuEuS|&oJvA9To$)(RroRPsY~T!*^K#nt5&jj+9b|V|=YZ&Dpa6 z-ZkOJGA7c#Y`d@l$XIL5>&FCP0ZfR&*cgCe2r)pC>sLG>vLMRN0Wvox#FP^V#Z0j( zpuOKpOO>D*lcK!J62t>G*@S(6gJqewXJkO_Nxsvb6MGND5Zs((t=&C_0RS-fTVC@H nAZ3>z_u*M;ejN*d00_Vnw~%B22n;FL00000NkvXXu0mjfAG&pU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/syndi_cakes.rsi/meta.json b/Resources/Textures/Objects/Food/syndi_cakes.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/syndi_cakes.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/taco.rsi/icon.png b/Resources/Textures/Objects/Food/taco.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b8a1b2966779bb07941f67ab1ec66d8953e0e65f GIT binary patch literal 1233 zcmV;?1TOoDP)z zS!i5k6vuyenSC-#l4fa=cG{$k)?%A3vBg$V>Q+Kaib7umMFc4X1O;F9LGYyy5>dei zSMb5wNYzKBlrGb0HE4}pVw-J}$!y6inVCEH&b^-xZK4m7Oq!HFc;G(W!})&v&v(vu zjuihm&iyp`zMg)!08hLV+H&6jdi%RYptfPCx4&Dg27p?v%;V=XSa_t!GU6y(va zPR1r;->w<}z~(po0BF`UwjBj>aW}Iw1q{PLmSsxC0uHx_vTpEjdlR8`%~V^aRi|L* z4=Qsdg;E+G@6q{r@CK$)2Ega{69@)TRF#fU3%jG=W0~=bXclfbV zGND18=tz|7W0M$q8C6x0C5b?=7MtBkdy|h^pS!Bq)hSTp<+ErOyY9sqveEg7ia$5U z*~m@i@_8)F!Zb}BPAAD^3RzUx*0Gkx#x+Z(Vo3l=f~#4L-2n%(B8dG|X4CU7CTpDF zNiaAxjxY@rMFAo32Lc4^>gjA-Lq|*P$`ud-rV<%0%xa`n3+a{{Jt}kjm>a9d&6&%i zOvlqyDit(ML)Ud=Ma8sC95&m^0RVKZEN&(8T+CWDIRjk&+&~(>-Tp&cGo1hRCYT15 zN`+iDOKfryRZ&Q1iz^4X{m@8KdN#+oebaoOSC~ji{PlaDw-v}g=H-{GQKk}UTrL+* zmkXQSj&4-g^*}2fq1Hw3LDgkwR!nlAnw;GmBvbv^DrKEo)^8%&Q;-Br^p#;baUOt!onYbf@CsZ{ZDq1}0ujA~8d0t8WBlFc;NxW_+4x7SoG__>BWdRKIMI-^F(>c!1 z7C2L~6OB7j!=(kEOd(52(@_+eTwzi5mk%&+dRe!o(|LZ(7)*NV2&WC+JLu+gcocx} zm7AP8cWvRVSXF>KWhp0S^4PT!!sFp&+0V&K`2`oDKi;B5; v_xrc4%5FH&7m$)?je%woSE)!!gSMsA;^5-ht%hjGkkNusEVN4_SV1V_qD!_8MF(|K zQ^ydbs1+d@ghHWzC>Bn59x*|r%XN^miJJQEj|577^KqZ=y}QRdMN4Q@a&A;quLe{D zt|K6tjvLW*+^9%EG#xj3Rh3>;V9rdUf*~VfWg6_bcF2y6W@6MlI7Xh z8UF3-7Yg}2j~{iGM3fuF&S6xH-)T98QyGmw-!O%I9{o_@Y4TFv(7?jNBDKC&-aVOA zF1wfI6)46Bo=@RdUjfj4*T?SKTnYa3$9I6TI6#dP93Y!~i`VM`z~{+vs|ert_=)-8 zQdt}zROaulF=4wn{9_vyt4)gl{@#l0aoV^)4*E^+L-pY00000NkvXXu0mjf Du89L8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/tastybread.rsi/meta.json b/Resources/Textures/Objects/Food/tastybread.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/tastybread.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/toastedsandwich.rsi/icon.png b/Resources/Textures/Objects/Food/toastedsandwich.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..612711d705df500fc754211ca0d0b8e69012209f GIT binary patch literal 814 zcmV+}1JV46P)A-fXayEm)4Jo1{WmjFjvULK#vAn-_x!1U(rY6pFA8ogz%AgBP)r2O~O2 z;39}9DZI_JBsFjg=VVR?&UB0E-r3vXZNHq`bp3%k?0eb!?0uf+`}w`kGv4Ja^)2x) zmHSWKvjACuEI<|@3y=l)9{@DJQ?%edr@S8dEaJ1Zhl$6{t?rz^4zSg*{K{pbZZDdR z5CCSY0k_+W#UzPbZ{$v}UZ5^o-t&l9Ahu`(%laKfJu?`gcaD@a;^ zi1~ujd-EeF%C+LVCYwoI4?BOFg-u3u{s46~>iwRfDa=-bxIgEY(?X;ifw8__>9nin zK2H#{)j*TY#IVy(*kr_RE1>SYKB2||IOaFe`2%z`Rx&u@r>v}mx34}BkhSCq3E-oy2u7WTKsZKT%*)rcBD5qbYjoDOiUvlV28&6;=Lsg|Z z5{-Zap!nx@#d85}^d3-8p2B=bfR~RBDYcz709dLU2rs_iPV@U6Prp@H?;R7@O)XBI z-(AZ5R{-#FMN3bMlj?&2PHsJ@q1$06ygH9=e=*_Jc>vZ!9`@?3tcN^oYD!oSegj~n z+sVWVyjg_0!tImK007j&;l&8$`=IN(ld)wLs9X=O5R5JJBVPCsFL1gL>_rIkOJ(|m zk!)Amm(iK~PXV=oYfUu+&`a>dlRgHx_Ab%9b#Oc_K-wJ`w~Q+l6%{5 saaje)&(BYpx3RH-EXzoel#w~WcU^sAA{d746aWAK07*qoM6N<$g7jp3`v3p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/toastedsandwich.rsi/meta.json b/Resources/Textures/Objects/Food/toastedsandwich.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/toastedsandwich.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/tofu.rsi/icon.png b/Resources/Textures/Objects/Food/tofu.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..02dbba3fdc599a3b353312f1ae37b69ed2894bb9 GIT binary patch literal 388 zcmV-~0ek+5P)v1(saqf8+ZT?z=Fhtuw;O!6RZV8>H<1Q zqEi}T*vxERn)!ZSzVu5gCfy0AJe8Anw*pqc3RnRvU& zl%i4z08!93PQfUk6Gb1g8#D8`Eq&kBcezYy0i_b6@N-vOjG@xoX7=`*0D_SBu@V81J}R0CLMY>B`j-h(77^`Z$67MRMwMUf&wO^Sz2wA85+iCRa|I zIQ7AC0&*sa!Vz+M!PVu9flbXQ903r8BZkAkSif)$*LPjx9_LM3t+}S0HuqvoYgj1o i-{<7t0xMtztiU%z7sx>28{QTG00004b@5aY2^6x@$wx z@Aw8vu{|Er1xe|^L7|!g1G%-;u;kqnt*p}K;h`C9z0LR^zMpIBJojK#Z18twz6XUYhU-x07j!3&*CDj!5mofBCYRGS~sohfbJob zo}X34E34E8%dY?!p50`o?XF}W^84}nuyijjnQaEEbKrm?9ldp9C!wbxX-y{XFwNVBN)MA zGN=%{iF%sMTGc*}8>_t=pU17mq4h~E);`^mm$8)y8^H*MQx9|^c}cx<(+U4LXwZGjtC|s`8Z@L zP|>2!f(ggy3)O)v1!;Xp6PLp=s_%~`t24O+;j07G*4EMxn)-Q7Z)@2k2v0R^1d>*$dFxn>s zo9-&WZuKLGg)RaCH(R59DXWJ=UPf^U`ANNy82dbK98MRZ^~tov{|F!%6hI=_KLt3< jIPyQD3_u3p$N_!;xRpZMiN2z600000NkvXXu0mjfCxUzT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/tofubreadslice.rsi/meta.json b/Resources/Textures/Objects/Food/tofubreadslice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/tofubreadslice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/tofuburger.rsi/icon.png b/Resources/Textures/Objects/Food/tofuburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..24b042aac4e3aada1f4873aa6606b09ddd6c4cfa GIT binary patch literal 463 zcmV;=0WkiFP)iVlSkx^$bk703;Oa8R3@n~NZ{w53b66gVYFP)^Zsa4oq+ z5}~y9M9 zSe@miR4JfOYWF48w{!qze0pHl;~^k1T5}5Gqh3a-Qb3<(+>GkP{EL*nhGR%5Fs@jx~zlOaeo5R4omnY+TnnW=5ZP2*P6)RQ@5 zKi)nmM-z*X6A+95V(|%IS_d0k81>`Mcv&ol$GV?S0Gt3|kpP+ka02`Q{E-5nDG-aW znKB)mU}R#Dx?ulgOV1qbK@!t;lPS4czrpq8Bkl?xq)s4p!En$=uhu|0E#dWh9nh4i zxtx~Jt2Hnj^eM*za4?8A*8qMe204EYd8AF|&~6OfmuIp$;BXL0yixtXMXL!^yUqp? z8Gu2sXEqlA!<5C+M)6-TvtC4V0W2z9{~z!GJOI}LegIlxp$`cxX>9-i002ovPDHLk FV1jd6#_j+B literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/tofuburger.rsi/meta.json b/Resources/Textures/Objects/Food/tofuburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/tofuburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/tofurkey.rsi/icon.png b/Resources/Textures/Objects/Food/tofurkey.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..828eac2da6e04de4ae3b7d3f3dc86797496bca93 GIT binary patch literal 1024 zcmV+b1poVqP)N@E=jowX=>3Aqz1Wj9`c&s6-Jl z9SrS45+^3pGu@e2bvhmAGt9JJq1~LraomZ`j0M;!ZZ!5$ zS4i?-sj3!I^||ofR}8kUV;FNF`+WGr=iL0`D#}`*V43Z3i0``--4WwX!~FbG)oRWm z$`=sEkg|N4!S+Qw+sAW#hMTJlqmYGKi@HC<*4B`f(SVs+6JOTQNkU4BB~2XH!?jK_ zT>lpN@mssLVV46t-J9YlmGK)wbTIAjdFP8y2%LFL^F`)5hk5VXr}$n6DNfMp?C1S! zpRv5TiE>_|IlGT{zr4iHt9Nj%la%G{=^e<=FIBE>A*}!@k5X2*v5mvz#a%3UfLyF# zafCGMV%w*P^w)USYm~+wF$qw@gU84>FSz8ez9Eu?DkU}Kh1 zgspMCpO)95Aek?Igzc?-NEdIPL>t z-9T9z-mzYF{P=N_B%$A*=I(Im;qx+U_uc?tetsUuap-ot zEKXQ8_EWqQy<@$~wrv&{7as%UZ{c3Aht`_KUlzx95C3r-?=0-b;z6ox-n-PqZxsw=B=0H$7}n=^0)u7T8K;|h_wFy#R80hpqQi7rf?-66JXA_xvp zvE)hUIatd7z27e{5&O?QkBp~>s*eC8zz6_5-{U6JbZ6Z9J9`oT4iE|gAQAvHAWdb4 zfD8thraMELK#mu6AuWspiGhd)2&>ll-~Sp=!P;k$M7bei-UZWiXAntSqEiXhp|I?N zDIlxPLR@?byyaHVTYg5|W#u3Pw*~_oowp7ubY;qRDP=1tB`6tyS-P@ZUk3n?pQ=Eg zxz?byXKO>jeExAgfWjN#bv#o5qB}po-E;m?0IALHT*I#S8#c+#o|IgSUVyqT$V_#; z3sps37rg+zbD(JsK*5`-kZ!jG&i)aJ{J zhL4>NuB8<(%k@QZh#W)!KkqBkG>4;(&P8$(CNuqw7e@3bo@^Fk2Gp-B1MTrBQ`s^S zaw`mN?@U-k-8b5SQ_*$B4V>9_8U0GW37`uyMEI@%x5UFg$wq(?;Nbwj^zX;ffgI5U P00000NkvXXu0mjfITp=p literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/tomatomeat.rsi/meta.json b/Resources/Textures/Objects/Food/tomatomeat.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/tomatomeat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/tomatosoup.rsi/icon.png b/Resources/Textures/Objects/Food/tomatosoup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d33e656060832d5239e10f4431a82d37ae40c242 GIT binary patch literal 479 zcmV<50U-W~P)d!ONk+<-gz!($wG2d% zgjb;-bQnU!H5`Zc-Y?G@Zh4>OdESTTz3=CqmwVphhBrg_X$!upGXMs_02lxRU;qpN zz>?R(cA&0$txZmjxPJqf1$PdP!Sg&6MX~ipYseC{*A0j>{}JiJ=}evy8IQ*(3DKEv zRQ|L!sv%2`AQV75P*>BLJP08O27|a*U!{t3foa_Q22#tK2ecRfsuO3RhAdeis3RDV z5eOkD2~lh<(t^5ZHm=240JW|r9NW-xwXStfEzIHZM*|s<5t1R74(MF~fQOR;%7T{b z^)(UQ8*{p_5v13jcBnc5_O2@cJRAW46q_0KEO&@bPoeTJrv+r=_F{UhuREm*wKpM( zxGG-aJSEQt0D#*MN!{I!gNq1I-=4um1U$7`mO3X(h$6La-rZwAl(+p7Yyq4goV?jq z!fOD4ulHA1aaRDqItw;qyse1r;P)SUB!?Pu2#AL$K`hckentuX0sS34^`4s)A@tm9ks?Yd#zPYD z(AquNL{WEJ6t-atHuhk4va72tZK;=imtkgi-uKOW0}~n?4OnM{*Gdlr0)apv5C{YU z0YLhj&DYAaY2)p=nCBj+apwEEYUp=zgnsoLyCH4>kBa2=DwnnlKqe`RJ*F{YvXiDU zxevAKN|^-#FH&tGlw@!7H(ivnKNByWx~gO1}_A^^P;C}@~Xo5@a^{@F*`EuHX^b%H3YMf{4Lgjl!i=xN0uHdDs93`emZXvBJV1>_kv^PLsp<38_f|lSMZp+h z8aBp-0tF3*9ROY&w?qq6z--z8SbMYY79CGgqpr+GY&K<^mv6dk?3CpF_bQPph(>%4M+(>?`07r!D^i@<#&yE7txP1pW4&}zLO P00000NkvXXu0mjfCnN6SX(==N~g#j)wGMC|4MU+%r%{h#ywzVF<7jwbdn zMlmH6HMO;cVqSo9#N_H*q;u~KLhv$kC+UM15n#Bgq21B%w}_5fBcPC zdVjK&NPIzze0ot3NR#h0%v72TjPo)ygT2y-rQFQ76ElqX(xjr$?$R>wG>y&xt6$(w zZ38x^1Awq^0_Uy!ymOxhz|`bsV|h9+NDhEs@QBt!Ql+nFj^gVUSX|#kJS9?NhZ|+R z05retWnU?*ewD@3e8Gu0sbx;4_h&H#PoHm;;>43~XiFdal^fSy>GwI2fBk8yfpVY;55&6;1) z5_FFBQ&It`s1z@$fJ-T<%CX8I3jw%WmtE;iAxtVNbp)giwY#(&OkGp91OP2Vb>hH- ztAr*Ka;$T#A7hm?q0WHZeq$9FUhQRZeUlc?9!3Lc_E$r21RhrEB_ zk}FGcg01nb+9`QKfDA-UwUxtm0~)dT?Wx< zOjHnDU?+nn;zcEx+n^N+<>pVu$Uol>B0;2XVnHnzA!4g;!gDKh-d!*i-GQym)Sp4r2Ca6y(GY=}9DZL0=IsQ>v&6rL zA$o;(hKpF0o90zFsbu2V@Vo&Zmop4M3xY~QZ`I5vAwpA_h}22cj{o*4E>|<_93xPTPL1%NdQNP+FMot8XIci`W~T?HR8sP zg2Rgf{EYw#YI#WjaQH4<*qJ%?lARf#RQ3Nn#TuXiXH~xe*6g`NonQA?00000NkvXX Hu0mjfjGXNK literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/vegetablepizzaslice.rsi/meta.json b/Resources/Textures/Objects/Food/vegetablepizzaslice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/vegetablepizzaslice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/vegetablesoup.rsi/icon.png b/Resources/Textures/Objects/Food/vegetablesoup.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8a51ba0de25aec6c28d9738d771358d3caf35a73 GIT binary patch literal 565 zcmV-50?Pe~P)I&ikSP3oKjxj(rANEYHYYOY1 ze-MvF$XO~y$pD~UXt1gMLe~_QYg-<;oj^yhfC6TGh3HL?bz5h7)7D#Uw+)1Y@ zV-zKW*=&`YPtF3kD*-T@t#bYLX*aJI8dRne6eWY@+7{N)8-r~Dz@-Oc_WiqgUax)i zJRkjXi}52P)C&y`Op30V10rUc{CqY-&QeKzKjRrYkxX%IGRxzuZ~6lOJo+$WU%YS( zA)3J6UPFi`Sbh1tt*)CUk||IAwEU3EhYKBVLPvmZ5Z$6*(LuF+;pArpcHwlf*(v7de|8!pZ%8=g-Z(()IUis>NP+OPy^He{{z5>_XInZ zE{b9{cP^xV0^nG>*w}6XaB+T*sx(>os-}E^qcdF`Y?X&71rTTM+5w%WU=T_Wj(I!} z6aUg4@Ia$7UE1&*Z)?=DAtaVi+w zY}pgIKL98Gr{vw~{;33WD&SbUke41=U4r(FlIr{Y#}U7Nt8^of*PeiB%vCF(eWRd% zYbTj^qsf|2>xXC$eTKtfB0d)YAoA7hiT72Ivtv3Vg+VB#%Kl^Y1;a4t_uq;`#t_E) zz0(w^N|RY1CRr85#Fi%x88cAyw|iaIycn32Jx?5FT444}actyIz2`RycZTOTN{Pd( z3Ya}pXqtv$7`cm=wKC!ffY~z(51GHQBJl*EN~`=nPy^Hel>@v0K1=)0q*VsV00000 LNkvXXu0mjf8)59H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/waffles.rsi/meta.json b/Resources/Textures/Objects/Food/waffles.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/waffles.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/watermelonslice.rsi/icon.png b/Resources/Textures/Objects/Food/watermelonslice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..545be1de0daf20d7fd2e2a95f8eaa3209e5bacfd GIT binary patch literal 356 zcmV-q0h|7bP)1pw7)GC*P@fvQxPrO+WK$l9@2$daK~P+B_p1{n$+3Zf@aN$U=Z zqNIc6LQSCP17om--t)(AV`1(Mr%ZNIdJ;$iNgxR%fh3Rwx)ON1k@fkltS>gQj;-zg zH5g#Ig>hM8jRw_$fCu?3w{X>mV%O*OnLFn)zE`8bWG(B5)iDGD$j1ZkK46iD>(&r$ zpm7Fr>8dO;2Pv`umjYhC98?N-?BTPL;XqSe8qti82s|ny)JX3Ehd_X7FF@xOoa~Q(c^`6bdD)pP*A$Yw0F9bSU&AICU@}PR;0U#)iO& zfn@U>s#K9Si59ZlEy+vn?)`F?7b2FoOR8*pm1Z{p126ysFaQHE0ARoDfY^=orhDV8 z^CKQC?!`_4u^a2ByR*$5E-eVwVgID1^ALr%Aa-N@I6kH~vgnO0-qV*~$FJme@Ocuf z5IX^cVaVy#GXU3Kgy-1+yy-dso@dioL^Ku=M;8yA*9V2>Eeudf(QI}g0H-|#8+?C= z)1Kn{L$FuZo%WP8O;Jj%2Ij0n;dekLQp{%PTCE0T5I~k?>ki*yr4%xe!WTDNmmffs z{VSdy%yTD|i4*{R(bCx4tD$rm%0!CE>trLMd)Un_y?+5pCCPbu_`??Lx>f!uHUI;t a9Pj~JIe3Rpcu_V00000Rq#hpey1)JATL3KIjtHWvof(C-LuCx2ukhRV z7X@aa^9T_C1p#0x+$C?Ugoxk2DUJ^(%XdTgyzRP`s{(*fm0lM_V@Vb|PM|6efX7wO z^n93|&~<45fZdxpc|7RX#_{8GrSp~S$M)e=M2Gt|*Z$@Qiq5IqSn5(L319>%w^_LjEdl&xtN3GN d1K0pIz$ayD-dw#otaJbX002ovPDHLkV1i&h;T!+} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/wishsoup.rsi/meta.json b/Resources/Textures/Objects/Food/wishsoup.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/wishsoup.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/xburger.rsi/icon.png b/Resources/Textures/Objects/Food/xburger.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c3593b801b69b6e7b716c0e77c6c94f58f2b1ff3 GIT binary patch literal 461 zcmV;;0W$uHP)inA;3NG=cvB*FZ9{{RbyE1%iZ9hnuLFAj>i{i-2qb z!4d?DP}e%9I&r&kC5&D95zKwnHLPe0QzmB4$Li(P zpJ*!pUi^ufF(3Qr#mo0^4YX!zSgHaY8vvL5BEK-^O*=E7RNWy!P4kr2Oby?=24D^r z8%w54Z_NaBH-(zEBLDzsjCASi+y^WJ0FZnQKuiN<3g~VMWC{?| zKw}utlgE^B7qoM2v>l6rIJ6di4V?kbNFV8Hjy~fI)?|t*)*z~AwEF+jr)|O3oLGZM z7=S^rb%m>Pz6e?S6A015C712>n2%q1WC00000NkvXXu0mjf DIu*L2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/xburger.rsi/meta.json b/Resources/Textures/Objects/Food/xburger.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/xburger.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/xenobreadslice.rsi/icon.png b/Resources/Textures/Objects/Food/xenobreadslice.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0815019b918667eb74ea633ece9a9d307e24d2ca GIT binary patch literal 678 zcmV;X0$KfuP)zg z1Z9U@+-AdAiKJXN&{ZGXF3YUb;kDytGntzZ$$s$o-ka}z-}ieT?|n=l^C-i=l)8VK zy#`PNr~w=(fT`%P6U!M+EN3|7`Q1>PvzuR_noc+s9d@Rk&b#aIfbP3Dx3^k@KRhrHu0j@k4L!rRwy?jd9?1-3YA^Z0Pa)5#Y-mNT5NrTd<)dCvZ6Esj9P zRW!O>@zqAO97rtwzug z)Qx~;B{9uzWZECVw*v7=n;sNI*3#YbigwU!K}nZrw(#^_&qy{b9n-9`0&*2Zn}Wz% z3L-qJBifa{)o4Pq1+7MtyROt5z3N<+l_WlCBUh`afJ|>glq>Q1hyFl@tfjMQN>`tn zH(1Gh<5MW_#)wbah&Fx;;QI=qDZ>E;QHGIeICDkg3KOFc;0f- zDdi<{Q`v%s>JPgm|0@75iC?_rB$KH>PQLE|)yTp5A*lh>0RCHm?^|>kmTxv$9RL6T M07*qoM6N<$g5Z`z^#A|> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/xenobreadslice.rsi/meta.json b/Resources/Textures/Objects/Food/xenobreadslice.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/xenobreadslice.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/xenomeat.rsi/icon.png b/Resources/Textures/Objects/Food/xenomeat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..da3ca891df02c2f84cba5adaa8c409ec43194da2 GIT binary patch literal 499 zcmVYgGq#2yVrGqF19mPpd$kMG&g@O*c1cWZ) z(xuv^l+z(lP{~lzB@V|mwWVpRLLKrU9C!J-_wsX>Bw}CMj58+2N)H7>flwe62nGIw zz~m^&!f1J&ef?@GGE9C@-cSOg>D|0hxLCz|0NNRKefcvZjM&oiq*ZB@tGHMLIR|(+oCDnHg1nz=jt%R8u zMC0)BD&fsfdG6!Ymr&t4eva$FZbDG3l>%=tP~g38Q>>N9qy;mxa^jg;30JM_`0(bZ zJfd+pK9KOeyF}nli46KDJXyZ><`!aXF0P|dCbgYJU-MLG^pi>0o<54o%Gad0L!N5?Z|FJ-~Os7cBDgeQ&{!azE pMMeStslaby>|euBAQTw8z!$c!;fM0;FOmQN002ovPDHLkV1j)>-_HO5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/xenomeat.rsi/meta.json b/Resources/Textures/Objects/Food/xenomeat.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/xenomeat.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Food/xenomeatpie.rsi/icon.png b/Resources/Textures/Objects/Food/xenomeatpie.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..408060f169cc3f23e7f4dfa51e1944cf412f1383 GIT binary patch literal 621 zcmV-z0+RiSP)&ji zJ%9)B03P6f00e&b#b#8o_dlOF_d|UFu6``~{yE?@_*3baXRSkudIKd9o0K7kJaN9q~#{(*Oty!`$09m}%w6R@QS>4}dd{SV0X_lMMH>q1yw$cd# zmhsbCzn0JKhh+Zcye*0%i@qEuLX5Gg9_Lvqud}^0OWmrH%ImC25&#)ZV=J8iV5f9M zz%qDYFJPJ`>vz`A-3He)Aj>kUs`5sDfMFOczG_2GCsMbn0Mrj)WaJ9~Pt2GT{JL+M zkQl;LRb*Md_ynMR4pdbIAel@O3WeGj-w%w_$@gw!u^5J7V49}WNT);C5pW&^Koms) zC#=7}pIWWvgmx2rAwVb0+3Gg*j{twWF8yQV0X%>Q@BrTc1w8ZJL#W+M00000NkvXX Hu0mjfa!(qp literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Food/xenomeatpie.rsi/meta.json b/Resources/Textures/Objects/Food/xenomeatpie.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Food/xenomeatpie.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/4no_raisins.rsi/icon.png b/Resources/Textures/Objects/Trash/4no_raisins.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1d1f30a46722c7ca593e114b1f7f3d768f00d34b GIT binary patch literal 500 zcmV1%XjX51?DT$+nnYz_*YIbZ5vR0^SvZeS<80fCi=8%-a^a_W@es3bZil zLLN!B1Dz2G&O&c9e>8f(Z$@w4Q#vv~K0g_3*bGKUogcyJ| zB><_!^~nSPcm-iHsdp~c3GdC;&6JoaF&ixdqyqpNF>^F$S_o&WknQ^dZ1Y8=T`_wk zY(XhV*)=Ehd-An9_R|}{L99)QQtfQ;EGGdL^RE>k$u6&nN{- z!TrTA0KQy(JXn`X{9j+a6Vc`M2!Pe{XWJ^Uglu*kEUyIcDgPERX>&njEtMD|J&eSR zIv7PxT=WM>I>NK1WhESlyS_E15%$T3UI0$q2|J6lJ^|Oa#&Gj_%kIcOXs$SmS*pA?2<~l qFF@P86>^2DJNN1UZ)IoyCHn`>n5R{-{VfCl0000BjE7=|C!#T~SGFiycXh$GJItpYDMl+rOnp=*}x9yQ*0WA=au*$Vvup=7uv;LycO z7Z-%UH8jvci-#7>b+Dz_j(R=TGC&w7WKI_F^)t>>L0iG0q*4pk3 zz({F*-zN;i!Vo(F5CBRcgedI9P5`1g2;cV$J-ao4kBJbBDke zKpNw$d&i?4NW~k~a^}E%G9*&A8t%cM|v3qz{d|qjQRuOcD|3= z=zx*Z3Ihk{L)=z#L9ipI8R$qa8w0ql`%G-=2`d4#*47wf=bH>nZC?KB+v~vs48XUq zL%d@Jz{%MoG7toT6GagyMKpIm8Ba3tRPfE)BS!rx%%{%-Zm$P;#|kN>lcyuD-33}} z>-#=JsRwg+r_)TNyCP1&tAJFSgO?is7JL12{qA~0Dl3(De~x9->Uuq0000(q*bRU<3}D&6amZipe|hYmdnhuxSTdYfdk?$HQisuQW`+UL z_dVW;kGHa)0!{&^fD{3;P%d?R&o@f|0Lbt7k7c18Y1@BWA}8!@0UokYZaw3zu**WZt<+J7oXtpf%Avv-jp=ThAVe0*rPf1|fEU6l z;$&Ziq+ov;c2gKD0M`w21pDlNlmK8NUXTsrrO9*5?=S&tQUJKs%e#(#^?L!PX$3R@ zTL+^jy$`{5pTu2xY4}WaoQXXt6+xe=&;;-{qcs_|)AyqVEYh$?R1K^&@KWI6qu_f3 zkR1V5CzPFXV=ov0T?ca78!SRC=>5i&e;}b<(GnXI$thUO{Ab3aQ8C6$`H)E1NWOAoDzMB>w-g{IBr?qbQ#Ik+#($ P00000NkvXXu0mjfxuCUm literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/cheesie_honkers.rsi/meta.json b/Resources/Textures/Objects/Trash/cheesie_honkers.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/cheesie_honkers.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/chips.rsi/icon.png b/Resources/Textures/Objects/Trash/chips.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..775d31cd40fd71980c9757d9189597207d96d2fb GIT binary patch literal 532 zcmV+v0_**WP)IOxgvl>_)tp%ke;v^ zyH%^L^Q#KvDGeYx1(Lh``h0tF?^o46I!6UiqH0l2+^;kgUr!vLhRfm>T13m)&dsV$roydboj0<(R-_6(+q%^*OJ0H&9@gNGTohe*advSUBCkHLM z9V=1w?B}fYS4{)*HhXkqtGiWF5k><5opu|xXK?QWK=M0562NOPLxkT9a4b9dKcjyk WIKBOGz7>}M0000?tU)3$E4cy|xfY4#0weYUEkh57vEvYJOu#2KVIt!Ew3HEJ|1XYOwBvaX2ghXqFQ(WCW ztj@r*L->2lU*9if6A}@^Hd#K}Z-kC}`Y;Am!n@B;E&nTke;F5lhz7s_7ytuc0Q>|9 WQpb3n4)z!T0000)v@66bD@41ibmvHCa#z{6(++kX*|&g5Ex&`5mjsYZNm1U@va zP+Jg?&g5EwUD)BMSW zz2hG7o3D=mxO_TgjlG+IT2;j>`}AwcVdvegEElVD0KET|<=gkVe*bk5;xpE&prZ%o zle0E}idts%)k^@@);Dxw_4u-heDiJ5GWos&gb8a^m2f1Aq9{yFPU!dRja^2al1?rJ z4@`hqFdT^@IqXbLPEc>`0_YJD2n0i>24w|3^?|kZ4g7w;PVDx`D2f7r-|si2!YXXt zK1hrmP{0@sMNz0#)xoDgU_Lo(6V))bvZRws4*P+2-m?IJ_*R~ZS_U-pDT<;;K$K~} z9_X3^_q=>Px#07*qoM6N<$f&o=aIRF3v literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/liquidfood.rsi/meta.json b/Resources/Textures/Objects/Trash/liquidfood.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/liquidfood.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/pistachios_pack.rsi/icon.png b/Resources/Textures/Objects/Trash/pistachios_pack.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3efe4588cf45731376f864bf4c957223fbbb8245 GIT binary patch literal 615 zcmV-t0+{`YP)GAJ1H_hLq zhavy~Pma5&X+M}l)U=P9vTGaKIV;(x7}`1O$2JD8^HdxlvFfMw?bqa41=O@}0yO>Z zP5`E5R)&z9X9vL?*pBQ-A5MOgSoLF8hA6oJ0H+7`%(yPwxXlC49%x%KRED%InV4(= z0aAHs0zuAQ9(V?b$reg3fC4~ZW9)97T%!51Y!9yD(bpO#YJ5b$*FlYsM7MJfQ0^A(LjTbO0+@KgaXsvRz7%r5 z5CFjGkH_?T9h$8HTEirpQE0XXgu+qUmP{(|z61*ajIDR#>nNL1_|&)}nF!Ks4M^oB zbW0Ml9t1waqpv@m;sd1e68i_20K{`cQqRRL7Y2CtE`l=EXuP=lI=Rk)x)MOQBrY~0 z=+?i7Uu;A?0eHR<)z)V30iv;=8{oFId_N|)tv^6J;w8GA(S!g1002ovPDHLkV1l)v B91{Ql literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/pistachios_pack.rsi/meta.json b/Resources/Textures/Objects/Trash/pistachios_pack.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/pistachios_pack.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/pizzabox_messy.rsi/icon.png b/Resources/Textures/Objects/Trash/pizzabox_messy.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7a14347f4329ebb0fbc320ba23f4e70add27b77f GIT binary patch literal 797 zcmV+&1LFLNP)A_fXM ziA$k^w_=2vTN=S`gEbMvT`RWnq)3g2@~5*qJF^Wa@xhXvKmX5r^XLCrqS<*Hy+oj= z?Eiy+AOJK*3Y}h%$9CqlVB_pcXC!*9>)_J8q+>kuxZ3p^4HPkYk?4A(Bi2qfSr?@lq6XtYQy7pJA2CcHb+!-CaDs^h_HW3O(*jUdd zU=?dk>7n_%`~^DUAWuLvTDbTFF2U^E5bFgv`DnJWoAQUUR2MV3Nb zxX$d`CkIe{^NNx1AW?4NtKXd2Iv1BcnTj5I>i36e^LK^`j%W^yIcDPf#X+;8q+8M_?`) z2yr&cs-eBqWHut>V`Xit*?GJ7AEVK+jKB9kKm&!2?-B6Wv$hcE>v!0GAN&w(s_WSe zrGPza%P|i0^?MS!1-avf^l_=bvu z=7^MHWSt=G0usSLd^gD8RgkJSRNe#bKv^YsL)eu7KS6&3!PvW7S_3Oxe~c=*`;PJD z`Q@(3V>@%2X6J1@zdPKS`l$YAvwAwIoOk0m>)puP8asmT`=6Bo6PpIs&mZrrIk9Q@ bu1EL-bS_Za;h)4*00000NkvXXu0mjfJIi+$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/pizzabox_messy.rsi/meta.json b/Resources/Textures/Objects/Trash/pizzabox_messy.rsi/meta.json new file mode 100644 index 0000000000..8aa4c1e799 --- /dev/null +++ b/Resources/Textures/Objects/Trash/pizzabox_messy.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/plasticbag.rsi/icon.png b/Resources/Textures/Objects/Trash/plasticbag.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0e1b54e0588ebcef0520f85be8c73cee12c4e704 GIT binary patch literal 313 zcmV-90mlA`P)BGJbAH6g_6y2g|7 z^=S1B$bbyUfDHI}fRxh3tR(>uk<(f;rPNCyrIgcJGa~vI5e=B82>{Ud{mYu4^Uqub zj|Eg!1#9iEZzzO-5W)e#FbtRbM0cQRntgn1wUp9XYXJcMeihLj0D!VA!8ymet{@`E z`OkJC#eqb}kaNC6=6T-dkK;dcQvi;T(86y4oFO4`>l2LQcqjcnpePD-UH2SdSr!1e zg@^`h+s4j_GsGCf-Uc`${MEK?aB(2PDe#D67-NF-Kl^_m15(5{n{jd~!y(H100000 LNkvXXu0mjf6J&^X literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/plasticbag.rsi/meta.json b/Resources/Textures/Objects/Trash/plasticbag.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/plasticbag.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/plate.rsi/icon.png b/Resources/Textures/Objects/Trash/plate.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..16c7bebf26818df181110f1ed6abf07ab16875db GIT binary patch literal 370 zcmV-&0ge8NP)8b{6bJCX(%L|V4h3Cr3mxp|=tnMeaqo1^AZbBvO`t;|(r6*+a74VT+E@y9$lH|X z`~P@EF{!EwTUNShdIUs31Vlgt{0G3rnr6nB3+WR=B!3Fn!2(qVT^&4a=7n< zI$7gAxfwu8DF8SD7DWL<2sr1k)=q9<7T^(CmVq($4dOR2J`4WZ2MZz4_x)`6kANvi zNQDIZ3VIE#wTUqXoO73D83-Yhea4vJ;8lQgh%si(V~e%F|9LGQ7I;)vYvKy8{NFIcxIv91{0S|jHh&+gPknn1U4ncP56t;rhwu4X|G8FV6 zQ5}LdW}!ouSRz8QgPAf${-c*A?Ub*>><-zkGd8hphk2LB{N8W)e%|-@n|V($41-FJ zs*0)y00BS%5CHrS0M%XzdQ!?#abr+X$_}6>r5xzho#&CnDwiHdF$LT-*W~jji;VTH z{}srNCD5;Zm1jF`aZ}jh1&C%1j`l`46>FjU&LMf`c56wOb~AQ%U~7{)`I(VK4#3%Y zvt}YYzlbx z;vG}x7ku}D>u307LpZztbv6a8VwYq2!+XEl?f}N{aV7n598=gO05~^g&(n_#7V>#r zr*-tClt;8RUv=>O4@}=nK`0Dbn-jZuL1*#JCvHt-QPmItO|cG`Ny|AA`J-|uUUx$M z@++C>>gS+V&Az%Y0BXJi8#-ZS0#bJk=7-jq&5Uxg`vx!Ht`tGU<8hhEWQyXR4gfrT zFoseUB4_=8nkdvBuoqI$bM+Vit%G4U?@zKclg7%9O11sUHnCFTunPyuJ<56*wKZCv zjagQJ*^g?G?N;{sHmHAo9RJ=M6~7Mz00BV70e%8^!Kd@VYho7w00001wNR>fGVYzX#{Rw^EP@$V!^NvihZiU#o~UIONlfTsqOfFO7a5v(9Wa*0ro z8oY#sHHTOl2@<_17D7)2OD<9pP-29d>Uv0bNubi1q#>8Qr6mr#G5Fw`4C+fLu@N)BvyQW0}$fLK^H z-1d|a3#%=L&l4|%%sK`Lc!tSmbmAcw+kyNKaMu6;jvhHcC|;uUd8q}&ZBH5Tkc)gq zC*Tgu*f?<=$la_1iDY)KtW)0Fca8 z3E(qCAld>j6-`$x)8@H(3nJ>M3{CT?dp}#|GV16COylfgotdq1{_(-?0hkHsJhazZ z%P!V=`tUDMXaA?eQs&S`2yO>vfkwQ|)9UZ{Z9z2FWvW0LV0mSgXu4vV&0H9=K%(gi zYc;3Te$qK`{jvvua^(jOWd!w{25fL@>Kc>B$5~!k1(t;O6TX46<}*HSO!MeLm^W`f z;7~?5F?o!&nv((LB=yZrqR(D3G$?l_sSp$k8WFF;xP6^sL1Q5~$HdquH?N+jSkRal z8|BPERyh9B0Oqr6)_cUO@Tc;Hh2)$ymX$C-GFQcQdfH0B=0~R)NLFoiL~eV^P=oX6 z2|xLa4m2u2Pxw)T^W1-;3x}ZNmMj)l4L#xKUF}v|O-a{!LQ(bnzu+I&o8&>WACQay O00001wKl9b(yv>-H%rnNy!8`9JS6Jxx2(UUPAjPYWOckljp3-Ap6ni)c_X8-^I07*qoM6N<$g67Nq A_5c6? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/snack_bowl.rsi/meta.json b/Resources/Textures/Objects/Trash/snack_bowl.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/snack_bowl.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/sosjerky.rsi/icon.png b/Resources/Textures/Objects/Trash/sosjerky.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d287608356778145239d97cd874a5c80662dfa5f GIT binary patch literal 559 zcmV+~0?_@5P)6HMQ^`pB4XPFm&9g7X*0jQXg2E)O%0f<~rd3GMqE=biKyXmCX*EvoqOg&z z3J4o$$Y68@v7I=b*1I%PNM6aZ{O9iX-0yw;+V;{kWs|Y9QS~jr7GMjoPJmuBG8+Tv zH6x?{tTxtj?S#E%WIkS`-fD7BqvXJIHYO)e#gmiSnB}pyDRFjSIbQ0>$~BO${H5uz z29Q#kZns<5ntUw_=hvl_PEUhX3Z#_g?)4p)X-KEKgAf9xRB7+G`v9Cqn(E&wtyas* z87qJ&iOgjh+RRr#q={W>oN6Hc4?}Deu~9D50r2X%8}il1Mu8A>5h2Pq3c;0jTRpfq zAOxrxL`ht!@;-xJ8$g<*-f5({(hDb*ns3>0t=1q8!KGHfA_b*bbRiSXV|;xJVZ~`W zXMnmNU}_C``wnUi#@Dy(hZPR?G-D2_`vFIK-~?dZit}RBnZqMJDa7v|=C)7$fTJ%1 z>tb|n#Zx~3;Qfc+jPwM6gFRhb>kQo-a0ciM2Tc8d`-hNyD*X6<$fs|nfN>408Yp_f zLV=I;gd6jV^J9 x17@MJo?!bDS_vSB_}6(?;gtc_9UK2Icm!=@>BOG0>}mi2002ovPDHLkV1nXs2|EA) literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/sosjerky.rsi/meta.json b/Resources/Textures/Objects/Trash/sosjerky.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/sosjerky.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/syndi_cakes.rsi/icon.png b/Resources/Textures/Objects/Trash/syndi_cakes.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..242abe85d08b8c82e25ea5230e3322fad50052a6 GIT binary patch literal 385 zcmV-{0e=38P)~`Ft(be z37)B!r_#HDZlD|J2D*W6;I9lAW1=x8w)A~%O-Su!S(Nk~06=R^%_M#_wrao_6IsGv zNi!e-0E7^dINcvfG(eT{1Uc*okb||>MHAH-C{-u*;c=<@CIc-nulA+I7{MzA7@PKB zy8#Z#g^2sjIPO>H9y74++HDgiATH;2uycTGn`R<}KrA!Te<J=aNF$|7 zYw0AMi1=r5bP&|wm^;JQhHzUPXn!DuM6zV%3$M-z!Z~gk|atzx~j43taf~7b{39nV-`D`0@Q4wcTB+zir;V|4c#mUqEhkm4FwXPN&J` zax6T3)&f6uI_;Z8&jMcfb^l5Jf*xdY9?kZO%Zq+i|E-gj{fe9D^Is;f@=)a7RaDi7p)}5-dB?CNem7v%kW~ zp8psaG-lRXoT;Z%-5&rC007T>1W`(*JSHM`2*A=*2m#JHoO4i0r7aLe07|JOrG(ZR zZQH_o4`U2~?HMRK14P8SuA9xzEyPwy!QYAV+@FhWz&ANGe{oa zQ*jj#5gUd9uP^WOTt8aYkCq*l0RRXeZvfnC?yprZRecXMO;h!KF+i>a;HwOmWqAky zfVuQI=fyFK0F+XRb3UivIR`0aQ5K3bAcR;wJLm4a`A-1ZFveIKq7ESM`)O5>l{1iU z#lr!z`7}+(0%)xfW2`;{#aD6ZihrtV3o=9vOmRODLRguH5H>d>0KjVgjB0wpT>$pb f>23J~;BNJJ0j{!ufWyv)j$i{=3l+SZpUGB3l#% z0HE)C2qBnrx<7QDh_nAfbQK68Sl{>f$iDpC{?M`gp<^KmJY5C)^a(&-%-uWnECh(i zmSq{c+#@OkF8;f&r_;E}w1QBp;c#Nq~EJk1ot`Z!Iq6ku9md~+L$}2GpL(tlXt6<#w$Fdt^ z{Me~63*4^>1^2;Aw8$0Lj}H}c0IDhJXu_4d^17bS4*;8`VtI-$$%EX(|yQ^OI{ vS_63eW)#(m@4XY!j-zixb7A%Wf){~r>E6TSt5cno00000NkvXXu0mjf9AeEE literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/trashbag.rsi/icon-2.png b/Resources/Textures/Objects/Trash/trashbag.rsi/icon-2.png new file mode 100644 index 0000000000000000000000000000000000000000..16d4292fa846912310735324447103031ee4a043 GIT binary patch literal 489 zcmV_O(a-Ou2l3}y@uwktD?ZKu@29!Y7vazx$wMfm#Fwiegn&|_p8??F zKu9F-0U-po+bsaVS_`Gr)$LdWfQUM!R6qG1gqf2dk{n>>zWQNEDWh{m-2&fx;M9U! zaK@P6eGu({QfgK_rTQcQW6bC?GmoANAyC(K@GJxa_!SI{tDU;xTToS15Jb`t4qfmL z41uQ4?nTlfV&+lh*4is4+O`eK6?6-RdtV4Ks&WW3J-2NO=iJ>J5!?b_(eZc$Gxx8# zShNLso{t2E75n#4`+>+IoJ&0CM4sotIfFN$zfwg}%!*CnoO1wv|AiF2ii5u#ARY~{ fL_GX|!4u#IFqZW3f5aJ-00000NkvXXu0mjftBcu? literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/trashbag.rsi/icon-3.png b/Resources/Textures/Objects/Trash/trashbag.rsi/icon-3.png new file mode 100644 index 0000000000000000000000000000000000000000..329b0019c6295d8ec457b1c964c728654acb28e0 GIT binary patch literal 529 zcmV+s0`C2ZP)*coUqFq!?GivYV3#z(-oTgH!f>${c(>Wkuj36|q!6G^jR2lNDPE|oW$Uw! z12>+=v@LLk+#w|uhr0Cbpa_M066DBL||rw5c(Vu z*#bfc{cg7dGoxu5SZmQV4PuM{@;i|20q=dW-|s<01G%;Kg#7jSt$%%f>t_>vp}2Mv zh7kIyssI4T;}PEbLP`I990nm8PvJ)~kedq7%AIqA^NleeA{b);AX~&$n@~iC>c=1=5YcK8 zt39CA>zQlCQzBxFVCF?nWOcwfH%U%JIjQmlq}y*yE+PN`W*&ZHW;o|iRn_8AEDBI^ zUA4ezwU@dfB7@i^5!oixn@&nLj@2h?kS&0j&yqJybF!55e-S~~b+h?qry$+;+G_nw zNz!9Tzw0$!*P(6OixaWffwY3Uu7?WKN>lPn@f=nkL0#7<%knJwxLS=>_|g%qx*MiR z=BiFnmgOQjuwoPH2yHf-NusgH6m8oAn0`{qTE(j_9ARk{U;RXME8P9P;341>5u_@& TfhGId00000NkvXXu0mjfe2weT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/trashbag.rsi/icon.png b/Resources/Textures/Objects/Trash/trashbag.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..329b0019c6295d8ec457b1c964c728654acb28e0 GIT binary patch literal 529 zcmV+s0`C2ZP)*coUqFq!?GivYV3#z(-oTgH!f>${c(>Wkuj36|q!6G^jR2lNDPE|oW$Uw! z12>+=v@LLk+#w|uhr0Cbpa_M066DBL||rw5c(Vu z*#bfc{cg7dGoxu5SZmQV4PuM{@;i|20q=dW-|s<01G%;Kg#7jSt$%%f>t_>vp}2Mv zh7kIyssI4T;}PEbLP`I990nm8PvJ)~kedq7%AIqA^NleeA{b);AX~&$n@~iC>c=1=5YcK8 zt39CA>zQlCQzBxFVCF?nWOcwfH%U%JIjQmlq}y*yE+PN`W*&ZHW;o|iRn_8AEDBI^ zUA4ezwU@dfB7@i^5!oixn@&nLj@2h?kS&0j&yqJybF!55e-S~~b+h?qry$+;+G_nw zNz!9Tzw0$!*P(6OixaWffwY3Uu7?WKN>lPn@f=nkL0#7<%knJwxLS=>_|g%qx*MiR z=BiFnmgOQjuwoPH2yHf-NusgH6m8oAn0`{qTE(j_9ARk{U;RXME8P9P;341>5u_@& TfhGId00000NkvXXu0mjfe2weT literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/trashbag.rsi/meta.json b/Resources/Textures/Objects/Trash/trashbag.rsi/meta.json new file mode 100644 index 0000000000..5c4a8de520 --- /dev/null +++ b/Resources/Textures/Objects/Trash/trashbag.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", + "states": [ + { + "name": "icon", + "directions": 1 + }, + { + "name": "icon-0", + "directions": 1 + }, + { + "name": "icon-1", + "directions": 1 + }, + { + "name": "icon-2", + "directions": 1 + }, + { + "name": "icon-3", + "directions": 1 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/tray.rsi/icon.png b/Resources/Textures/Objects/Trash/tray.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..501be4a7838f1d72aa1cb0944ecd55be9c4cbecc GIT binary patch literal 759 zcmVA!4Q#NIZB*tK48bpMGv_@F$CB+`%MabFGV~_a+p1lbD1bf_Lspp==U@PrK z2pC(%T%^>pVyTI?LpwC2@epUp{z*bwX%+f|T=t!r-}AmR^Ja!tR#v!3UAa*AOMw3# zV8dK!ofTl{qHn>~egl@4mRwoht8MWqew+0Bm+U-v+Sg!qc6O*&ylVwa(`*6caybAF z7M~N%Owr0c>1*1l_4RcCip63eNFab|nk{7vu)MrHkf~CkP;h|+LHGbV%};CG4I~J{ z1<=hr7K;sJIL$t5M5)*7eIZ=eP}4L3N~Mxx9ArM1tYe&PkrRu^L!EEYTi7B@ZR}>?xM}tS*D?$P%d(uC)wdCKW~MZAO#m>F zki@lS`&(KtGa{TZU-U@eT(4XJnIG;$m(m-=wI*?`i7mp|BFx>B@2vjP0odHr*xYNE zbah8(<0RtDRrAz30FmR}-T>Rz3%&t08DcVV#9Xp{pxz#)u|+sAo6SAViPdC?nhbT# zJP^Puwbm2@eZ0T@nrZf(n99x;VIGa_kkT8>q($(8y#S1D!XaR4Q?&UdJ9Cb>iLw71x^7WC&Y?eX-7M zl2Ve-=K&~}%goQuJAJ_QXQZm2>pJ;-zI}J4bndQq@4eLtG6o!TZ}z?lK)V}evsrXq zcfP46GN_cXGOtuBy<4%8Wm&E9@o@kbh*y#0U2Yt_?fE pQv*yEpY<%=-_pOk1(yKlrQdDVOE$5K3KakV002ovPDHLkV1m2~Z-@W@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Trash/tray.rsi/meta.json b/Resources/Textures/Objects/Trash/tray.rsi/meta.json new file mode 100644 index 0000000000..1832695588 --- /dev/null +++ b/Resources/Textures/Objects/Trash/tray.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/trash.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/Trash/waffles.rsi/icon.png b/Resources/Textures/Objects/Trash/waffles.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..be3d1d2025000f2b7080c6a6597c5f1143b96b87 GIT binary patch literal 488 zcmVP)%iE zN+yRJZb-SonAaFBRxcrvUI+176=Roh9o~0(Jiffo=lgv>cuKWe#mn${N|ypsKnh3! zDIf);!2ckyv?xK>b>}|7rBX>*D4^@Q6NyAvkA>a2X1j+vyg=L7;#;eOGZ2IVK5YL3 z0Gxq9326X4ibvfXC8XgD1V3&9F8oe`F+7*c0gzH{Oj{+f`Dd&pVdr$8%HuZx6p}$| z)-^@#km}Eun6}Ez(12K&X1g~7hdF0p8lE@Gn6?UxfGc0$Q}7u8RN}ATs)MjhYSuLc zpTWnY9?w@k5U;-@v6-gX?$PabXW#(J^rv(h&Q)hr-Rh9qcRz*DIsL|G&ic3Pz6f(5 z_Q)G$zNFudy5WC<__c<%8iVC1^?H3Sd`4gz{&#!FQPd7O5PJyAQf)6Ja2N0HtmQ1;wYMdOC$?yI%+!eU*tF}_wOtvW{{l*7#J8B-txOLaPl)SFfc40 z7zZ3acb?(UnX?RX{p@6$K~WUg8W}QFr=?J01Op=}&2m@*EI1)?_Q|tn81j*`R!521 zsfKk~R|gVnCRtHXwDKW?ory8Sp)-i|cjMMAa*QHB3T7=^&R}O^%wT6?Os)|O3=Cw3 zKuv#g%p!&**B>xkVPIfjV33PuXOLsiWmxNRO`TM;2E0K+mIGiVAT46o@3JdzA_!cZN5?a{C+*Tse zW7VM5Fv&&3otK@bf`exVv)kf^iFejXRxuxG{@gBN`D}tL>yxMsJ~kUJH(3UTAVFmp U-y7b4fDUHxboFyt=akR{0QVYD82|tP literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/alco-clear.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/alco-clear.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/alco-clear.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/alebottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/alebottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..05d0e0330f012153bec176ec84de1c35d875b6b0 GIT binary patch literal 473 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 T{^&X|@)$f_{an^LB{Ts5#lF^C literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/goldschlagerbottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/goldschlagerbottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/goldschlagerbottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d7e4081ab222b2ea71f67e8ecc42ca6d614e5f87 GIT binary patch literal 497 zcmVUAkR>Oehk-wnvhDnigpo!FoqDrys(?)g+xR*(H~G3BWUb$u>T?Y1G<C2b6o1~ph^8CRCYXKJLdo&6k@h^n&FNFD%%MzOFSqE@0 zx=d&D3#C_E0Jz_jSX%U12VhTs2f(`)H6a|SUm^fe5&pe<6ZajL330NYrrdSG;plCt z)CE62?*LFRs+{xP5ZMrSL0(te1C#*@MxI)^MXlW8==ir7Kq&>8Z*>5!%($!t_^|b! zC(m9|C>8-QzJ6kNFJ~RVUdBmgJxMNKG~d;lvS5m9;G|N;GbIoGP&Uck@af}6|Ll65 ndIdmqG8O@hQ~&p&bR0Sb+N6J&ER>GO00000NkvXXu0mjfyC>XB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/kahluabottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/ntcahors_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/ntcahors_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8e0544a3423c3cf523c381831bccf00c7ebe9c64 GIT binary patch literal 412 zcmV;N0b~A&P)bWR@OPyu!>4C&A?)*r82tN1mEp|KuMEDiq?t!i8jwHW%)s37j}jw> zU?M~Y4;}V0Q0fP=9l+Nw%)rOs%Q8Q!12z(Ds9U=F{{z*lMwal{Ek z0%SgXo57qO4*0uLmEqymy$lQt3=HSKaKXjT{FGu~U|=9Q8&;_M9TTjw*9Y8F`zpe7jbf(QU4YiHF~ckN980000q#+_ z=n#Ne4&_=+>gY{lU|>l5@czB&db87aLClHn|g7#J8BN4sXD4j5<$006O)drZuK Rski_D002ovPDHLkV1h1Q%H99~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/patronbottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/patronbottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/patronbottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..964c96d1982916b6dd0415d2e79dd270df4f6b3c GIT binary patch literal 433 zcmV;i0Z#sjP)W-a7ma} zR788&5U1F7zh_=T-|66Zzx%xJ@B7}n7ihQJ_^B0Nzy22h)}#ZoR&kt3lmKXS%iJ_C z0}BO6>K2V|8G!I+R9Z%@1(`&Nq;9E{@IM3p0Luw*TDl%a~phj!1GqT8XfY?kY2wr`(ho!k&WL60MPZ> zz5o5~MN&o%0AQLa3?l}Bt%&);KyoTpWNa!-!2Fq!IzN zTDO>HY66if0tygdcCLj(DV$je1{Qy&vsr4NG_*8f4?3-1^}YlkqBU( b@;w7zoO^BZPL-No00000NkvXXu0mjfPM^H3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/pwinebottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..723c599e48e4a0ddd7c2d7eb8f5ff74db16f41d4 GIT binary patch literal 471 zcmV;|0Vw{7P)PfUB!Y9`d4^LjDnrINlZfB zMTVe6U>+j;3%qq$mkjH+XR;CWT()=P{k|Wb@4G$E%XD3bmoek%>i+;v01U&>WLZ{a zSym0h(5N~->cng|>o1i`X#hwh5}na#MABi@uVC2KtXN#Z@a+Y!{XSO36r<>Pz6Zz_ z9G+gac%IL#3rWl_w~we6IL-iLOms5ea|=iS;c&Rg^L!2fEX(Rjk~H8r?$Q;2$;AN( zP9dCFAOLutd{C>^LT&;~CH?_C2e4fWhF#5?9GhnQ$9v`M+Ez^KnopzG=}~3q02hVA_x;Iv#(e+)sFbUyl&el8XnWx4@c{sE5R+h literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/rumbottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0d59bc4fcdba5cd25c9d0572d2a200cc9ef8d927 GIT binary patch literal 603 zcmV-h0;K(kP)(Id(gbEG{qJy`nEjs8ZE`nll z5xXQBB4m&R^rC~&E?E-IiKR*;hc1QZV6Is0(D%-Giys{C@gDF0{rUd?d+*b#)hc1e zu28f8ClG{yWm!|YuG_k<+m>Zbsp9NbJ=p8@ZbqZgvjC3c3k!bF?sp!4QJ*r(CxH& z^mMs!^5VHdcYO`uu?(KH1lf#9Vk}8A7N^^3^S1qwWGqfLW6DAS0VK#~Ov?3Vn{(BW zCNNhl;a|aiJSdg`5MRGBJ!}F1M`EM&_ly9r(rPg~IRU`EN<|t=n!w%MQ4(WG+z(v< zX7=yf+UcwH*Ke002ovPDHLkV1kjv7R~?w literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/tequillabottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/vermouthbottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/vermouthbottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e64c61c8658506f6a5e950cf1255909bc81b58ba GIT binary patch literal 544 zcmV+*0^j|KP)piVfsSu`J3Dx^0 z!2bYnRr+H3{)3>azXyQE(JAKBCt61Vy83%)9G(7NORcRGBLuIl!8ZRIRFn2U|6CP z`Y0Afz&J4605CBA>^(L}l^?Em1fUwNuDxA;m)hU=SXs?spstLlHzIcvlWN(8)zy96LC<-f-toXeVd4F3xUUtX>w| zK(WCrigLq&6d{~AWU$Cx99n91%U5j_d`t3P`2O#g_kZ8_Da*2ma>OFt{T-km0Nb|r zOw(L5O>@n*?LDc^urx52%Z(R{#T9^THhbdxzDP$&v*6FK@4@HA6)u}i&fO{>7xGG? zBR&Cb>xlSOideml)@Z>yz!^`~k820RVSD z=0pG@3*x1-M{~dIwj0u*0090?C;9*N3(&RzA%NI|p_9KP9FK(K;g{WLEbz+@NhrO9 zB7ocVNi@fMWWn9i2nZnhI)PZd4uB7Xy@dNaJKguEmGH#@CJqm4Go4lpu-bVlrLGHw z!gg4_x7Uo4$>eUU)w<|it5hn}0J^S!NTpJyg-oER) zi>~V~dY-p0#Tl1wOsCU7^7;G%Kr)&9@B6+8M@er%HoIXaCnspPuK-wCSymDpu?4p` z*8}rUBk*1!u7Tsy!AUqA{sT~})#jx&5Lf}F)XyOMzn%qJ>k2?ueq&5SDMhtf%>ekm zpRvKSx`tZoO7~!3y7Rv1+F*=nbn0Pf5>gAMfs4+AF{S~J^-wGpf7t+yyauc+$YwXp zTTSQg{+6xn&7r%ZbrD9jW^QhF;J3Babz3-l0+GlRr>Aw!&d#5$J5H3uOoF4M!;dA< zY_@2(uW+0wv6u$v5t7UVaVw6+G=;)00IAf{D@BG4>st_sOab%`@6Qu632Opk1yZRc z;8Fg5H9n0%p|FeNM0>e3!~_7b?|}$3n=RnU0)STQl2Yj}m4B6wCvaY`1G1(Qn84oN z&Pm@id=}k_n9JpU+hBgJVH665GK1D%j^KDaKC}wr|AP05kz4QpN~EZss4Q3=00000 LNkvXXu0mjf;Z^ME literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/TrashDrinks/whiskeybottle_empty.rsi/meta.json b/Resources/Textures/Objects/TrashDrinks/whiskeybottle_empty.rsi/meta.json new file mode 100644 index 0000000000..a2bca69076 --- /dev/null +++ b/Resources/Textures/Objects/TrashDrinks/whiskeybottle_empty.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon", "directions": 1}]} \ No newline at end of file diff --git a/Resources/Textures/Objects/TrashDrinks/winebottle_empty.rsi/icon.png b/Resources/Textures/Objects/TrashDrinks/winebottle_empty.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..45fa94abd9e48c4def4d9c6ddc600a2c0f3d3d3e GIT binary patch literal 504 zcmVe1=1fKl~s7XUI0qX7AZ|?DR8xS;Ha!hg(8P*;9o$xV3IiD!^N)d(guj%UIGw{ zo)QY3(l@+pGRl?p2#9=OZT*b>!+WZ09o$4?#P9BSe14^G*f^Kr2rSOd>o&VRc{qU0 zZpT_`LE?zHmx9hl3-AVyVQR`C9K8adxCopLg_#%7)>Vf~8vr1FdrAM#zUqXG3s6{C z*<*aLmFZ<408RDzqI`-31VWMIw`Z;wfYGTKaBKwJX~ z>h@ZD1$@Q-PQcPkViu^|C%VA60C5Tep$MxxiMC6n2E-BQ(VRGI6UO72>m?R7?g1hJ zCr4MD9C?y!<%CigPQmf{3)fF(bZZmWPi9K2&6HT1dH*OUa`BmY0qKTVfEvZALi8k? u9Gmzx_n+Th0NB{xGW;YH2}mchUIX85&yHmJ%vr_&0000