TG Station Burgers (#15217)

Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
potato1234_x
2023-05-06 17:43:09 +10:00
committed by GitHub
parent a9a8b46819
commit c2a5ca96e8
15 changed files with 891 additions and 400 deletions

View File

@@ -17,6 +17,7 @@ flavor-base-spicy = spicy
flavor-base-metallic = metallic flavor-base-metallic = metallic
flavor-base-meaty = meaty flavor-base-meaty = meaty
flavor-base-fishy = fishy flavor-base-fishy = fishy
flavor-base-crabby = crabby
flavor-base-cheesy = cheesy flavor-base-cheesy = cheesy
flavor-base-funny = funny flavor-base-funny = funny
flavor-base-tingly = tingly flavor-base-tingly = tingly
@@ -69,6 +70,8 @@ flavor-complex-batter = like batter
flavor-complex-butter = like butter flavor-complex-butter = like butter
flavor-complex-egg = like egg flavor-complex-egg = like egg
flavor-complex-bacon = like bacon flavor-complex-bacon = like bacon
flavor-complex-chicken = like chicken
flavor-complex-duck = like duck
flavor-complex-chocolate = like chocolate flavor-complex-chocolate = like chocolate
flavor-complex-pasta = like pasta flavor-complex-pasta = like pasta
flavor-complex-rice = like rice 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-memory-leek = like a fork bomb
flavor-complex-gunpowder = like gunpowder flavor-complex-gunpowder = like gunpowder
flavor-complex-validhunting = like validhunting 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-cobwebs = like cobwebs
flavor-complex-sadness = like sadness flavor-complex-sadness = like sadness
flavor-complex-hope = like hope flavor-complex-hope = like hope

View File

@@ -10,6 +10,9 @@ ent-CrateNPCCat = Cat crate
ent-CrateNPCChicken = Chicken crate ent-CrateNPCChicken = Chicken crate
.desc = A crate containing four fully grown chickens. .desc = A crate containing four fully grown chickens.
ent-CrateNPCCrab = Crab crate
.desc = A crate containing three huge crabs.
ent-CrateNPCDuck = Duck crate ent-CrateNPCDuck = Duck crate
.desc = A crate containing six fully grown ducks. .desc = A crate containing six fully grown ducks.

View File

@@ -38,6 +38,16 @@
category: Livestock category: Livestock
group: market group: market
- type: cargoProduct
id: LivestockCrab
icon:
sprite: Mobs/Animals/crab.rsi
state: crab
product: CrateNPCCrab
cost: 1800
category: Livestock
group: market
- type: cargoProduct - type: cargoProduct
id: LivestockDuck id: LivestockDuck
icon: icon:

View File

@@ -44,6 +44,15 @@
- id: MobChicken - id: MobChicken
amount: 4 amount: 4
- type: entity
id: CrateNPCCrab
parent: CrateLivestock
components:
- type: StorageFill
contents:
- id: MobCrab
amount: 3
- type: entity - type: entity
id: CrateNPCDuck id: CrateNPCDuck
parent: CrateLivestock parent: CrateLivestock

View File

@@ -23,6 +23,7 @@
- FoodBurgerBacon - FoodBurgerBacon
- FoodBurgerEmpowered - FoodBurgerEmpowered
- FoodBurgerCrab - FoodBurgerCrab
- FoodBurgerHuman
- FoodBurgerSoy - FoodBurgerSoy
- FoodBurgerMcrib - FoodBurgerMcrib
- FoodBurgerMcguffin - FoodBurgerMcguffin
@@ -51,7 +52,9 @@
rarePrototypes: rarePrototypes:
- FoodBurgerAppendix - FoodBurgerAppendix
- FoodBurgerRobot - FoodBurgerRobot
- FoodBurgerBaseball
- FoodBurgerBear - FoodBurgerBear
- FoodBurgerCat
- FoodBurgerClown - FoodBurgerClown
- FoodBurgerMime - FoodBurgerMime
- FoodBurgerBrain - FoodBurgerBrain

View File

@@ -25,6 +25,11 @@
- type: Body - type: Body
prototype: Dwarf prototype: Dwarf
requiredLegs: 2 requiredLegs: 2
- type: Butcherable
butcheringType: Spike
spawned:
- id: FoodMeatHuman
amount: 5
- type: Fixtures - type: Fixtures
fixtures: # TODO: This needs a second fixture just for mob collisions. fixtures: # TODO: This needs a second fixture just for mob collisions.
fix1: fix1:

View File

@@ -8,6 +8,11 @@
- type: Hunger - type: Hunger
- type: Thirst - type: Thirst
- type: Perishable - type: Perishable
- type: Butcherable
butcheringType: Spike
spawned:
- id: FoodMeatHuman
amount: 5
- type: entity - type: entity
name: Urist McHands name: Urist McHands

View File

@@ -15,6 +15,11 @@
- type: Body - type: Body
prototype: Reptilian prototype: Reptilian
requiredLegs: 2 requiredLegs: 2
- type: Butcherable
butcheringType: Spike
spawned:
- id: FoodMeatLizard
amount: 5
- type: LizardAccent - type: LizardAccent
- type: Speech - type: Speech
speechSounds: Lizard speechSounds: Lizard

View File

@@ -55,6 +55,10 @@
id: FoodBurgerJelly id: FoodBurgerJelly
description: Culinary delight..? description: Culinary delight..?
components: components:
- type: FlavorProfile
flavors:
- bun
- jelly
- type: Sprite - type: Sprite
layers: layers:
- state: custburg-bottom - state: custburg-bottom
@@ -70,76 +74,71 @@
id: FoodBurgerAppendix id: FoodBurgerAppendix
description: Tastes like appendicitis. description: Tastes like appendicitis.
components: components:
- type: FlavorProfile
flavors:
- bun
- grass
- type: Sprite - type: Sprite
state: appendix 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. # Tastes like bun, grass.
- type: entity - type: entity
name: fillet -o- carp burger name: bacon burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerCarp id: FoodBurgerBacon
description: Almost like a carp is yelling somewhere... description: The perfect combination of all things American.
components: components:
- type: FlavorProfile - type: FlavorProfile
flavors: flavors:
- bun - bun
- fishy - bacon
- type: Sprite - type: Sprite
state: fish state: bacon
# Tastes like bun, fish. - type: SolutionContainerManager
solutions:
food:
maxVol: 30
reagents:
- ReagentId: Nutriment
Quantity: 19
- ReagentId: Vitamin
Quantity: 5
# Tastes like bun, bacon.
- type: entity - type: entity
name: tofu burger name: baseball burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerTofu id: FoodBurgerBaseball
description: What... is that meat? description: It's still warm. The steam coming off of it smells kinda sweaty.
components: components:
- type: FlavorProfile - type: FlavorProfile
flavors: flavors:
- bun - bun
- tofu - homerun
- type: Sprite - type: Sprite
state: tofu state: baseball
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
maxVol: 15 maxVol: 15
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 8
- ReagentId: Protein
Quantity: 3 Quantity: 3
# Tastes like bun, tofu. - ReagentId: Protein
Quantity: 5
- type: entity - ReagentId: Vitamin
name: roburger Quantity: 2
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.
- type: entity - type: entity
name: bearger name: bearger
@@ -147,6 +146,10 @@
id: FoodBurgerBear id: FoodBurgerBear
description: Best served rawr. description: Best served rawr.
components: components:
- type: FlavorProfile
flavors:
- bun
- meaty
- type: Sprite - type: Sprite
state: bearger state: bearger
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -156,107 +159,10 @@
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 3 Quantity: 3
- ReagentId: Vitamin
Quantity: 5
- ReagentId: Protein - ReagentId: Protein
Quantity: 6 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 - ReagentId: Vitamin
Quantity: 12 Quantity: 5
# 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.
- type: entity - type: entity
name: big bite burger name: big bite burger
@@ -283,32 +189,275 @@
# Tastes like bun, silver, magic. # Tastes like bun, silver, magic.
- type: entity - type: entity
name: super bite burger name: brain burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerSuper id: FoodBurgerBrain
description: This is a mountain of a burger. FOOD! description: A strange looking burger. It looks almost sentient.
components: components:
- type: FlavorProfile - type: FlavorProfile
flavors: # What bun? flavors:
- bun
- meaty - meaty
- oily - type: Sprite
- cheesy state: brain
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
maxVol: 53 maxVol: 20
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 44 Quantity: 6
- ReagentId: Protein
Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 24
- ReagentId: TableSalt
Quantity: 5
- ReagentId: Blackpepper
Quantity: 5 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 - type: Sprite
state: superbite state: cat
# Tastes like bun, diabetes. - 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 - type: entity
name: five alarm burger name: five alarm burger
@@ -339,83 +488,166 @@
# Tastes like bun, HEAT. # Tastes like bun, HEAT.
- type: entity - type: entity
name: rat burger name: ghost burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerRat id: FoodBurgerGhost
description: Pretty much what you'd expect... description: Too spooky!
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.
components: components:
- type: FlavorProfile - type: FlavorProfile
flavors: flavors:
- meaty - bun
- bacon - spooky
- type: Sprite - type: Sprite
state: bacon state: ghost
- type: SolutionContainerManager
solutions: solutions:
food: food:
maxVol: 30 maxVol: 25
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 19 Quantity: 7
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 12
# Tastes like bun, bacon. # Tastes like bun, ectoplasm.
- type: entity - type: entity
name: empowered burger name: human burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerEmpowered id: FoodBurgerHuman
description: It's shockingly good, if you live off of electricity that is. description: You cant tell who this is made of...
components: components:
- type: FlavorProfile
flavors:
- bun
- people
- type: Sprite - type: Sprite
state: empowered state: human
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
maxVol: 15 maxVol: 15
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 8 Quantity: 2
- ReagentId: Licoxide - ReagentId: Protein
Quantity: 6
- ReagentId: Vitamin
Quantity: 5 Quantity: 5
# Tastes like bun, pure electricity.
- type: entity - type: entity
name: empowered burger name: McGuffin
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerCrab id: FoodBurgerMcguffin
description: A delicious patty of the crabby kind, slapped in between a bun. description: A cheap and greasy imitation of an eggs Benedict.
components: components:
- type: FlavorProfile
flavors:
- muffin
- egg
- type: Sprite - 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 - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -424,10 +656,34 @@
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 3 Quantity: 3
- ReagentId: Protein - ReagentId: Protein
Quantity: 5 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 2
# Tastes like bun, crab meat. # 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 - type: entity
name: soylent burger name: soylent burger
@@ -455,107 +711,70 @@
# Tastes like bun, redditors. # Tastes like bun, redditors.
- type: entity - type: entity
name: mcrib name: spell burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerMcrib id: FoodBurgerSpell
description: An elusive rib shaped burger with limited availablity across the galaxy. Not as good as you remember it. description: This is absolutely Ei Nath.
components: components:
- type: FlavorProfile
flavors:
- bun
- magical
- type: Sprite - type: Sprite
state: mcrib state: spell
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
maxVol: 15 maxVol: 20
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 2
- ReagentId: Protein
Quantity: 7
- ReagentId: Vitamin
Quantity: 4 Quantity: 4
- ReagentId: Allicin - ReagentId: Protein
Quantity: 2 Quantity: 5
# Tastes like bun, pork patty. - ReagentId: Vitamin
Quantity: 10
# Tastes like bun, silver.
- type: entity - type: entity
name: mcguffin name: super bite burger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerMcguffin id: FoodBurgerSuper
description: A cheap and greasy imitation of an eggs Benedict. description: This is a mountain of a burger. FOOD!
components: components:
- type: FlavorProfile - type: FlavorProfile
flavors: flavors: # What bun?
- 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:
- meaty - meaty
- oily
- cheesy - 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 - 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 - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -563,26 +782,37 @@
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 3 Quantity: 3
- ReagentId: Vitamin
Quantity: 7
- ReagentId: Protein - ReagentId: Protein
Quantity: 1 Quantity: 6
# TODO: Make this work. - ReagentId: Vitamin
# - type: Sprite Quantity: 3
# state: plate # Tastes like bun, tofu.
# - type: RandomSpriteState
# spriteLayer: 1
# spriteStates:
# - cheese
# - cheesealt
# Tastes like bun, beef patty, cheese.
- type: entity - type: entity
name: crazy hamburger # Burger for you euro-cucks name: xenoburger
parent: FoodBurgerBase parent: FoodBurgerBase
id: FoodBurgerCrazy id: FoodBurgerXeno
description: This looks like the sort of food that a demented clown in a trenchcoat would make. description: Smells caustic. Tastes like heresy.
components: components:
- type: FlavorProfile
flavors:
- bun
- meaty
- acidic
- type: Sprite - type: Sprite
state: crazy state: x
# Tastes like bun, a smoking flare, chili. - 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.

View File

@@ -64,6 +64,27 @@
node: start node: start
defaultTarget: meat steak 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 - type: entity
name: raw carp fillet name: raw carp fillet
parent: FoodMeatBase parent: FoodMeatBase
@@ -237,6 +258,9 @@
id: FoodMeatCrab id: FoodMeatCrab
description: A pile of raw crab meat. description: A pile of raw crab meat.
components: components:
- type: FlavorProfile
flavors:
- crabby
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
@@ -720,6 +744,9 @@
id: FoodMeatCrabCooked id: FoodMeatCrabCooked
description: Some deliciously cooked crab meat. description: Some deliciously cooked crab meat.
components: components:
- type: FlavorProfile
flavors:
- crabby
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked

View File

@@ -44,6 +44,11 @@
flavorType: Base flavorType: Base
description: flavor-base-fishy description: flavor-base-fishy
- type: flavor
id: crabby
flavorType: Base
description: flavor-base-crabby
- type: flavor - type: flavor
id: cheesy id: cheesy
flavorType: Base flavorType: Base
@@ -224,6 +229,16 @@
flavorType: Complex flavorType: Complex
description: flavor-complex-bacon 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 - type: flavor
id: chocolate id: chocolate
flavorType: Complex flavorType: Complex
@@ -454,6 +469,31 @@
flavorType: Complex flavorType: Complex
description: flavor-complex-validhunting 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 - type: flavor
id: cobwebs id: cobwebs
flavorType: Complex flavorType: Complex

View File

@@ -7,25 +7,43 @@
FoodDoughSlice: 1 # one third of a standard bread dough recipe FoodDoughSlice: 1 # one third of a standard bread dough recipe
#Burgers #Burgers
- type: microwaveMealRecipe
id: RecipeCheeseburger
name: cheeseburger recipe
result: FoodBurgerCheese
time: 5
solids:
FoodBreadBun: 1
FoodMeat: 1
FoodCheeseSlice: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeFiveBurger id: RecipeAppendixBurger
name: five alarm burger recipe name: appendix burger recipe
result: FoodBurgerFive result: FoodBurgerAppendix
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodMeat: 1 OrganHumanAppendix: 1
FoodChili: 3
- 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 - type: microwaveMealRecipe
id: RecipeBigBiteBurger id: RecipeBigBiteBurger
@@ -39,109 +57,230 @@
FoodTomato: 1 FoodTomato: 1
FoodOnionSlice: 2 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 - type: microwaveMealRecipe
id: RecipeChickenSandwich id: RecipeChickenSandwich
name: chicken sandwich recipe name: chicken sandwich recipe
result: FoodBurgerChicken result: FoodBurgerChicken
time: 5 time: 10
reagents:
Mayo: 5
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodMeatChicken: 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 - type: microwaveMealRecipe
id: RecipeDuckBurger id: RecipeDuckBurger
name: duck sandwich recipe name: duck sandwich recipe
result: FoodBurgerDuck result: FoodBurgerDuck
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodMeatDuck: 1 FoodMeatDuck: 1
FoodCheeseSlice: 1 FoodCheeseSlice: 1
- type: microwaveMealRecipe
id: RecipeEmpoweredBurger
name: empowered burger recipe
result: FoodBurgerEmpowered
time: 10
solids:
FoodBreadBun: 1
SheetPlasma1: 2
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeCarpBurger id: RecipeCarpBurger
name: carp burger recipe name: fillet-o-carp burger recipe
result: FoodBurgerCarp result: FoodBurgerCarp
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodMeatFish: 1 FoodMeatFish: 1
FoodCheeseSlice: 1 FoodCheeseSlice: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeBrainBurger id: RecipeFiveBurger
name: brain burger recipe name: five alarm burger recipe
result: FoodBurgerBrain result: FoodBurgerFive
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
OrganHumanBrain: 1 FoodMeat: 1
FoodCheeseSlice: 1 FoodChili: 3
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeAppendixBurger id: RecipeGhostBurger
name: appendix burger recipe name: ghost burger recipe
result: FoodBurgerAppendix result: FoodBurgerGhost
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
OrganHumanAppendix: 1 ClothingOuterGhostSheet: 1 #replace with ectoplasm once added
FoodCheeseSlice: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeClownBurger id: RecipeHumanBurger
name: clownburger recipe name: human burger recipe
result: FoodBurgerClown result: FoodBurgerHuman
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 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 - type: microwaveMealRecipe
id: RecipeMimeBurger id: RecipeMimeBurger
name: mimeburger recipe name: mime burger recipe
result: FoodBurgerMime result: FoodBurgerMime
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
ClothingHeadHatBeret: 1 ClothingMaskMime: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeTofuBurger id: RecipePlainBurger
name: tofu burger recipe name: plain burger recipe
result: FoodBurgerTofu result: FoodBurgerPlain
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodTofuSlice: 1 FoodMeat: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeXenoburger id: RecipeRatBurger
name: xenoburger recipe name: rat burger recipe
result: FoodBurgerXeno result: FoodBurgerRat
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodMeatXeno: 1 FoodMeatRat: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeBearger id: RecipeRobotBurger
name: bearger recipe name: roburger recipe
result: FoodBurgerBear result: FoodBurgerRobot
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodMeatBear: 1 CapacitorStockPart: 2
# i would add steel to this recipe but the microwave explodes
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeCurger id: RecipeSoylentBurger
name: curger recipe name: soylent burger recipe
result: FoodBurgerCorgi result: FoodBurgerSoy
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 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 - type: microwaveMealRecipe
id: RecipeSuperBiteBurger id: RecipeSuperBiteBurger
@@ -158,32 +297,22 @@
FoodEgg: 2 FoodEgg: 2
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeEmpoweredBurger id: RecipeTofuBurger
name: empowered burger recipe name: tofu burger recipe
result: FoodBurgerEmpowered result: FoodBurgerTofu
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
SheetPlasma1: 2 FoodTofuSlice: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeJellyBurger id: RecipeXenoburger
name: jelly burger recipe name: xenoburger recipe
result: FoodBurgerJelly result: FoodBurgerXeno
time: 5 time: 10
solids: solids:
FoodBreadBun: 1 FoodBreadBun: 1
FoodJellyAmanita: 1 FoodMeatXeno: 1
- type: microwaveMealRecipe
id: RecipeBurgerMcguffin
name: mcguffin recipe
result: FoodBurgerMcguffin
time: 5
solids:
FoodBreadBun: 1
FoodCheeseSlice: 1
FoodEgg: 2
#Breads & Sandwiches #Breads & Sandwiches
@@ -1208,6 +1337,17 @@
FoodChili: 1 FoodChili: 1
FoodCheeseSlice: 2 FoodCheeseSlice: 2
- type: microwaveMealRecipe
id: RecipeRibs
name: BBQ ribs recipe
result: FoodMealRibs
time: 15
reagents:
BbqSauce: 5
solids:
FoodMeat: 2
FoodKebabSkewer: 1
- type: microwaveMealRecipe - type: microwaveMealRecipe
id: RecipeEnchiladas id: RecipeEnchiladas
name: enchiladas recipe name: enchiladas recipe

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

View File

@@ -1,7 +1,7 @@
{ {
"version": 1, "version": 1,
"license": "CC-BY-SA-3.0", "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": { "size": {
"x": 32, "x": 32,
"y": 32 "y": 32
@@ -31,6 +31,9 @@
{ {
"name": "c" "name": "c"
}, },
{
"name": "cat"
},
{ {
"name": "cheese" "name": "cheese"
}, },
@@ -85,27 +88,30 @@
"name": "ghost", "name": "ghost",
"delays": [ "delays": [
[ [
0.01, 0.11,
0.08, 0.08,
0.06, 0.06,
0.05, 0.05,
0.04, 0.04,
0.04, 0.04,
0.06, 0.07,
0.01, 0.1,
0.01, 0.13,
0.01, 0.11,
0.09, 0.09,
0.06, 0.07,
0.05, 0.05,
0.06, 0.06,
0.06, 0.07,
0.08, 0.08,
0.01, 0.1,
0.02 0.12
] ]
] ]
}, },
{
"name": "human"
},
{ {
"name": "ian" "name": "ian"
}, },