TG Station Burgers (#15217)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
parent
a9a8b46819
commit
c2a5ca96e8
|
|
@ -17,6 +17,7 @@ flavor-base-spicy = spicy
|
|||
flavor-base-metallic = metallic
|
||||
flavor-base-meaty = meaty
|
||||
flavor-base-fishy = fishy
|
||||
flavor-base-crabby = crabby
|
||||
flavor-base-cheesy = cheesy
|
||||
flavor-base-funny = funny
|
||||
flavor-base-tingly = tingly
|
||||
|
|
@ -69,6 +70,8 @@ flavor-complex-batter = like batter
|
|||
flavor-complex-butter = like butter
|
||||
flavor-complex-egg = like egg
|
||||
flavor-complex-bacon = like bacon
|
||||
flavor-complex-chicken = like chicken
|
||||
flavor-complex-duck = like duck
|
||||
flavor-complex-chocolate = like chocolate
|
||||
flavor-complex-pasta = like pasta
|
||||
flavor-complex-rice = like rice
|
||||
|
|
@ -128,6 +131,11 @@ flavor-complex-bad-joke = like a bad joke
|
|||
flavor-complex-memory-leek = like a fork bomb
|
||||
flavor-complex-gunpowder = like gunpowder
|
||||
flavor-complex-validhunting = like validhunting
|
||||
flavor-complex-people = like people
|
||||
flavor-complex-cat = like cat
|
||||
flavor-complex-homerun = like a home run
|
||||
flavor-complex-grass = like grass
|
||||
flavor-complex-flare = like a smoking flare
|
||||
flavor-complex-cobwebs = like cobwebs
|
||||
flavor-complex-sadness = like sadness
|
||||
flavor-complex-hope = like hope
|
||||
|
|
|
|||
|
|
@ -10,6 +10,9 @@ ent-CrateNPCCat = Cat crate
|
|||
ent-CrateNPCChicken = Chicken crate
|
||||
.desc = A crate containing four fully grown chickens.
|
||||
|
||||
ent-CrateNPCCrab = Crab crate
|
||||
.desc = A crate containing three huge crabs.
|
||||
|
||||
ent-CrateNPCDuck = Duck crate
|
||||
.desc = A crate containing six fully grown ducks.
|
||||
|
||||
|
|
|
|||
|
|
@ -38,6 +38,16 @@
|
|||
category: Livestock
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
id: LivestockCrab
|
||||
icon:
|
||||
sprite: Mobs/Animals/crab.rsi
|
||||
state: crab
|
||||
product: CrateNPCCrab
|
||||
cost: 1800
|
||||
category: Livestock
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
id: LivestockDuck
|
||||
icon:
|
||||
|
|
|
|||
|
|
@ -44,6 +44,15 @@
|
|||
- id: MobChicken
|
||||
amount: 4
|
||||
|
||||
- type: entity
|
||||
id: CrateNPCCrab
|
||||
parent: CrateLivestock
|
||||
components:
|
||||
- type: StorageFill
|
||||
contents:
|
||||
- id: MobCrab
|
||||
amount: 3
|
||||
|
||||
- type: entity
|
||||
id: CrateNPCDuck
|
||||
parent: CrateLivestock
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
- FoodBurgerBacon
|
||||
- FoodBurgerEmpowered
|
||||
- FoodBurgerCrab
|
||||
- FoodBurgerHuman
|
||||
- FoodBurgerSoy
|
||||
- FoodBurgerMcrib
|
||||
- FoodBurgerMcguffin
|
||||
|
|
@ -51,7 +52,9 @@
|
|||
rarePrototypes:
|
||||
- FoodBurgerAppendix
|
||||
- FoodBurgerRobot
|
||||
- FoodBurgerBaseball
|
||||
- FoodBurgerBear
|
||||
- FoodBurgerCat
|
||||
- FoodBurgerClown
|
||||
- FoodBurgerMime
|
||||
- FoodBurgerBrain
|
||||
|
|
|
|||
|
|
@ -25,6 +25,11 @@
|
|||
- type: Body
|
||||
prototype: Dwarf
|
||||
requiredLegs: 2
|
||||
- type: Butcherable
|
||||
butcheringType: Spike
|
||||
spawned:
|
||||
- id: FoodMeatHuman
|
||||
amount: 5
|
||||
- type: Fixtures
|
||||
fixtures: # TODO: This needs a second fixture just for mob collisions.
|
||||
fix1:
|
||||
|
|
|
|||
|
|
@ -8,6 +8,11 @@
|
|||
- type: Hunger
|
||||
- type: Thirst
|
||||
- type: Perishable
|
||||
- type: Butcherable
|
||||
butcheringType: Spike
|
||||
spawned:
|
||||
- id: FoodMeatHuman
|
||||
amount: 5
|
||||
|
||||
- type: entity
|
||||
name: Urist McHands
|
||||
|
|
|
|||
|
|
@ -15,6 +15,11 @@
|
|||
- type: Body
|
||||
prototype: Reptilian
|
||||
requiredLegs: 2
|
||||
- type: Butcherable
|
||||
butcheringType: Spike
|
||||
spawned:
|
||||
- id: FoodMeatLizard
|
||||
amount: 5
|
||||
- type: LizardAccent
|
||||
- type: Speech
|
||||
speechSounds: Lizard
|
||||
|
|
|
|||
|
|
@ -55,6 +55,10 @@
|
|||
id: FoodBurgerJelly
|
||||
description: Culinary delight..?
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- jelly
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: custburg-bottom
|
||||
|
|
@ -70,76 +74,71 @@
|
|||
id: FoodBurgerAppendix
|
||||
description: Tastes like appendicitis.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- grass
|
||||
- type: Sprite
|
||||
state: appendix
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 20
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 6
|
||||
# Tastes like bun, grass.
|
||||
|
||||
- type: entity
|
||||
name: fillet -o- carp burger
|
||||
name: bacon burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCarp
|
||||
description: Almost like a carp is yelling somewhere...
|
||||
id: FoodBurgerBacon
|
||||
description: The perfect combination of all things American.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- fishy
|
||||
- bacon
|
||||
- type: Sprite
|
||||
state: fish
|
||||
# Tastes like bun, fish.
|
||||
state: bacon
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 30
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 19
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 5
|
||||
# Tastes like bun, bacon.
|
||||
|
||||
- type: entity
|
||||
name: tofu burger
|
||||
name: baseball burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerTofu
|
||||
description: What... is that meat?
|
||||
id: FoodBurgerBaseball
|
||||
description: It's still warm. The steam coming off of it smells kinda sweaty.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- tofu
|
||||
- homerun
|
||||
- type: Sprite
|
||||
state: tofu
|
||||
state: baseball
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 8
|
||||
- ReagentId: Protein
|
||||
Quantity: 3
|
||||
# Tastes like bun, tofu.
|
||||
|
||||
- type: entity
|
||||
name: roburger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerRobot
|
||||
description: The lettuce is the only organic component. Beep.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- leafy
|
||||
- metallic
|
||||
- type: Sprite
|
||||
state: ro
|
||||
# Tastes like bun, lettuce, sludge.
|
||||
|
||||
- type: entity
|
||||
name: xenoburger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerXeno
|
||||
description: Smells caustic. Tastes like heresy.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- acidic
|
||||
- type: Sprite
|
||||
state: x
|
||||
# Tastes like bun, acid.
|
||||
- ReagentId: Protein
|
||||
Quantity: 5
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 2
|
||||
|
||||
- type: entity
|
||||
name: bearger
|
||||
|
|
@ -147,6 +146,10 @@
|
|||
id: FoodBurgerBear
|
||||
description: Best served rawr.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- type: Sprite
|
||||
state: bearger
|
||||
- type: SolutionContainerManager
|
||||
|
|
@ -156,107 +159,10 @@
|
|||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 5
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
|
||||
- type: entity
|
||||
name: clown burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerClown
|
||||
description: This tastes funny...
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- funny
|
||||
- type: Sprite
|
||||
state: clown
|
||||
|
||||
- type: entity
|
||||
name: mime burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerMime
|
||||
description: Its taste defies language.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- nothing
|
||||
- type: Sprite
|
||||
state: mime
|
||||
# Tastes like .
|
||||
|
||||
- type: entity
|
||||
name: brain burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerBrain
|
||||
description: A strange looking burger. It looks almost sentient.
|
||||
components:
|
||||
- type: Sprite
|
||||
state: brain
|
||||
# Tastes like bun, brains.
|
||||
|
||||
- type: entity
|
||||
name: ghost burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerGhost
|
||||
description: Too spooky!
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- spooky
|
||||
- type: Sprite
|
||||
state: ghost
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 12
|
||||
# Tastes like bun, ectoplasm.
|
||||
|
||||
- type: entity
|
||||
name: curger #curger...
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCorgi
|
||||
description: The Head of Personnel's favorite!
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- validhunting
|
||||
- type: Sprite
|
||||
state: ian
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Bicaridine #keeping it somewhat consistent with the meat itself
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 12
|
||||
|
||||
# Note: I would put a bunch of colored burgers here as listed in the tg .dm but
|
||||
# I'd rather wait for a custom burger component.
|
||||
|
||||
- type: entity
|
||||
name: spell burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerSpell
|
||||
description: This is absolutely Ei Nath.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- magical
|
||||
- type: Sprite
|
||||
state: spell
|
||||
# Tastes like bun, silver.
|
||||
Quantity: 5
|
||||
|
||||
- type: entity
|
||||
name: big bite burger
|
||||
|
|
@ -283,32 +189,275 @@
|
|||
# Tastes like bun, silver, magic.
|
||||
|
||||
- type: entity
|
||||
name: super bite burger
|
||||
name: brain burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerSuper
|
||||
description: This is a mountain of a burger. FOOD!
|
||||
id: FoodBurgerBrain
|
||||
description: A strange looking burger. It looks almost sentient.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors: # What bun?
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- oily
|
||||
- cheesy
|
||||
- type: Sprite
|
||||
state: brain
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 53
|
||||
maxVol: 20
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 44
|
||||
Quantity: 6
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 24
|
||||
- ReagentId: TableSalt
|
||||
Quantity: 5
|
||||
- ReagentId: Blackpepper
|
||||
Quantity: 5
|
||||
# Tastes like bun, brains.
|
||||
|
||||
- type: entity
|
||||
name: cat burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCat
|
||||
description: Finally those cats and catpeople are worth something!
|
||||
components:
|
||||
- type: Sprite
|
||||
state: superbite
|
||||
# Tastes like bun, diabetes.
|
||||
state: cat
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- cat
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 6
|
||||
- ReagentId: Protein
|
||||
Quantity: 3
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 2
|
||||
|
||||
- type: entity
|
||||
name: cheese burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCheese
|
||||
description: This noble burger stands proudly clad in golden cheese.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- cheesy
|
||||
- type: Sprite
|
||||
state: cheese
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 7
|
||||
- ReagentId: Protein
|
||||
Quantity: 1
|
||||
# TODO: Make this work.
|
||||
# - type: Sprite
|
||||
# state: plate
|
||||
# - type: RandomSpriteState
|
||||
# spriteLayer: 1
|
||||
# spriteStates:
|
||||
# - cheese
|
||||
# - cheesealt
|
||||
# Tastes like bun, beef patty, cheese.
|
||||
|
||||
- type: entity
|
||||
name: chicken sandwich # Burger for you euro-cucks
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerChicken
|
||||
description: A delicious chicken sandwich, it is said the proceeds from this treat helps criminalize disarming people on the space frontier.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- chicken
|
||||
- type: Sprite
|
||||
state: chicken
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
- ReagentId: Mayo
|
||||
Quantity: 3
|
||||
# Tastes like bun, chicken.
|
||||
|
||||
- type: entity
|
||||
name: clown burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerClown
|
||||
description: This tastes funny...
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- funny
|
||||
- type: Sprite
|
||||
state: clown
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 4
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 6
|
||||
|
||||
- type: entity
|
||||
name: corgi burger #curger...
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCorgi
|
||||
description: The Head of Personnel's favorite!
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- validhunting
|
||||
- type: Sprite
|
||||
state: ian
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Bicaridine #keeping it somewhat consistent with the meat itself
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 12
|
||||
|
||||
- type: entity
|
||||
name: crab burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCrab
|
||||
description: A delicious patty of the crabby kind, slapped in between a bun.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- crabby
|
||||
- type: Sprite
|
||||
state: crab
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 4
|
||||
- ReagentId: Protein
|
||||
Quantity: 5
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 4
|
||||
|
||||
- type: entity
|
||||
name: crazy hamburger # Burger for you euro-cucks
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCrazy
|
||||
description: This looks like the sort of food that a demented clown in a trenchcoat would make.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- cheesy
|
||||
- flare
|
||||
- type: Sprite
|
||||
state: crazy
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 4
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: CapsaicinOil
|
||||
Quantity: 3
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 6
|
||||
|
||||
- type: entity
|
||||
name: duck sandwich # Burger for you sick bastards
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerDuck
|
||||
description: A duck sandwich, only the criminally insane would dare to eat the meat of such an adorable creature.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- duck
|
||||
- type: Sprite
|
||||
state: chicken
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
# Tastes like bun, duck.
|
||||
|
||||
- type: entity
|
||||
name: empowered burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerEmpowered
|
||||
description: It's shockingly good, if you live off of electricity that is.
|
||||
components:
|
||||
- type: Sprite
|
||||
state: empowered
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- shocking
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 8
|
||||
- ReagentId: Licoxide
|
||||
Quantity: 5
|
||||
# Tastes like bun, pure electricity.
|
||||
|
||||
- type: entity
|
||||
name: fillet-o-carp burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCarp
|
||||
description: Almost like a carp is yelling somewhere...
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- fishy
|
||||
- type: Sprite
|
||||
state: fish
|
||||
# Tastes like bun, fish.
|
||||
|
||||
- type: entity
|
||||
name: five alarm burger
|
||||
|
|
@ -339,83 +488,166 @@
|
|||
# Tastes like bun, HEAT.
|
||||
|
||||
- type: entity
|
||||
name: rat burger
|
||||
name: ghost burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerRat
|
||||
description: Pretty much what you'd expect...
|
||||
components:
|
||||
- type: Sprite
|
||||
state: rat
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 10
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
# Tastes like bun, HEAT.
|
||||
|
||||
- type: entity
|
||||
name: home run baseball burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerBaseball
|
||||
description: It's still warm. The steam coming off of it smells kinda sweaty.
|
||||
components:
|
||||
- type: Sprite
|
||||
state: baseball
|
||||
# Tastes like bun, victory.
|
||||
|
||||
- type: entity
|
||||
name: bacon burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerBacon
|
||||
description: The perfect combination of all things American.
|
||||
id: FoodBurgerGhost
|
||||
description: Too spooky!
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- meaty
|
||||
- bacon
|
||||
- bun
|
||||
- spooky
|
||||
- type: Sprite
|
||||
state: bacon
|
||||
state: ghost
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 30
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 19
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 5
|
||||
# Tastes like bun, bacon.
|
||||
Quantity: 12
|
||||
# Tastes like bun, ectoplasm.
|
||||
|
||||
- type: entity
|
||||
name: empowered burger
|
||||
name: human burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerEmpowered
|
||||
description: It's shockingly good, if you live off of electricity that is.
|
||||
id: FoodBurgerHuman
|
||||
description: You cant tell who this is made of...
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- people
|
||||
- type: Sprite
|
||||
state: empowered
|
||||
state: human
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 8
|
||||
- ReagentId: Licoxide
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 5
|
||||
# Tastes like bun, pure electricity.
|
||||
|
||||
- type: entity
|
||||
name: empowered burger
|
||||
name: McGuffin
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCrab
|
||||
description: A delicious patty of the crabby kind, slapped in between a bun.
|
||||
id: FoodBurgerMcguffin
|
||||
description: A cheap and greasy imitation of an eggs Benedict.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- muffin
|
||||
- egg
|
||||
- type: Sprite
|
||||
state: crab
|
||||
state: mcguffin
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
|
||||
- type: entity
|
||||
name: McRib
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerMcrib
|
||||
description: An elusive rib shaped burger with limited availablity across the galaxy. Not as good as you remember it.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- bacon
|
||||
- type: Sprite
|
||||
state: mcrib
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 4
|
||||
- ReagentId: BbqSauce
|
||||
Quantity: 1
|
||||
# Tastes like bun, pork patty.
|
||||
|
||||
- type: entity
|
||||
name: mime burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerMime
|
||||
description: Its taste defies language.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- nothing
|
||||
- type: Sprite
|
||||
state: mime
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 6
|
||||
- ReagentId: Protein
|
||||
Quantity: 9
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 4
|
||||
- ReagentId: Nothing
|
||||
Quantity: 1
|
||||
# Tastes like .
|
||||
|
||||
- type: entity
|
||||
name: plain burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerPlain
|
||||
description: A boring, dry burger.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- type: Sprite
|
||||
state: plain
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 25
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 3
|
||||
|
||||
- type: entity
|
||||
name: rat burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerRat
|
||||
description: Pretty much what you'd expect...
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- type: Sprite
|
||||
state: rat
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
|
|
@ -424,10 +656,34 @@
|
|||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Protein
|
||||
Quantity: 5
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 4
|
||||
# Tastes like bun, crab meat.
|
||||
Quantity: 2
|
||||
# Tastes like bun, HEAT.
|
||||
|
||||
- type: entity
|
||||
name: roburger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerRobot
|
||||
description: The lettuce is the only organic component. Beep.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- leafy
|
||||
- metallic
|
||||
- type: Sprite
|
||||
state: ro
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 5
|
||||
- ReagentId: SulfuricAcid
|
||||
Quantity: 5
|
||||
# Tastes like bun, lettuce, sludge.
|
||||
|
||||
- type: entity
|
||||
name: soylent burger
|
||||
|
|
@ -455,107 +711,70 @@
|
|||
# Tastes like bun, redditors.
|
||||
|
||||
- type: entity
|
||||
name: mcrib
|
||||
name: spell burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerMcrib
|
||||
description: An elusive rib shaped burger with limited availablity across the galaxy. Not as good as you remember it.
|
||||
id: FoodBurgerSpell
|
||||
description: This is absolutely Ei Nath.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- magical
|
||||
- type: Sprite
|
||||
state: mcrib
|
||||
state: spell
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
maxVol: 20
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 4
|
||||
- ReagentId: Allicin
|
||||
Quantity: 2
|
||||
# Tastes like bun, pork patty.
|
||||
- ReagentId: Protein
|
||||
Quantity: 5
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 10
|
||||
# Tastes like bun, silver.
|
||||
|
||||
- type: entity
|
||||
name: mcguffin
|
||||
name: super bite burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerMcguffin
|
||||
description: A cheap and greasy imitation of an eggs Benedict.
|
||||
id: FoodBurgerSuper
|
||||
description: This is a mountain of a burger. FOOD!
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- muffin
|
||||
- egg
|
||||
- type: Sprite
|
||||
state: mcguffin
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 2
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
# Tastes like muffin, bacon.
|
||||
|
||||
- type: entity
|
||||
name: chicken sandwich # Burger for you euro-cucks
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerChicken
|
||||
description: A delicious chicken sandwich, it is said the proceeds from this treat helps criminalize disarming people on the space frontier.
|
||||
components:
|
||||
- type: Sprite
|
||||
state: chicken
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
# Tastes like bun, chicken.
|
||||
|
||||
- type: entity
|
||||
name: duck sandwich # Burger for you sick bastards
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerDuck
|
||||
description: A duck sandwich, only the criminally insane would dare to eat the meat of such an adorable creature.
|
||||
components:
|
||||
- type: Sprite
|
||||
state: chicken
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Protein
|
||||
Quantity: 7
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 1
|
||||
# Tastes like bun, duck.
|
||||
|
||||
- type: entity
|
||||
name: cheese burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCheese
|
||||
description: This noble burger stands proudly clad in golden cheese.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
flavors: # What bun?
|
||||
- meaty
|
||||
- oily
|
||||
- cheesy
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 55
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 44
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 24
|
||||
- ReagentId: TableSalt
|
||||
Quantity: 5
|
||||
- ReagentId: Blackpepper
|
||||
Quantity: 5
|
||||
- type: Sprite
|
||||
state: cheese
|
||||
state: superbite
|
||||
# Tastes like bun, diabetes.
|
||||
|
||||
- type: entity
|
||||
name: tofu burger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerTofu
|
||||
description: What... is that meat?
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- tofu
|
||||
- type: Sprite
|
||||
state: tofu
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
|
|
@ -563,26 +782,37 @@
|
|||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 7
|
||||
- ReagentId: Protein
|
||||
Quantity: 1
|
||||
# TODO: Make this work.
|
||||
# - type: Sprite
|
||||
# state: plate
|
||||
# - type: RandomSpriteState
|
||||
# spriteLayer: 1
|
||||
# spriteStates:
|
||||
# - cheese
|
||||
# - cheesealt
|
||||
# Tastes like bun, beef patty, cheese.
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 3
|
||||
# Tastes like bun, tofu.
|
||||
|
||||
- type: entity
|
||||
name: crazy hamburger # Burger for you euro-cucks
|
||||
name: xenoburger
|
||||
parent: FoodBurgerBase
|
||||
id: FoodBurgerCrazy
|
||||
description: This looks like the sort of food that a demented clown in a trenchcoat would make.
|
||||
id: FoodBurgerXeno
|
||||
description: Smells caustic. Tastes like heresy.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- bun
|
||||
- meaty
|
||||
- acidic
|
||||
- type: Sprite
|
||||
state: crazy
|
||||
# Tastes like bun, a smoking flare, chili.
|
||||
state: x
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
maxVol: 15
|
||||
reagents:
|
||||
- ReagentId: Nutriment
|
||||
Quantity: 3
|
||||
- ReagentId: Protein
|
||||
Quantity: 6
|
||||
- ReagentId: Vitamin
|
||||
Quantity: 5
|
||||
# Tastes like bun, acid.
|
||||
|
||||
# Note: I would put a bunch of colored burgers here as listed in the tg .dm but
|
||||
# I'd rather wait for a custom burger component.
|
||||
|
|
|
|||
|
|
@ -64,6 +64,27 @@
|
|||
node: start
|
||||
defaultTarget: meat steak
|
||||
|
||||
- type: entity
|
||||
name: raw human meat
|
||||
parent: FoodMeatBase
|
||||
id: FoodMeatHuman
|
||||
description: Gross.
|
||||
components:
|
||||
- type: Tag
|
||||
tags:
|
||||
- Raw
|
||||
- type: Sprite
|
||||
state: plain
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
food:
|
||||
reagents:
|
||||
- ReagentId: UncookedAnimalProteins
|
||||
Quantity: 9
|
||||
- type: SliceableFood
|
||||
count: 3
|
||||
slice: FoodMeatCutlet
|
||||
|
||||
- type: entity
|
||||
name: raw carp fillet
|
||||
parent: FoodMeatBase
|
||||
|
|
@ -237,6 +258,9 @@
|
|||
id: FoodMeatCrab
|
||||
description: A pile of raw crab meat.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- crabby
|
||||
- type: Tag
|
||||
tags:
|
||||
- Raw
|
||||
|
|
@ -720,6 +744,9 @@
|
|||
id: FoodMeatCrabCooked
|
||||
description: Some deliciously cooked crab meat.
|
||||
components:
|
||||
- type: FlavorProfile
|
||||
flavors:
|
||||
- crabby
|
||||
- type: Tag
|
||||
tags:
|
||||
- Cooked
|
||||
|
|
|
|||
|
|
@ -44,6 +44,11 @@
|
|||
flavorType: Base
|
||||
description: flavor-base-fishy
|
||||
|
||||
- type: flavor
|
||||
id: crabby
|
||||
flavorType: Base
|
||||
description: flavor-base-crabby
|
||||
|
||||
- type: flavor
|
||||
id: cheesy
|
||||
flavorType: Base
|
||||
|
|
@ -224,6 +229,16 @@
|
|||
flavorType: Complex
|
||||
description: flavor-complex-bacon
|
||||
|
||||
- type: flavor
|
||||
id: chicken
|
||||
flavorType: Complex
|
||||
description: flavor-complex-chicken
|
||||
|
||||
- type: flavor
|
||||
id: duck
|
||||
flavorType: Complex
|
||||
description: flavor-complex-duck
|
||||
|
||||
- type: flavor
|
||||
id: chocolate
|
||||
flavorType: Complex
|
||||
|
|
@ -454,6 +469,31 @@
|
|||
flavorType: Complex
|
||||
description: flavor-complex-validhunting
|
||||
|
||||
- type: flavor
|
||||
id: people
|
||||
flavorType: Complex
|
||||
description: flavor-complex-people
|
||||
|
||||
- type: flavor
|
||||
id: cat
|
||||
flavorType: Complex
|
||||
description: flavor-complex-cat
|
||||
|
||||
- type: flavor
|
||||
id: homerun
|
||||
flavorType: Complex
|
||||
description: flavor-complex-homerun
|
||||
|
||||
- type: flavor
|
||||
id: grass
|
||||
flavorType: Complex
|
||||
description: flavor-complex-grass
|
||||
|
||||
- type: flavor
|
||||
id: flare
|
||||
flavorType: Complex
|
||||
description: flavor-complex-flare
|
||||
|
||||
- type: flavor
|
||||
id: cobwebs
|
||||
flavorType: Complex
|
||||
|
|
|
|||
|
|
@ -7,25 +7,43 @@
|
|||
FoodDoughSlice: 1 # one third of a standard bread dough recipe
|
||||
|
||||
#Burgers
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCheeseburger
|
||||
name: cheeseburger recipe
|
||||
result: FoodBurgerCheese
|
||||
time: 5
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeat: 1
|
||||
FoodCheeseSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeFiveBurger
|
||||
name: five alarm burger recipe
|
||||
result: FoodBurgerFive
|
||||
time: 5
|
||||
id: RecipeAppendixBurger
|
||||
name: appendix burger recipe
|
||||
result: FoodBurgerAppendix
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeat: 1
|
||||
FoodChili: 3
|
||||
OrganHumanAppendix: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBaconBurger
|
||||
name: bacon burger recipe
|
||||
result: FoodBurgerBacon
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatCutlet: 3 #replace with bacon
|
||||
FoodCheeseSlice: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBaseballBurger
|
||||
name: baseball burger recipe
|
||||
result: FoodBurgerBaseball
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
BaseBallBat: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBearger
|
||||
name: bearger recipe
|
||||
result: FoodBurgerBear
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatBear: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBigBiteBurger
|
||||
|
|
@ -39,109 +57,230 @@
|
|||
FoodTomato: 1
|
||||
FoodOnionSlice: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBrainBurger
|
||||
name: brain burger recipe
|
||||
result: FoodBurgerBrain
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
OrganHumanBrain: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCatBurger
|
||||
name: cat burger recipe
|
||||
result: FoodBurgerCat
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeat: 1
|
||||
ClothingHeadHatCatEars: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCheeseburger
|
||||
name: cheeseburger recipe
|
||||
result: FoodBurgerCheese
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeat: 1
|
||||
FoodCheeseSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeChickenSandwich
|
||||
name: chicken sandwich recipe
|
||||
result: FoodBurgerChicken
|
||||
time: 5
|
||||
time: 10
|
||||
reagents:
|
||||
Mayo: 5
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatChicken: 1
|
||||
FoodCheeseSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeClownBurger
|
||||
name: clownburger recipe
|
||||
result: FoodBurgerClown
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
ClothingMaskClown: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCorgiBurger
|
||||
name: corgi burger recipe
|
||||
result: FoodBurgerCorgi
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatCorgi: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCrabBurger
|
||||
name: crab burger recipe
|
||||
result: FoodBurgerCrab
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatCrab: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCrazyHamburger
|
||||
name: crazy hamburger recipe
|
||||
result: FoodBurgerCrazy
|
||||
time: 15
|
||||
reagents:
|
||||
OilOlive: 15
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeat: 2
|
||||
FoodCheeseSlice: 2
|
||||
FoodChili: 1
|
||||
FoodCabbage: 1
|
||||
CrayonGreen: 1
|
||||
Flare: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeDuckBurger
|
||||
name: duck sandwich recipe
|
||||
result: FoodBurgerDuck
|
||||
time: 5
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatDuck: 1
|
||||
FoodCheeseSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeEmpoweredBurger
|
||||
name: empowered burger recipe
|
||||
result: FoodBurgerEmpowered
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
SheetPlasma1: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCarpBurger
|
||||
name: carp burger recipe
|
||||
name: fillet-o-carp burger recipe
|
||||
result: FoodBurgerCarp
|
||||
time: 5
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatFish: 1
|
||||
FoodCheeseSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBrainBurger
|
||||
name: brain burger recipe
|
||||
result: FoodBurgerBrain
|
||||
time: 5
|
||||
id: RecipeFiveBurger
|
||||
name: five alarm burger recipe
|
||||
result: FoodBurgerFive
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
OrganHumanBrain: 1
|
||||
FoodCheeseSlice: 1
|
||||
FoodMeat: 1
|
||||
FoodChili: 3
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeAppendixBurger
|
||||
name: appendix burger recipe
|
||||
result: FoodBurgerAppendix
|
||||
time: 5
|
||||
id: RecipeGhostBurger
|
||||
name: ghost burger recipe
|
||||
result: FoodBurgerGhost
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
OrganHumanAppendix: 1
|
||||
FoodCheeseSlice: 1
|
||||
ClothingOuterGhostSheet: 1 #replace with ectoplasm once added
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeClownBurger
|
||||
name: clownburger recipe
|
||||
result: FoodBurgerClown
|
||||
time: 5
|
||||
id: RecipeHumanBurger
|
||||
name: human burger recipe
|
||||
result: FoodBurgerHuman
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
ClothingMaskClown: 1
|
||||
FoodMeatHuman: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeJellyBurger
|
||||
name: jelly burger recipe
|
||||
result: FoodBurgerJelly
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodJellyAmanita: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBurgerMcguffin
|
||||
name: McGuffin recipe
|
||||
result: FoodBurgerMcguffin
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodCheeseSlice: 1
|
||||
FoodEgg: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBurgerMcrib
|
||||
name: McRib recipe
|
||||
result: FoodBurgerMcrib
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMealRibs: 1
|
||||
FoodOnionSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeMimeBurger
|
||||
name: mimeburger recipe
|
||||
name: mime burger recipe
|
||||
result: FoodBurgerMime
|
||||
time: 5
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
ClothingHeadHatBeret: 1
|
||||
ClothingMaskMime: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeTofuBurger
|
||||
name: tofu burger recipe
|
||||
result: FoodBurgerTofu
|
||||
time: 5
|
||||
id: RecipePlainBurger
|
||||
name: plain burger recipe
|
||||
result: FoodBurgerPlain
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodTofuSlice: 1
|
||||
FoodMeat: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeXenoburger
|
||||
name: xenoburger recipe
|
||||
result: FoodBurgerXeno
|
||||
time: 5
|
||||
id: RecipeRatBurger
|
||||
name: rat burger recipe
|
||||
result: FoodBurgerRat
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatXeno: 1
|
||||
FoodMeatRat: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBearger
|
||||
name: bearger recipe
|
||||
result: FoodBurgerBear
|
||||
time: 5
|
||||
id: RecipeRobotBurger
|
||||
name: roburger recipe
|
||||
result: FoodBurgerRobot
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatBear: 1
|
||||
CapacitorStockPart: 2
|
||||
# i would add steel to this recipe but the microwave explodes
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeCurger
|
||||
name: curger recipe
|
||||
result: FoodBurgerCorgi
|
||||
time: 5
|
||||
id: RecipeSoylentBurger
|
||||
name: soylent burger recipe
|
||||
result: FoodBurgerSoy
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodMeatCorgi: 1
|
||||
FoodCheeseSlice: 2
|
||||
FoodSoybeans: 2 #replace with soylent green when those become craftable
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeSpellBurger
|
||||
name: spell burger recipe
|
||||
result: FoodBurgerSpell
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
ClothingHeadHatWizard: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeSuperBiteBurger
|
||||
|
|
@ -158,32 +297,22 @@
|
|||
FoodEgg: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeEmpoweredBurger
|
||||
name: empowered burger recipe
|
||||
result: FoodBurgerEmpowered
|
||||
time: 5
|
||||
id: RecipeTofuBurger
|
||||
name: tofu burger recipe
|
||||
result: FoodBurgerTofu
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
SheetPlasma1: 2
|
||||
FoodTofuSlice: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeJellyBurger
|
||||
name: jelly burger recipe
|
||||
result: FoodBurgerJelly
|
||||
time: 5
|
||||
id: RecipeXenoburger
|
||||
name: xenoburger recipe
|
||||
result: FoodBurgerXeno
|
||||
time: 10
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodJellyAmanita: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeBurgerMcguffin
|
||||
name: mcguffin recipe
|
||||
result: FoodBurgerMcguffin
|
||||
time: 5
|
||||
solids:
|
||||
FoodBreadBun: 1
|
||||
FoodCheeseSlice: 1
|
||||
FoodEgg: 2
|
||||
FoodMeatXeno: 1
|
||||
|
||||
#Breads & Sandwiches
|
||||
|
||||
|
|
@ -1208,6 +1337,17 @@
|
|||
FoodChili: 1
|
||||
FoodCheeseSlice: 2
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeRibs
|
||||
name: BBQ ribs recipe
|
||||
result: FoodMealRibs
|
||||
time: 15
|
||||
reagents:
|
||||
BbqSauce: 5
|
||||
solids:
|
||||
FoodMeat: 2
|
||||
FoodKebabSkewer: 1
|
||||
|
||||
- type: microwaveMealRecipe
|
||||
id: RecipeEnchiladas
|
||||
name: enchiladas recipe
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 506 B |
Binary file not shown.
|
After Width: | Height: | Size: 418 B |
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"version": 1,
|
||||
"license": "CC-BY-SA-3.0",
|
||||
"copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, ian.png created by EmoGarbage",
|
||||
"copyright": "Taken from tgstation and modified by Swept and potato1234x at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, ian.png created by EmoGarbage",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
|
|
@ -31,6 +31,9 @@
|
|||
{
|
||||
"name": "c"
|
||||
},
|
||||
{
|
||||
"name": "cat"
|
||||
},
|
||||
{
|
||||
"name": "cheese"
|
||||
},
|
||||
|
|
@ -85,27 +88,30 @@
|
|||
"name": "ghost",
|
||||
"delays": [
|
||||
[
|
||||
0.01,
|
||||
0.11,
|
||||
0.08,
|
||||
0.06,
|
||||
0.05,
|
||||
0.04,
|
||||
0.04,
|
||||
0.06,
|
||||
0.01,
|
||||
0.01,
|
||||
0.01,
|
||||
0.07,
|
||||
0.1,
|
||||
0.13,
|
||||
0.11,
|
||||
0.09,
|
||||
0.06,
|
||||
0.07,
|
||||
0.05,
|
||||
0.06,
|
||||
0.06,
|
||||
0.07,
|
||||
0.08,
|
||||
0.01,
|
||||
0.02
|
||||
0.1,
|
||||
0.12
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "human"
|
||||
},
|
||||
{
|
||||
"name": "ian"
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue