Tortilla dough, Taco shells, and Tacos (#20797)

LGTM!
This commit is contained in:
phunnyguy
2023-10-18 17:03:23 -04:00
committed by GitHub
parent 7b4ceb9d0c
commit c92b99f6ba
20 changed files with 347 additions and 12 deletions

View File

@@ -379,6 +379,54 @@
- type: Sprite
state: cornmealdough-slice
- type: entity
name: tortilla dough
parent: FoodBakingBase
id: FoodDoughTortilla
description: A piece of tortilla dough.
components:
- type: FlavorProfile
flavors:
- chalky
- dough
- type: Sprite
state: tortilladough
- type: SliceableFood
count: 3
slice: FoodDoughTortillaSlice
- type: entity
name: tortilla dough slice
parent: FoodBakingBase
id: FoodDoughTortillaSlice
description: A slice of tortilla dough.
components:
- type: FlavorProfile
flavors:
- chalky
- dough
- type: Sprite
state: tortilladough-slice
- type: Construction
graph: Tortilla
node: start
- type: entity
name: flattened tortilla dough
parent: FoodBakingBase
id: FoodDoughTortillaFlat
description: A flattened slice of tortilla dough, cook this to get a taco shell.
components:
- type: FlavorProfile
flavors:
- chalky
- dough
- type: Sprite
state: tortilladough-flat
- type: Construction
graph: Tortilla
node: flat
- type: entity
name: bun
parent: FoodBakingBase
@@ -460,7 +508,7 @@
components:
- type: Sprite
state: butter
- type: entity
name: stick of cannabis butter
parent: FoodBakingBase

View File

@@ -580,9 +580,9 @@
- Fruit
- type: entity
name: taco
name: soft taco
parent: FoodMealBase
id: FoodMealTaco
id: FoodMealSoftTaco
description: Take a bite!
components:
- type: FlavorProfile
@@ -592,10 +592,8 @@
- meaty
- onion
- type: Sprite
state: taco
- type: Tag
tags:
- Meat
state: softtaco
- type: entity
name: corn in butter

View File

@@ -0,0 +1,145 @@
- type: entity
name: taco shell
parent: FoodMealBase
id: FoodTacoShell
description: A taco shell, easy to hold, but falls on its side when put down.
components:
- type: Food
- type: Sprite
sprite: Objects/Consumable/Food/taco.rsi
layers:
- state: tacoshell
- type: SolutionContainerManager
solutions:
food:
maxVol: 10
reagents:
- ReagentId: Nutriment
Quantity: 6.66 # Just using the same values as the bun values, since the recipe for taco shells is roughly the same as buns.
# Base
- type: entity
parent: FoodInjectableBase
id: FoodTacoBase
abstract: true
components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- type: Food
transferAmount: 3
- type: Sprite
sprite: Objects/Consumable/Food/taco.rsi
- type: SolutionContainerManager
solutions:
food:
maxVol: 15
reagents:
- ReagentId: Nutriment
Quantity: 6
- ReagentId: Vitamin
Quantity: 4
- type: Item
sprite: Objects/Consumable/Food/taco.rsi
- type: entity
name: beef taco
parent: FoodTacoBase
id: FoodTacoBeef
description: A very basic and run of the mill beef taco, now with cheese!
components:
- type: Food
- type: Sprite
state: beeftaco
- type: entity
name: chicken taco
parent: FoodTacoBase
id: FoodTacoChicken
description: A very basic and run of the mill chicken taco, now with cheese!
components:
- type: Food
- type: Sprite
state: chickentaco
- type: entity
name: fish taco
parent: FoodTacoBase
id: FoodTacoFish
description: Sounds kinda gross, but it's actually not that bad.
components:
- type: FlavorProfile
flavors:
- onion
- fishy
- type: Food
- type: Sprite
state: fishtaco
- type: SolutionContainerManager
solutions:
food:
maxVol: 20
reagents:
- ReagentId: Nutriment
Quantity: 10
- ReagentId: Vitamin
Quantity: 6
- type: entity
name: rat taco
parent: FoodTacoBase
id: FoodTacoRat
description: Yeah, that looks about right...
components:
- type: Food
- type: Sprite
state: rattaco
- type: SolutionContainerManager
solutions:
food:
maxVol: 15
reagents:
- ReagentId: Nutriment
Quantity: 6
- ReagentId: Vitamin
Quantity: 4
- type: entity
name: beef taco supreme
parent: FoodTacoBase
id: FoodTacoBeefSupreme
description: It's like a regular beef taco, but surpeme!
components:
- type: Food
- type: Sprite
state: beeftacosupreme
- type: SolutionContainerManager
solutions:
food:
maxVol: 26
reagents:
- ReagentId: Nutriment
Quantity: 14
- ReagentId: Vitamin
Quantity: 6
- type: entity
name: chicken taco supreme
parent: FoodTacoBase
id: FoodTacoChickenSupreme
description: It's like a regular chicken taco, but surpeme!
components:
- type: Food
- type: Sprite
state: chickentacosupreme
- type: SolutionContainerManager
solutions:
food:
maxVol: 26
reagents:
- ReagentId: Nutriment
Quantity: 14
- ReagentId: Vitamin
Quantity: 6