Lizard "Rework" (#20328)

Part of my Species Reworks, this gives lizards the ability to pull without hands, a diet restriction (Meat, Fruit, and Pills), and removes their random damage modifiers while toning up / down their notable ones to reasonable levels. Additionally normalizes their specific heat, removes their extra cold damage taken, and removes their random walking speed increase.

Any food I could find that was a fruit / meat has been tagged appropriately. This shouldn't break anything but it's possible (likely) I've missed a few, which can be fixed later.
This commit is contained in:
LankLTE
2023-10-06 14:19:00 -07:00
committed by GitHub
parent 544b9ea5ed
commit 1dc34d5ed8
23 changed files with 500 additions and 15 deletions

View File

@@ -4,6 +4,11 @@
noSpawn: true noSpawn: true
components: components:
- type: Stomach - type: Stomach
specialDigestible:
tags:
- Fruit
- Meat
- Pill
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
stomach: stomach:

View File

@@ -124,11 +124,8 @@
- type: damageModifierSet - type: damageModifierSet
id: Scale # Skin tougher, bones weaker, strong stomachs, cold-blooded (kindof) id: Scale # Skin tougher, bones weaker, strong stomachs, cold-blooded (kindof)
coefficients: coefficients:
Blunt: 1.1 Cold: 1.3
Slash: 0.9 Heat: 0.7
Cold: 1.5
Heat: 0.9
Poison: 0.9
- type: damageModifierSet - type: damageModifierSet
id: Diona id: Diona

View File

@@ -981,6 +981,7 @@
- Trash - Trash
- VimPilot - VimPilot
- Mouse - Mouse
- Meat
- type: Respirator - type: Respirator
damage: damage:
types: types:
@@ -2330,6 +2331,7 @@
- VimPilot - VimPilot
- Trash - Trash
- Hamster - Hamster
- Meat
- type: Respirator - type: Respirator
damage: damage:
types: types:

View File

@@ -10,7 +10,10 @@
- type: Hunger - type: Hunger
starvationDamage: starvationDamage:
types: types:
Cold: 1 Cold: 0.5
Bloodloss: 0.5
- type: Puller
needsHands: false
- type: Thirst - type: Thirst
- type: Icon - type: Icon
sprite: Mobs/Species/Reptilian/parts.rsi sprite: Mobs/Species/Reptilian/parts.rsi
@@ -49,15 +52,15 @@
heatDamageThreshold: 400 heatDamageThreshold: 400
coldDamageThreshold: 285 coldDamageThreshold: 285
currentTemperature: 310.15 currentTemperature: 310.15
specificHeat: 46 specificHeat: 42
coldDamage: coldDamage:
types: types:
Cold : 0.2 #per second, scales with temperature & other constants Cold : 0.1 #per second, scales with temperature & other constants
heatDamage: heatDamage:
types: types:
Heat : 0.1 #per second, scales with temperature & other constants Heat : 0.1 #per second, scales with temperature & other constants
- type: MovementSpeedModifier - type: MovementSpeedModifier
baseWalkSpeed : 2.7 baseWalkSpeed : 2.5
baseSprintSpeed : 4.5 baseSprintSpeed : 4.5
- type: entity - type: entity

View File

@@ -92,6 +92,10 @@
- state: banana - state: banana
- type: SliceableFood - type: SliceableFood
slice: FoodBreadBananaSlice slice: FoodBreadBananaSlice
- type: Tag
tags:
- Fruit
- Bread
# Tastes like bread, banana, nut. # Tastes like bread, banana, nut.
- type: entity - type: entity
@@ -108,6 +112,9 @@
- type: Sprite - type: Sprite
layers: layers:
- state: banana-slice - state: banana-slice
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: cornbread name: cornbread
@@ -234,6 +241,10 @@
Quantity: 30 Quantity: 30
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- Bread
# Tastes like bread, meat. # Tastes like bread, meat.
- type: entity - type: entity
@@ -259,6 +270,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1.2 Quantity: 1.2
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: mimana bread name: mimana bread
@@ -370,6 +384,10 @@
Quantity: 5 Quantity: 5
- ReagentId: Protein - ReagentId: Protein
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- Bread
- type: entity - type: entity
name: sausage bread slice name: sausage bread slice
@@ -396,6 +414,9 @@
Quantity: 1 Quantity: 1
- ReagentId: Protein - ReagentId: Protein
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: spider meat bread name: spider meat bread
@@ -424,6 +445,10 @@
Quantity: 5 Quantity: 5
- ReagentId: Toxin - ReagentId: Toxin
Quantity: 15 Quantity: 15
- type: Tag
tags:
- Meat
- Bread
# Tastes like bread, cobwebs. # Tastes like bread, cobwebs.
- type: entity - type: entity
@@ -451,6 +476,9 @@
Quantity: 1.2 Quantity: 1.2
- ReagentId: Toxin - ReagentId: Toxin
Quantity: 3 Quantity: 3
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: tofu bread name: tofu bread
@@ -528,6 +556,10 @@
Quantity: 30 Quantity: 30
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- Bread
# Tastes like bread, acid. # Tastes like bread, acid.
- type: entity - type: entity
@@ -553,6 +585,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1.2 Quantity: 1.2
- type: Tag
tags:
- Meat
# Other than bread/slices # Other than bread/slices

View File

@@ -296,6 +296,9 @@
state: apple state: apple
- type: SliceableFood - type: SliceableFood
slice: FoodCakeAppleSlice slice: FoodCakeAppleSlice
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: slice of apple cake name: slice of apple cake
@@ -305,6 +308,9 @@
components: components:
- type: Sprite - type: Sprite
state: apple-slice state: apple-slice
- type: Tag
tags:
- Fruit
# Tastes like sweetness, cake, slime. # Tastes like sweetness, cake, slime.
- type: entity - type: entity
@@ -347,6 +353,9 @@
Quantity: 32 Quantity: 32
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 11 Quantity: 11
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: slice of pumpkin-spice cake name: slice of pumpkin-spice cake
@@ -365,6 +374,9 @@
Quantity: 6.4 Quantity: 6.4
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2.2 Quantity: 2.2
- type: Tag
tags:
- Fruit
# Tastes like sweetness, cake, pumpkin. # Tastes like sweetness, cake, pumpkin.
- type: entity - type: entity

View File

@@ -20,6 +20,7 @@
- type: Tag - type: Tag
tags: tags:
- DonkPocket - DonkPocket
- Meat
# Donkpocket # Donkpocket

View File

@@ -106,6 +106,9 @@
- meaty - meaty
- type: Sprite - type: Sprite
state: meat state: meat
- type: Tag
tags:
- Meat
# Tastes like meat. # Tastes like meat.
- type: entity - type: entity
@@ -303,6 +306,9 @@
Quantity: 3 Quantity: 3
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Fruit
# Tastes like jelly-donut, green apples. # Tastes like jelly-donut, green apples.
- type: entity - type: entity
@@ -362,6 +368,9 @@
Quantity: 3 Quantity: 3
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Fruit
# Tastes like jelly-donut, blumpkin. # Tastes like jelly-donut, blumpkin.
- type: entity - type: entity
@@ -381,6 +390,9 @@
Quantity: 3 Quantity: 3
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Fruit # Apparently this is a fruit. Huh.
# Tastes like jelly-donut, tropical sweetness. # Tastes like jelly-donut, tropical sweetness.
- type: entity - type: entity

View File

@@ -37,6 +37,9 @@
components: components:
- type: Sprite - type: Sprite
state: muffin-berry state: muffin-berry
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: cherry muffin name: cherry muffin
@@ -46,6 +49,9 @@
components: components:
- type: Sprite - type: Sprite
state: muffin-cherry state: muffin-cherry
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: bluecherry muffin name: bluecherry muffin
@@ -55,6 +61,9 @@
components: components:
- type: Sprite - type: Sprite
state: muffin-bluecherry state: muffin-bluecherry
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: honey bun #TODO honey name: honey bun #TODO honey
@@ -138,6 +147,9 @@
Quantity: 5 Quantity: 5
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: sugar cookie name: sugar cookie
@@ -278,6 +290,7 @@
- type: Tag - type: Tag
tags: tags:
- Pancake - Pancake
- Fruit
- type: entity - type: entity
name: chocolate chip pancake name: chocolate chip pancake

View File

@@ -64,6 +64,10 @@
- state: apple - state: apple
- type: SliceableFood - type: SliceableFood
slice: FoodPieAppleSlice slice: FoodPieAppleSlice
- type: Tag
tags:
- Fruit
- Pie
- type: entity - type: entity
name: slice of apple pie name: slice of apple pie
@@ -79,6 +83,10 @@
- state: plain-slice - state: plain-slice
- state: alpha-slice-filling - state: alpha-slice-filling
color: orange color: orange
- type: Tag
tags:
- Fruit
- Pie
# Tastes like pie, apple. # Tastes like pie, apple.
- type: entity - type: entity
@@ -143,6 +151,10 @@
path: /Audio/Weapons/Guns/Empty/empty.ogg path: /Audio/Weapons/Guns/Empty/empty.ogg
ejectSound: ejectSound:
path: /Audio/Weapons/Guns/Empty/empty.ogg path: /Audio/Weapons/Guns/Empty/empty.ogg
- type: Tag
tags:
- Fruit
- Pie
# Tastes like pie, cream, banana. # Tastes like pie, cream, banana.
- type: entity - type: entity
@@ -162,6 +174,10 @@
- state: berryclafoutis - state: berryclafoutis
- type: SliceableFood - type: SliceableFood
slice: FoodPieClafoutisSlice slice: FoodPieClafoutisSlice
- type: Tag
tags:
- Fruit
- Pie
- type: entity - type: entity
name: slice of berry clafoutis name: slice of berry clafoutis
@@ -177,6 +193,10 @@
- state: plain-slice - state: plain-slice
- state: alpha-slice-filling - state: alpha-slice-filling
color: pink color: pink
- type: Tag
tags:
- Fruit
- Pie
# Tastes like pie, blackberries. # Tastes like pie, blackberries.
- type: entity - type: entity
@@ -194,6 +214,10 @@
- state: cherry - state: cherry
- type: SliceableFood - type: SliceableFood
slice: FoodPieCherrySlice slice: FoodPieCherrySlice
- type: Tag
tags:
- Fruit
- Pie
- type: entity - type: entity
name: slice of cherry pie name: slice of cherry pie
@@ -208,6 +232,10 @@
- state: plain-slice - state: plain-slice
- state: alpha-slice-filling - state: alpha-slice-filling
color: red color: red
- type: Tag
tags:
- Fruit
- Pie
# Tastes like pie, cherries. # Tastes like pie, cherries.
- type: entity - type: entity
@@ -225,6 +253,10 @@
- state: meat - state: meat
- type: SliceableFood - type: SliceableFood
slice: FoodPieMeatSlice slice: FoodPieMeatSlice
- type: Tag
tags:
- Meat
- Pie
- type: entity - type: entity
name: slice of meat pie name: slice of meat pie
@@ -239,6 +271,10 @@
- state: plain-slice - state: plain-slice
- state: alpha-slice-filling - state: alpha-slice-filling
color: brown color: brown
- type: Tag
tags:
- Meat
- Pie
# Tastes like pie, meat. # Tastes like pie, meat.
- type: entity - type: entity
@@ -256,6 +292,10 @@
- state: xeno - state: xeno
- type: SliceableFood - type: SliceableFood
slice: FoodPieXenoSlice slice: FoodPieXenoSlice
- type: Tag
tags:
- Meat
- Pie
- type: entity - type: entity
name: slice of xeno pie name: slice of xeno pie
@@ -271,6 +311,10 @@
- state: plain-slice - state: plain-slice
- state: alpha-slice-filling - state: alpha-slice-filling
color: green color: green
- type: Tag
tags:
- Meat
- Pie
# Tastes like pie, meat, acid. # Tastes like pie, meat, acid.
- type: entity - type: entity
@@ -356,6 +400,10 @@
- sweet - sweet
- type: Sprite - type: Sprite
state: grape state: grape
- type: Tag
tags:
- Fruit
- Pie
# Tastes like tart, grape. # Tastes like tart, grape.
- type: entity - type: entity
@@ -382,6 +430,10 @@
- apple - apple
- type: Sprite - type: Sprite
state: gapple state: gapple
- type: Tag
tags:
- Fruit
- Pie
# Tastes like tart, apple, expensive metal. # Tastes like tart, apple, expensive metal.
- type: entity - type: entity

View File

@@ -28,6 +28,7 @@
- type: Tag - type: Tag
tags: tags:
- Pizza - Pizza
- Fruit # Tomato? idk
- type: entity - type: entity
parent: FoodInjectableBase # Not sliceable parent: FoodInjectableBase # Not sliceable
@@ -56,6 +57,7 @@
- type: Tag - type: Tag
tags: tags:
- Pizza - Pizza
- Fruit
# Pizza # Pizza
@@ -108,6 +110,10 @@
- state: meat - state: meat
- type: SliceableFood - type: SliceableFood
slice: FoodPizzaMeatSlice slice: FoodPizzaMeatSlice
- type: Tag
tags:
- Meat
- Pizza
- type: entity - type: entity
name: slice of meat pizza name: slice of meat pizza
@@ -124,6 +130,10 @@
- type: Sprite - type: Sprite
layers: layers:
- state: meat-slice - state: meat-slice
- type: Tag
tags:
- Meat
- Pizza
# Tastes like crust, tomato, cheese, meat. # Tastes like crust, tomato, cheese, meat.
- type: entity - type: entity
@@ -247,6 +257,10 @@
Quantity: 6 Quantity: 6
- ReagentId: Omnizine - ReagentId: Omnizine
Quantity: 9 Quantity: 9
- type: Tag
tags:
- Meat
- Pizza
- type: entity - type: entity
@@ -272,6 +286,10 @@
Quantity: 1 Quantity: 1
- ReagentId: Omnizine - ReagentId: Omnizine
Quantity: 1.5 Quantity: 1.5
- type: Tag
tags:
- Meat
- Pizza
# Tastes like crust, tomato, cheese, meat, laziness. # Tastes like crust, tomato, cheese, meat, laziness.
- type: entity - type: entity
@@ -348,6 +366,10 @@
- state: sassysage - state: sassysage
- type: SliceableFood - type: SliceableFood
slice: FoodPizzaSassysageSlice slice: FoodPizzaSassysageSlice
- type: Tag
tags:
- Meat
- Pizza
- type: entity - type: entity
name: slice of sassysage pizza name: slice of sassysage pizza
@@ -364,6 +386,10 @@
- type: Sprite - type: Sprite
layers: layers:
- state: sassysage-slice - state: sassysage-slice
- type: Tag
tags:
- Meat
- Pizza
# Tastes like crust, tomato, cheese, sausage, sass. # Tastes like crust, tomato, cheese, sausage, sass.
- type: entity - type: entity
@@ -401,6 +427,10 @@
- type: Sprite - type: Sprite
layers: layers:
- state: pineapple-slice - state: pineapple-slice
- type: Tag
tags:
- Meat
- Pizza
# Tastes like crust, tomato, cheese, pineapple, ham. # Tastes like crust, tomato, cheese, pineapple, ham.
#TODO: This is a meme pizza from /tg/. It has specially coded mechanics. #TODO: This is a meme pizza from /tg/. It has specially coded mechanics.
@@ -435,6 +465,10 @@
Quantity: 10 Quantity: 10
- ReagentId: Omnizine - ReagentId: Omnizine
Quantity: 30 Quantity: 30
- type: Tag
tags:
- Meat
- Pizza
- type: entity - type: entity
name: slice of Arnold's pizza name: slice of Arnold's pizza
@@ -465,6 +499,10 @@
Quantity: 1.6 Quantity: 1.6
- ReagentId: Omnizine - ReagentId: Omnizine
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- Pizza
# Tastes like crust, tomato, cheese, pepperoni, 9 millimeter bullets. # Tastes like crust, tomato, cheese, pepperoni, 9 millimeter bullets.
#TODO: Make this do poison damage and make cut pizza slices eventually rot into this. #TODO: Make this do poison damage and make cut pizza slices eventually rot into this.

View File

@@ -90,6 +90,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 6 Quantity: 6
- type: Tag
tags:
- Meat
# Tastes like bun, grass. # Tastes like bun, grass.
- type: entity - type: entity
@@ -113,6 +116,9 @@
Quantity: 19 Quantity: 19
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
# Tastes like bun, bacon. # Tastes like bun, bacon.
- type: entity - type: entity
@@ -138,6 +144,9 @@
Quantity: 5 Quantity: 5
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: bearger name: bearger
@@ -162,6 +171,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: big bite burger name: big bite burger
@@ -185,6 +197,9 @@
Quantity: 9 Quantity: 9
- type: Sprite - type: Sprite
state: bigbite state: bigbite
- type: Tag
tags:
- Meat
# Tastes like bun, silver, magic. # Tastes like bun, silver, magic.
- type: entity - type: entity
@@ -210,6 +225,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
# Tastes like bun, brains. # Tastes like bun, brains.
- type: entity - type: entity
@@ -236,6 +254,9 @@
Quantity: 3 Quantity: 3
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: cheese burger name: cheese burger
@@ -261,6 +282,9 @@
Quantity: 7 Quantity: 7
- ReagentId: Protein - ReagentId: Protein
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
# TODO: Make this work. # TODO: Make this work.
# - type: Sprite # - type: Sprite
# state: plate # state: plate
@@ -296,6 +320,9 @@
Quantity: 1 Quantity: 1
- ReagentId: Mayo - ReagentId: Mayo
Quantity: 3 Quantity: 3
- type: Tag
tags:
- Meat
# Tastes like bun, chicken. # Tastes like bun, chicken.
- type: entity - type: entity
@@ -321,6 +348,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 6 Quantity: 6
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: corgi burger #curger... name: corgi burger #curger...
@@ -343,6 +373,9 @@
Quantity: 7 Quantity: 7
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 12 Quantity: 12
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: crab burger name: crab burger
@@ -367,6 +400,9 @@
Quantity: 5 Quantity: 5
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: crazy hamburger # Burger for you euro-cucks name: crazy hamburger # Burger for you euro-cucks
@@ -395,6 +431,9 @@
Quantity: 3 Quantity: 3
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 6 Quantity: 6
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: duck sandwich # Burger for you sick bastards name: duck sandwich # Burger for you sick bastards
@@ -419,6 +458,9 @@
Quantity: 7 Quantity: 7
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
# Tastes like bun, duck. # Tastes like bun, duck.
- type: entity - type: entity
@@ -456,6 +498,9 @@
- fishy - fishy
- type: Sprite - type: Sprite
state: fish state: fish
- type: Tag
tags:
- Meat
# Tastes like bun, fish. # Tastes like bun, fish.
- type: entity - type: entity
@@ -510,6 +555,7 @@
- type: Tag - type: Tag
tags: tags:
- ClothMade - ClothMade
- Meat
# Tastes like bun, ectoplasm. # Tastes like bun, ectoplasm.
- type: entity - type: entity
@@ -535,6 +581,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: McGuffin name: McGuffin
@@ -559,6 +608,9 @@
Quantity: 7 Quantity: 7
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: McRib name: McRib
@@ -585,6 +637,9 @@
Quantity: 4 Quantity: 4
- ReagentId: BbqSauce - ReagentId: BbqSauce
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
# Tastes like bun, pork patty. # Tastes like bun, pork patty.
- type: entity - type: entity
@@ -637,6 +692,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 3 Quantity: 3
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: rat burger name: rat burger
@@ -661,6 +719,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Meat
# Tastes like bun, HEAT. # Tastes like bun, HEAT.
- type: entity - type: entity
@@ -685,6 +746,9 @@
Quantity: 5 Quantity: 5
- ReagentId: SulfuricAcid - ReagentId: SulfuricAcid
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
# Tastes like bun, lettuce, sludge. # Tastes like bun, lettuce, sludge.
- type: entity - type: entity
@@ -763,6 +827,9 @@
Quantity: 5 Quantity: 5
- type: Sprite - type: Sprite
state: superbite state: superbite
- type: Tag
tags:
- Meat
# Tastes like bun, diabetes. # Tastes like bun, diabetes.
- type: entity - type: entity
@@ -814,6 +881,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
# Tastes like bun, acid. # Tastes like bun, acid.
# Note: I would put a bunch of colored burgers here as listed in the tg .dm but # Note: I would put a bunch of colored burgers here as listed in the tg .dm but

View File

@@ -9,6 +9,7 @@
- type: Tag - type: Tag
tags: tags:
- Egg - Egg
- Meat
- type: Food - type: Food
trash: Eggshells trash: Eggshells
- type: Sprite - type: Sprite

View File

@@ -103,6 +103,9 @@
color: red color: red
- type: Food - type: Food
trash: FoodFrozenPopsicleTrash trash: FoodFrozenPopsicleTrash
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: jumbo ice-cream name: jumbo ice-cream
@@ -184,6 +187,9 @@
- state: berry - state: berry
- type: Food - type: Food
trash: FoodFrozenSnowconeTrash trash: FoodFrozenSnowconeTrash
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: fruit salad snowcone name: fruit salad snowcone
@@ -197,6 +203,9 @@
- state: fruitsalad - state: fruitsalad
- type: Food - type: Food
trash: FoodFrozenSnowconeTrash trash: FoodFrozenSnowconeTrash
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: clowncone name: clowncone

View File

@@ -195,6 +195,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Fruit
# Tastes like eggplant, cheese. # Tastes like eggplant, cheese.
- type: entity - type: entity
@@ -222,9 +225,6 @@
- fishy - fishy
- batter - batter
- spicy - spicy
- type: Tag
tags:
- CubanCarp
- type: Sprite - type: Sprite
state: cubancarp state: cubancarp
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -236,6 +236,10 @@
Quantity: 6 Quantity: 6
- ReagentId: CarpoToxin - ReagentId: CarpoToxin
Quantity: 3 Quantity: 3
- type: Tag
tags:
- CubanCarp
- Meat
# Tastes like fish, batter, hot peppers. # Tastes like fish, batter, hot peppers.
- type: entity - type: entity
@@ -259,6 +263,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Meat
# Tastes like meat, cabbage. # Tastes like meat, cabbage.
- type: entity - type: entity
@@ -282,6 +289,9 @@
Quantity: 2 Quantity: 2
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
# Tastes like meat, salmon. # Tastes like meat, salmon.
- type: entity - type: entity
@@ -305,6 +315,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
# Tastes like meat, butter. # Tastes like meat, butter.
- type: entity - type: entity
@@ -330,6 +343,9 @@
Quantity: 10 Quantity: 10
- ReagentId: BbqSauce - ReagentId: BbqSauce
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Meat
# Tastes like meat, smokey sauce. # Tastes like meat, smokey sauce.
- type: entity - type: entity
@@ -354,6 +370,9 @@
Quantity: 6 Quantity: 6
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Meat
# Tastes like eggs, bacon, bun. # Tastes like eggs, bacon, bun.
- type: entity - type: entity
@@ -375,6 +394,9 @@
reagents: reagents:
- ReagentId: Nutriment - ReagentId: Nutriment
Quantity: 9 Quantity: 9
- type: Tag
tags:
- Meat
# Tastes like egg, cheese. # Tastes like egg, cheese.
- type: entity - type: entity
@@ -401,6 +423,9 @@
Quantity: 1 Quantity: 1
- ReagentId: Blackpepper - ReagentId: Blackpepper
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
# Tastes like egg, salt, pepper. # Tastes like egg, salt, pepper.
- type: entity - type: entity
@@ -493,6 +518,9 @@
Quantity: 6 Quantity: 6
- ReagentId: CarpoToxin - ReagentId: CarpoToxin
Quantity: 15 Quantity: 15
- type: Tag
tags:
- Meat
# tastes exotic # tastes exotic
- type: entity - type: entity
@@ -515,6 +543,9 @@
Quantity: 8 Quantity: 8
- ReagentId: CapsaicinOil - ReagentId: CapsaicinOil
Quantity: 6 Quantity: 6
- type: Tag
tags:
- Meat
# What do Europeans eat instead of enchiladas? 25.4 millimeter-iladas. # What do Europeans eat instead of enchiladas? 25.4 millimeter-iladas.
- type: entity - type: entity
@@ -544,6 +575,9 @@
Quantity: 5 Quantity: 5
- ReagentId: Kelotane - ReagentId: Kelotane
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: taco name: taco
@@ -559,6 +593,9 @@
- onion - onion
- type: Sprite - type: Sprite
state: taco state: taco
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: corn in butter name: corn in butter

View File

@@ -43,6 +43,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Perishable - type: Perishable
# raw meat rots in 5 minutes, get it into the freezer fast # raw meat rots in 5 minutes, get it into the freezer fast
rotAfter: 300 rotAfter: 300
@@ -88,6 +89,9 @@
graph: MeatSteak graph: MeatSteak
node: start node: start
defaultTarget: meat steak defaultTarget: meat steak
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: raw human meat name: raw human meat
@@ -120,6 +124,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: fish state: fish
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -144,6 +149,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: bacon state: bacon
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -183,6 +189,7 @@
node: start node: start
defaultTarget: filet migrawr defaultTarget: filet migrawr
- type: entity - type: entity
name: raw penguin meat name: raw penguin meat
parent: FoodMeatRawBase parent: FoodMeatRawBase
@@ -266,6 +273,7 @@
tags: tags:
- Raw - Raw
- HighRiskItem - HighRiskItem
- Meat
- type: Sprite - type: Sprite
state: corgi state: corgi
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -331,6 +339,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: dragon - state: dragon
@@ -407,6 +416,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: rotten state: rotten
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -486,6 +496,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: xeno state: xeno
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -547,6 +558,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: salami state: salami
- type: SliceableFood - type: SliceableFood
@@ -565,6 +577,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: clown state: clown
- type: SliceableFood - type: SliceableFood
@@ -579,6 +592,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: meatball state: meatball
@@ -594,6 +608,7 @@
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
- Meat
- type: Sprite - type: Sprite
state: slime state: slime
@@ -630,6 +645,9 @@
size: 5 size: 5
- type: StaticPrice - type: StaticPrice
price: 3000 #It has so much Omnizin in it price: 3000 #It has so much Omnizin in it
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: steak name: steak
@@ -640,6 +658,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: plain-cooked - state: plain-cooked
@@ -667,6 +686,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -699,6 +719,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -727,6 +748,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -755,6 +777,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -783,6 +806,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: chicken-fried - state: chicken-fried
@@ -811,6 +835,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -842,6 +867,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -867,6 +893,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -920,6 +947,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -948,6 +976,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -970,6 +999,7 @@
- type: Tag - type: Tag
tags: tags:
- Cooked - Cooked
- Meat
- type: Sprite - type: Sprite
state: meatball-cooked state: meatball-cooked
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -995,6 +1025,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet state: cutlet
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -1016,6 +1047,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: cutlet - state: cutlet
@@ -1040,6 +1072,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet state: cutlet
color: white color: white
@@ -1062,6 +1095,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet state: cutlet
color: white color: white
@@ -1084,6 +1118,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet state: cutlet
color: white color: white
@@ -1106,6 +1141,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: cutlet - state: cutlet
@@ -1131,6 +1167,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: spidercutlet state: spidercutlet
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -1156,6 +1193,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: xenocutlet state: xenocutlet
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -1174,6 +1212,7 @@
- type: Tag - type: Tag
tags: tags:
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: salami-slice state: salami-slice
color: red color: red
@@ -1188,6 +1227,7 @@
tags: tags:
- Raw - Raw
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: salami-slice state: salami-slice
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -1211,6 +1251,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet-cooked state: cutlet-cooked
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -1232,6 +1273,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: cutlet-cooked - state: cutlet-cooked
@@ -1256,6 +1298,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet-cooked state: cutlet-cooked
color: white color: white
@@ -1278,6 +1321,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet-cooked state: cutlet-cooked
color: white color: white
@@ -1300,6 +1344,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: cutlet-cooked state: cutlet-cooked
color: white color: white
@@ -1322,6 +1367,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
layers: layers:
- state: cutlet-cooked - state: cutlet-cooked
@@ -1345,6 +1391,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: spidercutlet-cooked state: spidercutlet-cooked
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -1366,6 +1413,7 @@
tags: tags:
- Cooked - Cooked
- Cutlet - Cutlet
- Meat
- type: Sprite - type: Sprite
state: xenocutlet-cooked state: xenocutlet-cooked
- type: SolutionContainerManager - type: SolutionContainerManager

View File

@@ -43,6 +43,9 @@
- tomato - tomato
- type: Sprite - type: Sprite
state: tomato state: tomato
- type: Tag
tags:
- Fruit
# Tastes like pasta, tomato. # Tastes like pasta, tomato.
- type: entity - type: entity
@@ -88,6 +91,9 @@
Quantity: 8 Quantity: 8
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Meat
# Tastes like pasta, meat. # Tastes like pasta, meat.
- type: entity - type: entity

View File

@@ -219,6 +219,9 @@
reagents: reagents:
- ReagentId: JuiceBanana - ReagentId: JuiceBanana
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: mimana name: mimana
@@ -443,6 +446,7 @@
- type: Tag - type: Tag
tags: tags:
- Lemon - Lemon
- Fruit
- type: entity - type: entity
name: lime name: lime
@@ -465,6 +469,7 @@
- type: Tag - type: Tag
tags: tags:
- Lime - Lime
- Fruit
- type: entity - type: entity
name: orange name: orange
@@ -484,6 +489,9 @@
reagents: reagents:
- ReagentId: JuiceOrange - ReagentId: JuiceOrange
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: pineapple name: pineapple
@@ -517,6 +525,9 @@
- type: SliceableFood - type: SliceableFood
count: 5 count: 5
slice: FoodPineappleSlice slice: FoodPineappleSlice
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: potato name: potato
@@ -596,6 +607,9 @@
solution: food solution: food
- !type:DoActsBehavior - !type:DoActsBehavior
acts: [ "Destruction" ] acts: [ "Destruction" ]
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: blue tomato name: blue tomato
@@ -637,6 +651,9 @@
solution: food solution: food
- !type:DoActsBehavior - !type:DoActsBehavior
acts: [ "Destruction" ] acts: [ "Destruction" ]
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: blood tomato name: blood tomato
@@ -676,6 +693,9 @@
solution: food solution: food
- !type:DoActsBehavior - !type:DoActsBehavior
acts: [ "Destruction" ] acts: [ "Destruction" ]
- type: Tag
tags:
- Fruit # Fuck you they're a fruit
- type: entity - type: entity
name: eggplant name: eggplant
@@ -699,6 +719,9 @@
sprite: Objects/Specific/Hydroponics/eggplant.rsi sprite: Objects/Specific/Hydroponics/eggplant.rsi
- type: Produce - type: Produce
seedId: eggplant seedId: eggplant
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: apple name: apple
@@ -727,6 +750,9 @@
reagents: reagents:
- ReagentId: JuiceApple - ReagentId: JuiceApple
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: cocoa pod name: cocoa pod
@@ -757,6 +783,9 @@
- id: FoodCocoaBeans - id: FoodCocoaBeans
sound: sound:
path: /Audio/Effects/packetrip.ogg path: /Audio/Effects/packetrip.ogg
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: ear of corn name: ear of corn
@@ -923,6 +952,9 @@
reagents: reagents:
- ReagentId: JuicePineapple - ReagentId: JuicePineapple
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: onion slice name: onion slice
@@ -1201,6 +1233,7 @@
- type: Tag - type: Tag
tags: tags:
- Galaxythistle - Galaxythistle
- Fruit # Probably?
- type: entity - type: entity
name: fly amanita name: fly amanita
@@ -1252,6 +1285,9 @@
seedId: gatfruit seedId: gatfruit
- type: Food - type: Food
trash: WeaponRevolverPython trash: WeaponRevolverPython
- type: Tag
tags:
- Fruit # It's in the name
- type: entity - type: entity
name: rice bushel name: rice bushel
@@ -1376,6 +1412,9 @@
butcheringType: Knife butcheringType: Knife
spawned: spawned:
- id: ClothingHeadHatWatermelon - id: ClothingHeadHatWatermelon
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: watermelon slice name: watermelon slice
@@ -1406,6 +1445,9 @@
reagents: reagents:
- ReagentId: JuiceWatermelon - ReagentId: JuiceWatermelon
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: grapes name: grapes
@@ -1462,6 +1504,9 @@
reagents: reagents:
- ReagentId: JuiceBerry - ReagentId: JuiceBerry
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: bungo fruit name: bungo fruit
@@ -1500,6 +1545,7 @@
tags: tags:
- Recyclable - Recyclable
- Trash - Trash
- Fruit
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:

View File

@@ -64,6 +64,10 @@
color: green color: green
- state: skewer-meat-alpha4 - state: skewer-meat-alpha4
color: brown color: brown
- type: Tag
tags:
- Meat
- Fruit
- type: entity - type: entity
name: meat kebab name: meat kebab
@@ -78,6 +82,9 @@
- state: skewer-meat2 - state: skewer-meat2
- state: skewer-meat3 - state: skewer-meat3
- state: skewer-meat4 - state: skewer-meat4
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: human kebab name: human kebab

View File

@@ -183,6 +183,9 @@
- type: Item - type: Item
- type: Food - type: Food
trash: FoodPacketPistachioTrash trash: FoodPacketPistachioTrash
- type: Tag
tags:
- Fruit # Seed of a fruit, you can yell at me
- type: entity - type: entity
name: popcorn name: popcorn
@@ -216,6 +219,9 @@
- type: Item - type: Item
- type: Food - type: Food
trash: FoodPacketRaisinsTrash trash: FoodPacketRaisinsTrash
- type: Tag
tags:
- Fruit
- type: entity - type: entity
name: bob's semki sunflower seeds name: bob's semki sunflower seeds
@@ -246,6 +252,9 @@
- type: Item - type: Item
- type: Food - type: Food
trash: FoodPacketSusTrash trash: FoodPacketSusTrash
- type: Tag
tags:
- Meat
- type: entity - type: entity
name: syndi-cakes name: syndi-cakes

View File

@@ -109,6 +109,10 @@
Quantity: 6 Quantity: 6
- ReagentId: Omnizine - ReagentId: Omnizine
Quantity: 8 Quantity: 8
- type: Tag
tags:
- Soup
- Fruit # I don't know what this is but its' a salad so sure
- type: entity - type: entity
name: herb salad name: herb salad
@@ -133,6 +137,10 @@
Quantity: 8 Quantity: 8
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Fruit
- Soup
- type: entity - type: entity
name: valid salad name: valid salad
@@ -161,6 +169,11 @@
Quantity: 2 Quantity: 2
- ReagentId: DoctorsDelight - ReagentId: DoctorsDelight
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Meat
- Fruit
- Soup
- type: entity - type: entity
name: coleslaw name: coleslaw
@@ -264,6 +277,10 @@
Quantity: 2 Quantity: 2
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Fruit
- Soup
- type: entity - type: entity
name: jungle salad name: jungle salad
@@ -288,6 +305,10 @@
Quantity: 7 Quantity: 7
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Fruit
- Soup
- type: entity - type: entity
name: citrus salad name: citrus salad
@@ -312,6 +333,10 @@
Quantity: 18 Quantity: 18
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 15 Quantity: 15
- type: Tag
tags:
- Fruit
- Soup
- type: entity - type: entity
name: salad of eden name: salad of eden
@@ -378,6 +403,10 @@
Quantity: 4 Quantity: 4
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 4 Quantity: 4
- type: Tag
tags:
- Meat
- Soup
- type: entity - type: entity
name: rice and pork name: rice and pork
@@ -406,6 +435,10 @@
Quantity: 6.5 Quantity: 6.5
- ReagentId: Epinephrine - ReagentId: Epinephrine
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Meat
- Soup
- type: entity - type: entity
name: rice pudding name: rice pudding
@@ -462,6 +495,10 @@
Quantity: 3 Quantity: 3
- ReagentId: CapsaicinOil - ReagentId: CapsaicinOil
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Meat
- Soup
# Misc # Misc
@@ -555,6 +592,10 @@
Quantity: 8 Quantity: 8
- ReagentId: Water - ReagentId: Water
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Meat
- Soup
- type: entity - type: entity
name: slime soup name: slime soup
@@ -606,6 +647,10 @@
Quantity: 10 Quantity: 10
- ReagentId: Blood - ReagentId: Blood
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Fruit
- Soup
- type: entity - type: entity
name: wing fang chu name: wing fang chu
@@ -837,6 +882,10 @@
Quantity: 1 Quantity: 1
- ReagentId: Blackpepper - ReagentId: Blackpepper
Quantity: 1 Quantity: 1
- type: Tag
tags:
- Meat
- Soup
- type: entity - type: entity
name: tomato soup name: tomato soup
@@ -862,6 +911,10 @@
Quantity: 5 Quantity: 5
- ReagentId: Water - ReagentId: Water
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Fruit
- Soup
- type: entity - type: entity
name: eyeball soup name: eyeball soup
@@ -886,6 +939,10 @@
Quantity: 5 Quantity: 5
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 3 Quantity: 3
- type: Tag
tags:
- Meat
- Soup
- type: entity - type: entity
name: miso soup name: miso soup
@@ -914,6 +971,10 @@
Quantity: 3 Quantity: 3
- ReagentId: Water - ReagentId: Water
Quantity: 10 Quantity: 10
- type: Tag
tags:
- Meat
- Soup
- type: entity - type: entity
name: mushroom soup name: mushroom soup
@@ -1012,6 +1073,11 @@
Quantity: 5 Quantity: 5
- ReagentId: Vitamin - ReagentId: Vitamin
Quantity: 2 Quantity: 2
- type: Tag
tags:
- Meat
- Fruit
- Soup
- type: entity - type: entity
name: sweet potato soup name: sweet potato soup
@@ -1138,4 +1204,8 @@
Quantity: 5 Quantity: 5
- ReagentId: CapsaicinOil - ReagentId: CapsaicinOil
Quantity: 5 Quantity: 5
- type: Tag
tags:
- Fruit
- Soup
# Tastes like bungo, hot curry. # Tastes like bungo, hot curry.

View File

@@ -428,6 +428,9 @@
transferForensics: true transferForensics: true
- !type:DoActsBehavior - !type:DoActsBehavior
acts: [ "Destruction" ] acts: [ "Destruction" ]
- type: Tag
tags:
- Pill
- type: entity - type: entity
name: pill canister name: pill canister

View File

@@ -476,6 +476,9 @@
- type: Tag - type: Tag
id: ForceNoFixRotations # fixrotations command WON'T target this id: ForceNoFixRotations # fixrotations command WON'T target this
- type: Tag
id: Fruit
- type: Tag - type: Tag
id: Galaxythistle id: Galaxythistle
@@ -709,6 +712,9 @@
- type: Tag - type: Tag
id: Matchstick id: Matchstick
- type: Tag
id: Meat
- type: Tag - type: Tag
id: Medkit id: Medkit
@@ -785,6 +791,9 @@
- type: Tag - type: Tag
id: Pig id: Pig
- type: Tag
id: Pill
- type: Tag - type: Tag
id: PillCanister id: PillCanister