diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/pie.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/pie.yml index dd0fedf36d..668808026f 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/pie.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/pie.yml @@ -215,3 +215,73 @@ entries: - temperatureRange: 400, 500 transformTo: CP14Ash1 + +- type: entity + name: raw pumpkin pie + parent: CP14FoodPieBaseRaw + id: CP14FoodPiePumpkinRaw + description: Raw dough with pumpkin, can be a satisfyingly flavorful dish. + components: + - type: FlavorProfile + flavors: + - raw dough + - pumpkin + - type: Sprite + layers: + - state: tin + - state: pumpkin_raw + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Nutriment + Quantity: 6 + - ReagentId: UncookedAnimalProteins + Quantity: 2 + - ReagentId: PumpkinFlesh + Quantity: 5 + - ReagentId: Vitamin + Quantity: 4 + - type: Tag + tags: + - Fruit + - type: CP14TemperatureTransformation + entries: + - temperatureRange: 400, 500 + transformTo: CP14FoodPiePumpkin + +- type: entity + name: pumpkin pie + parent: CP14FoodPieBase + id: CP14FoodPiePumpkin + description: Delicious pumpkin pie, with a toasted crust on the outside. + components: + - type: FlavorProfile + flavors: + - pumpkin + - type: Sprite + layers: + - state: tin + - state: pumpkin + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Nutriment + Quantity: 6 + - ReagentId: Protein + Quantity: 2 + - ReagentId: PumpkinFlesh + Quantity: 5 + - ReagentId: Vitamin + Quantity: 4 + - type: Tag + tags: + - Fruit + - Pie + - type: CP14TemperatureTransformation + entries: + - temperatureRange: 400, 500 + transformTo: CP14Ash1 diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml index 4bf46143d1..fd7a4921f5 100644 --- a/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/_CP14/Entities/Objects/Consumable/Food/produce.yml @@ -136,7 +136,7 @@ food: maxVol: 6 # 1/5 pumpkin reagents: - - ReagentId: Nutriment + - ReagentId: PumpkinFlesh Quantity: 4 - ReagentId: Vitamin Quantity: 1 diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/pies.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/pies.yml index 0dc965fa32..9a7a8a84c5 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/pies.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/CookingTable/pies.yml @@ -25,3 +25,17 @@ protoId: CP14FoodMeatLambSlice count: 3 result: CP14FoodPieMeatRaw + +- type: CP14Recipe + id: CP14FoodPiePumpkinRaw + tag: CP14RecipeCooking + craftTime: 5 + requirements: + - !type:ProtoIdResource + protoId: CP14PlatePie + - !type:ProtoIdResource + protoId: CP14FoodDoughMediumFlat + - !type:ProtoIdResource + protoId: CP14FoodPumpkinSlice + count: 5 + result: CP14FoodPiePumpkinRaw diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/meta.json b/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/meta.json index 9857793136..95235ef825 100644 --- a/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/meta.json +++ b/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-4.0", - "copyright": "Created by Artista", + "copyright": "Created by Artista, pumpkin by aeoli (discord)", "states": [ { "name": "apple" @@ -25,6 +25,12 @@ { "name": "meat_raw" }, + { + "name": "pumpkin" + }, + { + "name": "pumpkin_raw" + }, { "name": "tin" } diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/pumpkin.png b/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/pumpkin.png new file mode 100644 index 0000000000..5068ff2598 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/pumpkin.png differ diff --git a/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/pumpkin_raw.png b/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/pumpkin_raw.png new file mode 100644 index 0000000000..2157a98544 Binary files /dev/null and b/Resources/Textures/_CP14/Objects/Consumable/Food/pie.rsi/pumpkin_raw.png differ