From dc1922c6f21c19b2ec1b87ac57b986371537386a Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:17:39 +0300 Subject: [PATCH] Food and cutlery (#1483) * food and cutlery * goblet * jelly * ham in cheese * Klanir stuffed pumpkin * fix * jelly fix --- Resources/Locale/en-US/_CP14/recipe/title.ftl | 2 + Resources/Locale/ru-RU/_CP14/recipe/title.ftl | 2 + .../Objects/Consumable/Drinks/bottles.yml | 4 +- .../Objects/Consumable/Drinks/goblet.yml | 54 +++++++++ .../Objects/Consumable/Drinks/mugs.yml | 8 +- .../Entities/Objects/Consumable/Food/base.yml | 14 +++ .../Objects/Consumable/Food/cutlery.yml | 105 ++++++++++++++++++ .../Entities/Objects/Consumable/Food/meat.yml | 20 +++- .../Objects/Consumable/Food/meat_dish.yml | 80 +++++++++++++ .../Objects/Consumable/Food/plate.yml | 39 ------- .../Objects/Consumable/Food/simple_dish.yml | 82 ++++++++++++-- .../_CP14/Entities/Objects/Flora/wild.yml | 9 ++ .../_CP14/Recipes/Workbench/Anvil/misc.yml | 67 +++++++++++ .../Workbench/CookingTable/meat_dish.yml | 40 +++++++ .../Recipes/Workbench/CookingTable/misc.yml | 16 +++ Resources/Prototypes/_CP14/tags.yml | 6 + .../Drinks/goblet.rsi/copper_goblet.png | Bin 0 -> 387 bytes .../Consumable/Drinks/goblet.rsi/fill-1.png | Bin 0 -> 136 bytes .../Consumable/Drinks/goblet.rsi/fill-2.png | Bin 0 -> 145 bytes .../Consumable/Drinks/goblet.rsi/fill-3.png | Bin 0 -> 142 bytes .../Consumable/Drinks/goblet.rsi/fill-4.png | Bin 0 -> 151 bytes .../Consumable/Drinks/goblet.rsi/fill-5.png | Bin 0 -> 175 bytes .../Drinks/goblet.rsi/gold_goblet.png | Bin 0 -> 387 bytes .../Drinks/goblet.rsi/iron_goblet.png | Bin 0 -> 387 bytes .../Consumable/Drinks/goblet.rsi/meta.json | 35 ++++++ .../Food/cutlery.rsi/fork-inhand-left.png | Bin 0 -> 439 bytes .../Food/cutlery.rsi/fork-inhand-right.png | Bin 0 -> 444 bytes .../Consumable/Food/cutlery.rsi/fork.png | Bin 0 -> 291 bytes .../Consumable/Food/cutlery.rsi/meta.json | 33 ++++++ .../Food/cutlery.rsi/spoon-inhand-left.png | Bin 0 -> 417 bytes .../Food/cutlery.rsi/spoon-inhand-right.png | Bin 0 -> 412 bytes .../Consumable/Food/cutlery.rsi/spoon.png | Bin 0 -> 312 bytes .../Consumable/Food/hot_potato.rsi/meta.json | 11 +- .../Food/hot_potato.rsi/stuffed_potato1.png | Bin 0 -> 353 bytes .../Food/hot_potato.rsi/stuffed_potato2.png | Bin 0 -> 425 bytes .../Food/hot_potato.rsi/stuffed_potato3.png | Bin 0 -> 330 bytes .../Food/jelly.rsi/chromium_jelly.png | Bin 0 -> 363 bytes .../Consumable/Food/jelly.rsi/meta.json | 14 +++ .../Food/meat.rsi/different_meat_leg.png | Bin 0 -> 768 bytes .../Consumable/Food/meat.rsi/meta.json | 3 + .../Consumable/Food/pig_cheese.rsi/meta.json | 14 +++ .../Food/pig_cheese.rsi/pig_cheese.png | Bin 0 -> 542 bytes .../Food/stuffed_pumpkin.rsi/meta.json | 17 +++ .../stuffed_pumpkin.rsi/stuffed_pumpkin1.png | Bin 0 -> 471 bytes .../stuffed_pumpkin.rsi/stuffed_pumpkin2.png | Bin 0 -> 481 bytes 45 files changed, 621 insertions(+), 54 deletions(-) create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/goblet.yml create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/base.yml create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/cutlery.yml create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat_dish.yml delete mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/plate.yml create mode 100644 Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/meat_dish.yml create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/copper_goblet.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-1.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-2.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-3.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-4.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-5.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/gold_goblet.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/iron_goblet.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork-inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork-inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon-inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon-inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato1.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato2.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato3.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/jelly.rsi/chromium_jelly.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/jelly.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/meat.rsi/different_meat_leg.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/pig_cheese.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/pig_cheese.rsi/pig_cheese.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/stuffed_pumpkin1.png create mode 100644 Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/stuffed_pumpkin2.png diff --git a/Resources/Locale/en-US/_CP14/recipe/title.ftl b/Resources/Locale/en-US/_CP14/recipe/title.ftl index c68c080969..0a38a6f924 100644 --- a/Resources/Locale/en-US/_CP14/recipe/title.ftl +++ b/Resources/Locale/en-US/_CP14/recipe/title.ftl @@ -1,2 +1,4 @@ cp14-recipe-title-meat = various pieces of raw meat +cp14-recipe-title-meat-cooked = various pieces of cooked meat +cp14-recipe-title-meat-cooked-leg = various leg of cooked meat cp14-recipe-title-energy-crystal = energycrystals diff --git a/Resources/Locale/ru-RU/_CP14/recipe/title.ftl b/Resources/Locale/ru-RU/_CP14/recipe/title.ftl index 1b7e47053c..d87d86ad8c 100644 --- a/Resources/Locale/ru-RU/_CP14/recipe/title.ftl +++ b/Resources/Locale/ru-RU/_CP14/recipe/title.ftl @@ -1,2 +1,4 @@ cp14-recipe-title-meat = разные кусочки сырого мяса +cp14-recipe-title-meat-cooked = разные кусочки приготовленного мяса +cp14-recipe-title-meat-cooked-leg = разные окорока приготовленного мяса cp14-recipe-title-energy-crystal = энергокристаллы \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/bottles.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/bottles.yml index c403c99b05..0bb0b0bbae 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/bottles.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/bottles.yml @@ -1,6 +1,6 @@ #Base for future bottles - type: entity - name: green Bottle + name: green bottle parent: CP14BaseVialFragile id: CP14GreenBottle suffix: Empty @@ -74,7 +74,7 @@ sprite: _CP14/Objects/Consumable/Drinks/orange_bottle.rsi - type: entity - name: red Bottle + name: red bottle parent: CP14GreenBottle id: CP14RedBottle description: A red bottle perfect for drinking wine. diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/goblet.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/goblet.yml new file mode 100644 index 0000000000..8df28706b7 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/goblet.yml @@ -0,0 +1,54 @@ +- type: entity + parent: CP14DrinkBaseMug + id: CP14DrinkBaseGoblet + name: goblet + description: A metal goblet for those who want to drink exquisitely. + abstract: true + categories: [ ForkFiltered ] + components: + - type: SolutionContainerVisuals + maxFillLevels: 5 + fillBaseName: fill- + +- type: entity + parent: CP14DrinkBaseGoblet + id: CP14SteelGobletIron + name: iron goblet + categories: [ ForkFiltered ] + components: + - type: Sprite + sprite: _CP14/Objects/Consumable/Drinks/goblet.rsi + layers: + - state: iron_goblet + - map: ["enum.SolutionContainerLayers.Fill"] + state: fill-5 + visible: false + +- type: entity + parent: CP14DrinkBaseGoblet + id: CP14SteelGobletCopper + name: copper goblet + categories: [ ForkFiltered ] + components: + - type: Sprite + sprite: _CP14/Objects/Consumable/Drinks/goblet.rsi + layers: + - state: copper_goblet + - map: ["enum.SolutionContainerLayers.Fill"] + state: fill-5 + visible: false + +- type: entity + parent: CP14DrinkBaseGoblet + id: CP14SteelGobletGold + name: gold goblet + description: A goblet made of solid gold to show how rich its owner is. + categories: [ ForkFiltered ] + components: + - type: Sprite + sprite: _CP14/Objects/Consumable/Drinks/goblet.rsi + layers: + - state: gold_goblet + - map: ["enum.SolutionContainerLayers.Fill"] + state: fill-5 + visible: false diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/mugs.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/mugs.yml index 567d3cc3ce..e5d44f250b 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/mugs.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Drinks/mugs.yml @@ -64,7 +64,7 @@ - type: entity parent: CP14DrinkBaseMug id: CP14MetalBeerMug - name: Metal mug + name: metal mug categories: [ ForkFiltered ] description: The most common metal mug. components: @@ -82,7 +82,7 @@ - type: entity parent: CP14DrinkBaseMug id: CP14WoodenBeerMug - name: Wooden mug + name: wooden mug categories: [ ForkFiltered ] description: Wooden mug for beer. components: @@ -92,7 +92,7 @@ - type: entity parent: CP14DrinkBaseMug id: CP14SteelBeerMug - name: Beer mug + name: beer mug categories: [ ForkFiltered ] description: Wooden mug with iron inclusions. components: @@ -102,7 +102,7 @@ - type: entity parent: CP14DrinkBaseMug id: CP14SteelWoodBeerMug - name: Beer mug + name: beer mug categories: [ ForkFiltered ] description: Wooden mug with iron inclusions. components: diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/base.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/base.yml new file mode 100644 index 0000000000..451582c645 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/base.yml @@ -0,0 +1,14 @@ +- type: entity + abstract: true + id: CP14BurnsAsh + categories: [ ForkFiltered ] + components: + - type: Temperature + currentTemperature: 290 + - type: InternalTemperature + thickness: 0.02 + area: 0.02 + - type: CP14TemperatureTransformation + entries: + - temperatureRange: 400, 500 + transformTo: CP14Ash1 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/cutlery.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/cutlery.yml new file mode 100644 index 0000000000..7e5019adbb --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/cutlery.yml @@ -0,0 +1,105 @@ +- type: entity + id: CP14Plate + parent: BaseItem + name: plate + description: This is your plate for a delicious meal! + categories: [ ForkFiltered ] + components: + - type: Sprite + sprite: _CP14/Objects/Consumable/Food/plates.rsi + state: plate + - type: Item + shape: + - 0,0,1,0 + - type: Tag + tags: + - CP14Plate + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 # 2 wooden plank in craft + +- type: entity + id: CP14PlatePie + parent: BaseItem + name: pie plate + description: A mould for making a delicious pie. + categories: [ ForkFiltered ] + components: + - type: Sprite + sprite: _CP14/Objects/Consumable/Food/pie.rsi + state: tin + - type: Item + shape: + - 0,0,1,0 + - type: Tag + tags: + - CP14PlatePie + - type: PhysicalComposition + materialComposition: + CP14Iron: 10 # 1 iron bar = 1 plate pie in craft + +- type: entity + parent: BaseItem + id: CP14Fork + name: fork + description: Thousands of years of progress, and there it is, the fork. + categories: [ ForkFiltered ] + components: + - type: Tag + tags: + - Hoe + - Metal + - type: Sprite + sprite: _CP14/Objects/Consumable/Food/cutlery.rsi + state: fork + - type: Item + sprite: _CP14/Objects/Consumable/Food/cutlery.rsi + heldPrefix: fork + - type: Utensil + types: + - Fork + - type: MeleeWeapon + wideAnimationRotation: 180 + attackRate: 1.5 + damage: + types: + Piercing: 1 + - type: PhysicalComposition + materialComposition: + CP14Iron: 4 + +- type: entity + parent: BaseItem + id: CP14Spoon + name: spoon + description: It is considered the first tool for eating, not counting the hands. + categories: [ ForkFiltered ] + components: + - type: Tag + tags: + - Metal + - type: Sprite + sprite: _CP14/Objects/Consumable/Food/cutlery.rsi + state: spoon + - type: Item + sprite: _CP14/Objects/Consumable/Food/cutlery.rsi + heldPrefix: spoon + - type: Utensil + types: + - Spoon + - type: MeleeWeapon + wideAnimationRotation: 180 + attackRate: 1.5 + damage: + types: + Blunt: 1 + - type: Shovel + speedModifier: 0.1 # you can try + - type: ReactionMixer + mixMessage: "spoon-mixing-success" + timeToMix: 0.5 + reactionTypes: + - Stir + - type: PhysicalComposition + materialComposition: + CP14Iron: 4 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat.yml index 1eb231403b..ef45a00090 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat.yml @@ -177,6 +177,9 @@ Quantity: 2 - ReagentId: Fat Quantity: 6 + - type: Tag + tags: + - CP14CookedMeatSlice - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 @@ -512,6 +515,9 @@ - random: rabbit_meat1_cooked: "" rabbit_meat2_cooked: "" + - type: Tag + tags: + - CP14CookedMeatSlice - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 @@ -633,6 +639,9 @@ Quantity: 10 - ReagentId: Fat Quantity: 12 + - type: Tag + tags: + - CP14CookedMeatLeg - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 @@ -759,6 +768,9 @@ Quantity: 1 - ReagentId: Fat Quantity: 4 + - type: Tag + tags: + - CP14CookedMeatSlice - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 @@ -890,6 +902,9 @@ Quantity: 3 - ReagentId: Fat Quantity: 4 + - type: Tag + tags: + - CP14CookedMeatLeg - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 @@ -948,6 +963,9 @@ Quantity: 0.5 - ReagentId: Fat Quantity: 1.5 + - type: Tag + tags: + - CP14CookedMeatSlice - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 @@ -1182,4 +1200,4 @@ - type: CP14TemperatureTransformation entries: - temperatureRange: 400, 500 - transformTo: CP14Ash1 \ No newline at end of file + transformTo: CP14Ash1 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat_dish.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat_dish.yml new file mode 100644 index 0000000000..f669fab854 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/meat_dish.yml @@ -0,0 +1,80 @@ +- type: entity + name: ham in cheese + parent: + - FoodInjectableBase + - CP14BurnsAsh + id: CP14FoodHamCheese + description: Juicy and oozy ham, in cheese and lettuce leaves. Just like in the best restaurants. + categories: [ ForkFiltered ] + components: + - type: FlavorProfile + flavors: + - meaty + - cabbage + - cheesy + - type: SolutionContainerManager + solutions: + food: + maxVol: 32 + reagents: + - ReagentId: Nutriment + Quantity: 13 + - ReagentId: Protein + Quantity: 12 + - ReagentId: Vitamin + Quantity: 2.5 + - type: Sprite + layers: + - sprite: _CP14/Objects/Consumable/Food/plates.rsi + state: plate + - sprite: _CP14/Objects/Consumable/Food/pig_cheese.rsi + state: pig_cheese + - type: Tag + tags: + - Meat + - type: Food + trash: + - CP14Plate + +- type: entity + name: Klanir stuffed pumpkin + parent: + - FoodInjectableBase + - CP14BurnsAsh + id: CP14FoodStuffedPumpkin + description: Pumpkin stuffed with meat and vegetables is very popular among the people of the Kingdom of Klanir. + categories: [ ForkFiltered ] + components: + - type: FlavorProfile + flavors: + - meaty + - pumpkin + - CP14HotPotato + - type: Sprite + layers: + - sprite: _CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi + state: stuffed_pumpkin1 + map: [ "random" ] + - type: RandomSprite + available: + - random: + stuffed_pumpkin1: "" + stuffed_pumpkin2: "" + - type: SolutionContainerManager + solutions: + food: + maxVol: 35 + reagents: + - ReagentId: PumpkinFlesh + Quantity: 4 + - ReagentId: Protein + Quantity: 2 + - ReagentId: Nutriment + Quantity: 13 + - ReagentId: Vitamin + Quantity: 6 + - ReagentId: Fat + Quantity: 6 + - type: Tag + tags: + - Meat diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/plate.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/plate.yml deleted file mode 100644 index 157191d52e..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/plate.yml +++ /dev/null @@ -1,39 +0,0 @@ -- type: entity - id: CP14Plate - parent: BaseItem - name: plate - description: This is your plate for a delicious meal! - categories: [ ForkFiltered ] - components: - - type: Sprite - sprite: _CP14/Objects/Consumable/Food/plates.rsi - state: plate - - type: Item - shape: - - 0,0,1,0 - - type: Tag - tags: - - CP14Plate - - type: PhysicalComposition - materialComposition: - CP14WoodenPlanks: 20 # 2 wooden plank in craft - -- type: entity - id: CP14PlatePie - parent: BaseItem - name: pie plate - description: A mould for making a delicious pie. - categories: [ ForkFiltered ] - components: - - type: Sprite - sprite: _CP14/Objects/Consumable/Food/pie.rsi - state: tin - - type: Item - shape: - - 0,0,1,0 - - type: Tag - tags: - - CP14PlatePie - - type: PhysicalComposition - materialComposition: - CP14Iron: 10 # 1 iron bar = 1 plate pie in craft \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/simple_dish.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/simple_dish.yml index 75ca643a46..215bfadcf0 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/simple_dish.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/simple_dish.yml @@ -1,6 +1,8 @@ - type: entity id: CP14FoodPotatoHot - parent: FoodInjectableBase + parent: + - FoodInjectableBase + - CP14BurnsAsh categories: [ ForkFiltered ] name: hot potato description: Warm and ruddy potatoes cooked over the fire. @@ -25,13 +27,79 @@ - type: SolutionContainerManager solutions: food: - maxVol: 11 + maxVol: 8 reagents: - ReagentId: Nutriment - Quantity: 7 + Quantity: 4 - ReagentId: Vitamin Quantity: 2 - - type: CP14TemperatureTransformation - entries: - - temperatureRange: 400, 500 - transformTo: CP14Ash1 + +- type: entity + id: CP14FoodStuffedPotato + parent: + - FoodInjectableBase + - CP14BurnsAsh + categories: [ ForkFiltered ] + name: stuffed potato + description: Baked potatoes stuffed with juicy meat. + components: + - type: Item + size: Tiny + - type: FlavorProfile + flavors: + - CP14HotPotato + - meaty + - type: Sprite + sprite: _CP14/Objects/Consumable/Food/hot_potato.rsi + layers: + - state: stuffed_potato1 + map: [ "random" ] + - type: RandomSprite + available: + - random: + stuffed_potato1: "" + stuffed_potato2: "" + stuffed_potato3: "" + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 9 + - ReagentId: Protein + Quantity: 1 + - ReagentId: Vitamin + Quantity: 2 + - ReagentId: Fat + Quantity: 2 + +- type: entity + id: CP14FoodChromiumJelly + parent: + - FoodInjectableBase + - CP14BurnsAsh + categories: [ ForkFiltered ] + name: chromium jelly + description: At first glance unremarkable, but tastier than it looks, the main thing is not to overeat. + components: + - type: Item + size: Tiny + - type: FlavorProfile + flavors: + - jelly + - type: Sprite + sprite: _CP14/Objects/Consumable/Food/jelly.rsi + layers: + - state: chromium_jelly + - type: SolutionContainerManager + solutions: + food: + maxVol: 9 + reagents: + - ReagentId: CP14ChromiumSlime + Quantity: 1 + - ReagentId: Vitamin + Quantity: 6 + - type: Temperature + currentTemperature: 250 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Flora/wild.yml b/Resources/Prototypes/_CP14/Entities/Objects/Flora/wild.yml index 80dd236113..3bdc88af61 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Flora/wild.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Flora/wild.yml @@ -113,6 +113,15 @@ reagents: - ReagentId: CP14ChromiumSlime Quantity: 4 + - type: Temperature + currentTemperature: 250 + - type: InternalTemperature + thickness: 0.02 + area: 0.02 + - type: CP14TemperatureTransformation + entries: + - temperatureRange: 100, 200 + transformTo: CP14FoodChromiumJelly - type: entity id: CP14WildSage diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml index f1a2a441f2..1499026d55 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/Anvil/misc.yml @@ -444,3 +444,70 @@ stack: CP14CopperBar count: 1 result: CP14EnergyCrystalMediumEmpty + +- type: CP14Recipe + id: CP14Fork + tag: CP14RecipeAnvil + craftTime: 2 + requirements: + - !type:SkillRequired + skills: + - IronMelting + - !type:StackResource + stack: CP14IronBar + count: 1 + result: CP14Fork + resultCount: 2 + +- type: CP14Recipe + id: CP14Spoon + tag: CP14RecipeAnvil + craftTime: 2 + requirements: + - !type:SkillRequired + skills: + - IronMelting + - !type:StackResource + stack: CP14IronBar + count: 1 + result: CP14Spoon + resultCount: 2 + +- type: CP14Recipe + id: CP14SteelGobletCopper + tag: CP14RecipeAnvil + craftTime: 2 + requirements: + - !type:SkillRequired + skills: + - CopperMelting + - !type:StackResource + stack: CP14CopperBar + count: 1 + result: CP14SteelGobletCopper + +- type: CP14Recipe + id: CP14SteelGobletIron + tag: CP14RecipeAnvil + craftTime: 2 + requirements: + - !type:SkillRequired + skills: + - IronMelting + - !type:StackResource + stack: CP14IronBar + count: 1 + result: CP14SteelGobletIron + +- type: CP14Recipe + id: CP14SteelGobletGold + tag: CP14RecipeAnvil + craftTime: 2 + requirements: + - !type:SkillRequired + skills: + - GoldMelting + - !type:StackResource + stack: CP14GoldBar + count: 1 + result: CP14SteelGobletGold diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/meat_dish.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/meat_dish.yml new file mode 100644 index 0000000000..5049ce2f3d --- /dev/null +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/meat_dish.yml @@ -0,0 +1,40 @@ +- type: CP14Recipe + id: CP14FoodHamCheese + tag: CP14RecipeCooking + craftTime: 5 + requirements: + - !type:ProtoIdResource + protoId: CP14Plate + - !type:ProtoIdResource + protoId: CP14FoodCabbageSlice + count: 3 + - !type:ProtoIdResource + protoId: CP14FoodCheeseSlice + count: 2 + - !type:TagResource + tag: CP14CookedMeatLeg + count: 1 + title: cp14-recipe-title-meat-cooked-leg + texture: + sprite: _CP14/Objects/Consumable/Food/meat.rsi + state: different_meat_leg + result: CP14FoodHamCheese + +- type: CP14Recipe + id: CP14FoodStuffedPumpkin + tag: CP14RecipeCooking + craftTime: 5 + requirements: + - !type:ProtoIdResource + protoId: CP14FoodPumpkin + - !type:ProtoIdResource + protoId: CP14FoodPotatoHot + count: 2 + - !type:TagResource + tag: CP14CookedMeatSlice + count: 2 + title: cp14-recipe-title-meat-cooked + texture: + sprite: _CP14/Objects/Consumable/Food/meat.rsi + state: different_meat_slice + result: CP14FoodStuffedPumpkin diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/misc.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/misc.yml index 76b1524b70..8a78cd70f4 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/misc.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/misc.yml @@ -39,3 +39,19 @@ protoId: CP14FoodDoughMedium count: 1 result: CP14FoodDoughMediumFlat + +- type: CP14Recipe + id: CP14FoodStuffedPotato + tag: CP14RecipeCooking + craftTime: 1 + requirements: + - !type:ProtoIdResource + protoId: CP14FoodPotatoHot + - !type:TagResource + tag: CP14CookedMeatSlice + count: 1 + title: cp14-recipe-title-meat-cooked + texture: + sprite: _CP14/Objects/Consumable/Food/meat.rsi + state: different_meat_slice + result: CP14FoodStuffedPotato diff --git a/Resources/Prototypes/_CP14/tags.yml b/Resources/Prototypes/_CP14/tags.yml index d01219b63a..6702261538 100644 --- a/Resources/Prototypes/_CP14/tags.yml +++ b/Resources/Prototypes/_CP14/tags.yml @@ -156,3 +156,9 @@ - type: Tag id: CP14Sandwich + +- type: Tag + id: CP14CookedMeatSlice + +- type: Tag + id: CP14CookedMeatLeg diff --git a/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/copper_goblet.png b/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/copper_goblet.png new file mode 100644 index 0000000000000000000000000000000000000000..15011560ef50619e6ab02b53bf8af6193905be5d GIT binary patch literal 387 zcmV-}0et?6P)Px$JxN4CR9Hu2WEfz;IKcKZj5=U61V%$(=!U?oIHmufGDMR79k?j*o&A9<&yb}F zWck!n%wUVvq$R*~fz>Gn>*k*%n@6$+WXq9DQIJF8lrEDT5+pldbE?4qn!}=4OYj!k z*R*#)sjtQV0E6=kS*ztx9FcAImtpr)X@=E%50m66k`#k%1UbM?;s%3|#CNa*-o4-i z(}!MYFg*CiN hp>5OwqaiRF0s!MRharM9?bZMQ002ovPDHLkV1jW?pSu76 literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-1.png b/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-1.png new file mode 100644 index 0000000000000000000000000000000000000000..ca9b35d530cb6bec5e2160510b8b7f41b98f2baa GIT binary patch literal 136 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}PM$7~ArbCx zuNrbO7;rEp#}yd2v{)36Tz=3EG>yU2)z4*}Q$iB}U8^i- literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-2.png b/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/fill-2.png new file mode 100644 index 0000000000000000000000000000000000000000..10e01c7492e4bd10d0f36d263b5e89399e5d62cc GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}-kvUwArbCx zuWsaJFyLTz-1GlJU(kjI;ge@CGhY*3pgH~2?{)?bg$4#Df2M7<{yUdc_}$rY`up@H qijNrf&y!#jaA06$0TPY74lrH|=1|2; zl7*q~-W?Y@duE}72SaG-pSsC2ZkFErdO+{Dlg3kRZ?+$=I~W@nc@h|yLHcg-+U%AW VR%HJ;OXk;vd$@?2>>VyJvaaW literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/gold_goblet.png b/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/gold_goblet.png new file mode 100644 index 0000000000000000000000000000000000000000..bb1b90ab60d5f33281bf2580eed6f91fd9c55387 GIT binary patch literal 387 zcmV-}0et?6P)Px$JxN4CR9Hu2WEfz;IKcKZj5=U61V%$(=!U?HF0=ojGK5oJ6kL?>hi@gzGh}H3 zS>ChuCD>v)K{ha*JIjTEQEocP=8>!c*>dDk6y%WjL^YB_f@BALT#R z-oNP~!=tx9>E{5DrQaXE23vmO;x{l&7Y87R0?YxRpnvrK7emjEDn4#?y*WRVR3U#c+qyC91a_P1pPWALZ*6UT zc=2)gmtuw!m!h|?Yt*g(@IY?HvTo)H&Wz6(0xsCs6ik2kW@W5OyT(bW3$hHGV*J8- z9)5WE7^FkcF>&U9$D4d2-=9SB8MUtwXi%+BHa0KF^zgfI_>97B#szm6yh;}AU>9{- zl4jo}!*IH*_}MvT>xMf<4R16UEFByjJ0IzIY-3KaWSsWh(Ij>;L$<5KGKHI+6MTLf fZ0Usr5(9(U@?OQ;W?2t_p~~Rt>gTe~DWM4fBK)F> literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/meta.json b/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/meta.json new file mode 100644 index 0000000000..d6aabc8cd2 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Consumable/Drinks/goblet.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "copper_goblet" + }, + { + "name": "iron_goblet" + }, + { + "name": "gold_goblet" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + }, + { + "name": "fill-4" + }, + { + "name": "fill-5" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork-inhand-left.png b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..cb2a4b4c6b001e4b62226b753c0ea3da16848186 GIT binary patch literal 439 zcmV;o0Z9IdP)Px$aY;l$RCr$PnmY=@KoEvEm$35z9zhT+(s}?3?_ei*0Pz5Vop-SC0JbRv!6OJh zIxi7P5fGa&yZZ-c_P5PucIKOJVzHaK#D7`h^*aKf0f`gf2qZ25KY|X96C5Zs4&HxmIs0N^tM8+imBwY=$ zX@G_kG{9O%rS;GNDKTs7X@Iqk hO6#EkQexKDe*k4?SwTa=Dq{cu002ovPDHLkV1mfQtw{g? literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork-inhand-right.png b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..5c653561940fd81bc6dbbd4c9e72067522569449 GIT binary patch literal 444 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z%RF5iLn`9l z&f3e#^-0S5@j@CoGAQ&!$pq4j>VEmrtt)40gDnp!++Kz{Rc8^ z&i-m%XeIZpeybFtPWbCLU;jzeOPqRf=2`cfpF39H{@TKL;mM_vMNaJtN@pC&7Up(8 zAT~cBDBw!^%Jhc5iJ5Iq?Ezd49!j|r|6gTdbl~S_lwna|am?svX%LzmcAmwfSmf$q zmIX(aTs3CAB;)$kfKkIR^Q%vTiF=@}4}+Ial&!GB*}xEfVeHCTCN`Lbf8EOPVrl03 z+kv~^F1u!FcKue&)$lwU@p`-X9)0;6EsFQIZ(X&Xb-|0X+%9uY-|}Km$?eo;EO;4l zx!jpS#d3ag3xkR8{r1ls2iV19z8zrMvE=>XyFLy4dOO}Uau#^rZ{IzWK|ZG7=3((v X=}5p%7bql3ZI)z4*}Q$iB}$7Ql4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork.png b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/fork.png new file mode 100644 index 0000000000000000000000000000000000000000..e74f394de46e36706689395e99a37b6e3e547dd3 GIT binary patch literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}cRgJkLn7Rh zQzQ}&SRD9f++&qs!g7MEk#n;6Km8NE=`PDpdR|DeT(DrrzyB@w+}uj4o>(Yo=zRXa zEA+DD#mrr;3@0A7^S?7Xp{-$jAY(%Fi&qU(o~X1%Z(nD)Vr8b`nVHu8jqmt2Y~I>X z{o}$z;V-2OC(;5;PMqvAw5j^jm2=wh*#yyigY}1n6fFz+FFS8zc9_<@sBzMRwwx?TX$e=Sexei}@sY8!rklv@)zQlbMjip>@=uZ^4nGE-xpq mQ}ro(Q^Z|BDj2g`85nf-E>H|V@Q54eQ3g*}KbLh*2~7Z1uXT6; literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/meta.json b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/meta.json new file mode 100644 index 0000000000..428036783e --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "fork" + }, + { + "name": "fork-inhand-left", + "directions": 4 + }, + { + "name": "fork-inhand-right", + "directions": 4 + }, + { + "name": "spoon" + }, + { + "name": "spoon-inhand-left", + "directions": 4 + }, + { + "name": "spoon-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon-inhand-left.png b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..88e2f34027c3eca13d6abefa3ecad5a564d0617a GIT binary patch literal 417 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zqdi?5Ln`9l z&NSp=G8Ay#oG!%Doon0BTE0QprlEr2;5qAv3WnRdEC;bbxhK)- z>c;Q)A5rpM@#lJoUA+Q>RDdO;T;nO$2dXEO4=BSp`wyh_A1K@2zx*-dJ^7O6JBpXe z*MC=!(NE8)fBECEnTK=9UE3{hm7b_r&enhYxv=@`_4~COc*9=%`poW`m~_&Wk8wiV z{9g|Wn7x92e${>Du|ldLD@gj;hIv{HDT`O!VrfvyUaH5tVUoxye<=#s9gI8AKU$&q z|7s|Ez%L!W)&Q<(*#k4qKa$#TmC-|3CpMnzj!lDH!n@O3q#1Uq?POLkJt)htl9NS2 n^;xbh?}uqCO5~)_*?+~q2M0K|RhO*+hBgJ; literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon-inhand-right.png b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..c1d3cd9eb4a1d9e2004c42d9ced7938eea6e7f8b GIT binary patch literal 412 zcmV;N0b~A&P)Px$R!KxbRCr$PnXwJRFc3wPCFo!YBqWNo3_!sSbVv+<7yyZm9Vi%pHU$zAGX=Rw z6Je6?*i!EMQ=hH-@7{&NWs&)>%shV~05TwR0$PF01<*%OE1(s~oPbs!a{=@(K)(Wq z#cSLVFYdlo(sR3}Blmnnwnp#MtU(0NX^- zJTd?!##S!_*d~hRkpU<%wt5-BHc>Q>3_yvo)yn|3iK2OA07{IlUIwsD6wPDCfK*TQ zqX498syoG$PxZk7Qa1HV<5W-e!2nV5R0VMdt`vs$;Ikh2E-z1^`0-fOie-iSbZe`00005pr literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon.png b/Resources/Textures/_CP14/Objects/Consumable/Food/cutlery.rsi/spoon.png new file mode 100644 index 0000000000000000000000000000000000000000..90dfcf0f7f64554a884d0267bf55fd97a5ed4c42 GIT binary patch literal 312 zcmV-80muG{P)Px#@<~KNR9Hu2WEfz;IKcKZj5=U61jr7736mH8fAHWQI1NweZ6w;JpC`GDj7;e)&2D3FsCqhAPs!X4xY1qCGrSS}zp_(5iooCaVK z9~74PpAw(L%puzWAOk>-AUFF_>;RDElw`l5?*L;nxBsC04=Rk#p4vrrRFbW6)B&R* zFd71&5CBy~pbBX~vLUD>137{c%PFdisMVn%yC52Mz-S0iD+B=H>7F6=xn0000< KMNUMnLSTXs^nT9( literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/meta.json b/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/meta.json index 979b2dc151..cfd5670ee6 100644 --- a/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by Dinazewwr", + "copyright": "Created by Dinazewwr, stuffed_potato by prazat911", "size": { "x": 32, "y": 32 @@ -18,6 +18,15 @@ }, { "name": "base4" + }, + { + "name": "stuffed_potato1" + }, + { + "name": "stuffed_potato2" + }, + { + "name": "stuffed_potato3" } ] } diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato1.png b/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato1.png new file mode 100644 index 0000000000000000000000000000000000000000..f18e773d24741fd209fe186e1fa8f4c649a35b7e GIT binary patch literal 353 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T<(w;7kArbD$ zDG~_>EDn4#?y*WRVR3T?5^Z@Lb7rJ|{NJ=!&Uumt-{If0g(Z%xeKzr_DpiWyKUhoM|EfQev=vgtDHT`7)}&v{}*aIr|&I!s&bJei%W`x-JZ%r2HMNJ z6m6W_90T3ERoo}MY3Qn0{eP8E{DFO}mP_>1`X6R?TQ!%Q^=;d{e!sEIeM#SHc9w|$ z%+?QH-OW#^I{wN%;q>awS0uMg-6^4S$xq;|;UdvPtKO=J-~FF-X%CNqyMi@K%Fi{S z@siKp?)2HR(?#1Q&%8kPx$V@X6oR9Hu2WEfz;IKcKZj5=U61V%$(Gz5lj2)sO&^#A^qYv6)Z-l2`*!<#1z z3un$?=va7+Bu|l~7*=e9EC;a#)e9Kry_v$`<fFe5R5i`Qmqm+b?)XasHF{}pw#7%bhFGRW}qF#PFJVUVu5$si-Z!=U3T z1hyOmHXLPQc=hx%(V;-J11jRJ{s&n91N*Rb+D!&yQBH=JKbRTfW2NDilj?hrgNb%P zl8f&Dv@mY4FF_W;04&%+iH{VY!}OEn0Bd7LxNl(wfP!3A;tNUfj@$?$+5sR!(uFd71*Aut*OqagqQF4v18 T+?=e$00000NkvXXu0mjfE>pGD literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato3.png b/Resources/Textures/_CP14/Objects/Consumable/Food/hot_potato.rsi/stuffed_potato3.png new file mode 100644 index 0000000000000000000000000000000000000000..6581714a37a984a2f7834040beb8eb4dfaca5dd8 GIT binary patch literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TEDn4#?y*WRVR3VY5E<0-m(KIZa`#V6QSLvEDn4#?y*WRVR3VAcq7m;yD;ChNGxv3LJ=>&X=nLcfD#N0Hdo3NHy-Jk3k*F5Pgg&ebxsLQ E0QzEwlK=n! literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/jelly.rsi/meta.json b/Resources/Textures/_CP14/Objects/Consumable/Food/jelly.rsi/meta.json new file mode 100644 index 0000000000..1a08acde1d --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Consumable/Food/jelly.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chromium_jelly" + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/meat.rsi/different_meat_leg.png b/Resources/Textures/_CP14/Objects/Consumable/Food/meat.rsi/different_meat_leg.png new file mode 100644 index 0000000000000000000000000000000000000000..158db64c30d3288aa72805f55c4fbc7114d1e30f GIT binary patch literal 768 zcmV+b1ONPqP)Px%x=BPqR9J=WlwU|wQ5?rVw!nl9gBVIp(wT{%_^?QZ8s>xK6cmOE23m?f1dEIi%XLk8t!_^SR_9fjP2t%hdK)juy|ooT02?IYP~4bK zmB_tIg+UW_m3aX87M8f&JtR$>$g+k__HekMCf-q!E!T4^0U(hvbrt}VL66P+nQuvU z0Q}$KwK@(=Q&*WMt5H*4tJ{8dD7&`6Y={?H_H!!%#?)CX$q8~lJ1vP$#mm&&NdTO^ zGvu9)PMoOX*CZLJVyL%gUm9~GnW09f;st{9;`Ob|xMyt(n>AOOXmO6qw_`g|y@Xx%V&PESSd0nW z9(@Hs_r)r*(~=lam$_D500gVh=<LlIrfqPT@pp^(1DjGj z5>Xp~;6R?tOy_>j4O+`eS^uK@OPx$*hxe|R9Hu2WEfz;IKcKZj5=U61V%$(Gz7>FffuJ^|APv#cQ3w!%QBy+&0u=< z#${mI*eRGOvx!oKURr`I2U-04!w<03?{^FgTuK~Zeqh#ahQp^0z_mzgTH>{XWCvW^ z9P&RSeLvg+FH3ze+r^Fxt0SoH03}}b|J80f3|H>IggfHwi|-5|hxjE3!9(HR=buD* zjwnSSn?S+-^2U2`5F3kfGECUI9qfRf=uie7MRA6O#~(1P+UUh_XYC7ywY#n}^q+e| zl-Wcn0$Kj#*n5VHhn|Bi>R&R8;o;4@3~kdEGi+Qni=n{Vli}>^?+ojwxiWmd`V;Jc zW1<2KCwE>UXg)y&AYX#w{oT=zU>{d4I>+$j^A~t(??_2zc=>}FEVd}y4s7`)6-lt# zy{k?WG@qaXSVXT|?*h(thnsIOfZ`kkK$gnz@<6hk1Si zpaPf!oWo52fBE>GL0wIdL0y@V;mx9Z5J!CY!VuYO!Z39?B!r~JIf$|tW-ieVKz0a- zogK*!wiM(jQhbbFrjYCakO6VIw*Nt)P+f3{v2}tSIBGy_bi;|^lck9mgNao$>VVM@ g7!85Z5Eu;s0Hw{oAxw#@=l}o!07*qoM6N<$f;q+W_5c6? literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/meta.json b/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/meta.json new file mode 100644 index 0000000000..d7f1c087f1 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stuffed_pumpkin1" + }, + { + "name": "stuffed_pumpkin2" + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/stuffed_pumpkin1.png b/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/stuffed_pumpkin1.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef5c4131be605746eee3cea9d4959a8ee88315d GIT binary patch literal 471 zcmV;|0Vw{7P)Px$kx4{BR9Hu2WEfz;IKcKZj5=U61V%$(Gz5lj2Ji1@|Du)`}<$)kFXQ N002ovPDHLkV1i_k$d>>B literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/stuffed_pumpkin2.png b/Resources/Textures/_CP14/Objects/Consumable/Food/stuffed_pumpkin.rsi/stuffed_pumpkin2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a17852d5cd0d0e16fe9d523db2da2d77375adda GIT binary patch literal 481 zcmV<70UrK|P)Px$n@L1LR9Hu2WEfz;IKcKZj5=U61V%$(Gz5lb2Tz~kBp}OD@ zS)L(T6Ug$@_Ua6Q$Nn=&n?7fl!YT!J3(uxk44VA!!ECqnFNrpnXoVnyL6+~j%f(P% zk;-tQX(hw!Uq2akc#AR^UwzH+#ZQdEY{o|hhv}vaPq%JkQ0RF^l-Wcnf(19o0dFn} zf-Mz0_=MrSh6sb-o6ii7-~427vQ%T(cl;JZZ7efb`TLjOh;jr;4tP)^_5ar0zYMkC zL>cmL|6#cH`zu3vXC}kpg9jOoZM()`XYz~T`lHVbnsU4hYRb&ibpXtAkii@Ge*jy8 z4$Q51!9EAc`#TEI#sMH7f(#cF=K|Z$W#Yi_?aTqVTVM_VIgpsdNOTmyvK}mmLB2%> zAd5kcI(h6fJQ`@~08mtbECgAM3_xiF=17`50A?}BQjmi{Gzfqkkbm|YQK3teBA7)J zjk*4V;vZ%aw)P~ksUN17BnN;rfgFJ?2Y`GH0>t{9YzI)g6-{yoj5=U61V%$(*o6Q9 X^Q5;S$IXg+00000NkvXXu0mjfoBquS literal 0 HcmV?d00001