Flavor profiles (#10991)

* flavor profiles

TODO: every single flavor! yeah!!!

* adds basic localization, and flavors/lastFlavor values for when you get the flavor profile message

* multiple and single flavor messages

* start on flavor localization, multiple flavors in localized flavors

* flavor prototypes

* a few more flavors, descriptions on what each section of the flavor file should be doing

* localization for flavor profiles in drink/food system

* adds an event that allows a flavor profile list to be transformed base on the user entity

* raises it on the food entity too

* changes a field in flavor, adds some more flavors, starts adding flavor prototypes

* adds basic flavors to several entities, and consumable drinks, renames flavor field to 'flavors'

* changes call ordering in flavorprofile, adds flavor to ignored components server-side

flavor is really just a popup message, and those are all processed server-side

* fixes where food tried to get the flavor of the user instead of the food

* single flavors will now get the localized string

* getting the flavor message now ensures that flavors are deduplicated

* makes flavor processing more strictly unique bu making everything hashsets

* yeah, that could just not have distinctby now

* adds flavorprofile directly to food base instead for generic food taste

* FlavorProfileModificationEvent now passes a hashset of strings and not flavorprototypes

* flavorprofilesystem now broadcasts the flavor profile modification event

* adds more flavors to the flavor profile loc file

* skips a flavor, if the flavor string is null/empty

* adds some more flavors, adds generic medicine flavor to medicinal chemicals

* more food flavors, adds flavors to swallowing

* adds some cocktails to the set of flavor profiles

* regenerates flavor prototypes

* adds flavor type to all flavors, adds whitespace between variants

* adds more flavors, adds flavors to several chemicals and food items

this is the part that took the longest

* changes backup flavor message

* spelling mistake

* more flavors, and flavors on food

* readds all the type fields, whoops

* fixes localization strings for forcefeeding food/drink

* fixes multiple flavor profile

* adds flavor limit for flavors

* makes that fetch the cvardef instead
This commit is contained in:
Flipp Syder
2022-09-08 16:14:49 -07:00
committed by GitHub
parent f3510324ea
commit 3cfa00e91c
45 changed files with 2048 additions and 9 deletions

View File

@@ -97,6 +97,7 @@ namespace Content.Client.Entry
prototypes.RegisterIgnore("wireLayout"); prototypes.RegisterIgnore("wireLayout");
prototypes.RegisterIgnore("alertLevels"); prototypes.RegisterIgnore("alertLevels");
prototypes.RegisterIgnore("nukeopsRole"); prototypes.RegisterIgnore("nukeopsRole");
prototypes.RegisterIgnore("flavor");
ClientContentIoC.Register(); ClientContentIoC.Register();

View File

@@ -0,0 +1,22 @@
namespace Content.Server.Nutrition.Components;
[RegisterComponent]
public sealed class FlavorProfileComponent : Component
{
/// <summary>
/// Localized string containing the base flavor of this entity.
/// </summary>
[DataField("flavors")]
public HashSet<string> Flavors { get; } = new();
/// <summary>
/// Reagent IDs to ignore when processing this flavor profile. Defaults to nutriment.
/// </summary>
[DataField("ignoreReagents")]
public HashSet<string> IgnoreReagents { get; } = new()
{
"Nutriment",
"Vitamin",
"Protein"
};
}

View File

@@ -32,6 +32,7 @@ namespace Content.Server.Nutrition.EntitySystems
public sealed class DrinkSystem : EntitySystem public sealed class DrinkSystem : EntitySystem
{ {
[Dependency] private readonly FoodSystem _foodSystem = default!; [Dependency] private readonly FoodSystem _foodSystem = default!;
[Dependency] private readonly FlavorProfileSystem _flavorProfileSystem = default!;
[Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!;
@@ -335,13 +336,15 @@ namespace Content.Server.Nutrition.EntitySystems
return; return;
} }
var flavors = _flavorProfileSystem.GetLocalizedFlavorsMessage(args.User, drained);
if (forceDrink) if (forceDrink)
{ {
var targetName = Identity.Entity(uid, EntityManager); var targetName = Identity.Entity(uid, EntityManager);
var userName = Identity.Entity(args.User, EntityManager); var userName = Identity.Entity(args.User, EntityManager);
_popupSystem.PopupEntity( _popupSystem.PopupEntity(
Loc.GetString("drink-component-force-feed-success", ("user", userName)), uid, Filter.Entities(uid)); Loc.GetString("drink-component-force-feed-success", ("user", userName), ("flavors", flavors)), uid, Filter.Entities(uid));
_popupSystem.PopupEntity( _popupSystem.PopupEntity(
Loc.GetString("drink-component-force-feed-success-user", ("target", targetName)), Loc.GetString("drink-component-force-feed-success-user", ("target", targetName)),
@@ -350,7 +353,10 @@ namespace Content.Server.Nutrition.EntitySystems
else else
{ {
_popupSystem.PopupEntity( _popupSystem.PopupEntity(
Loc.GetString("drink-component-try-use-drink-success-slurp"), args.User, Filter.Pvs(args.User)); Loc.GetString("drink-component-try-use-drink-success-slurp-taste", ("flavors", flavors)), args.User,
Filter.Entities(args.User));
_popupSystem.PopupEntity(
Loc.GetString("drink-component-try-use-drink-success-slurp"), args.User, Filter.PvsExcept(args.User));
} }
SoundSystem.Play(args.Drink.UseSound.GetSound(), Filter.Pvs(uid), uid, AudioParams.Default.WithVolume(-2f)); SoundSystem.Play(args.Drink.UseSound.GetSound(), Filter.Pvs(uid), uid, AudioParams.Default.WithVolume(-2f));

View File

@@ -0,0 +1,118 @@
using System.Linq;
using System.Text;
using Content.Server.Nutrition.Components;
using Content.Shared.CCVar;
using Content.Shared.Chemistry.Components;
using Content.Shared.Chemistry.Reagent;
using Microsoft.VisualBasic;
using Robust.Shared.Configuration;
using Robust.Shared.Prototypes;
namespace Content.Server.Nutrition.EntitySystems;
/// <summary>
/// Deals with flavor profiles when you eat something.
/// </summary>
public sealed class FlavorProfileSystem : EntitySystem
{
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
[Dependency] private readonly IConfigurationManager _configManager = default!;
private const string BackupFlavorMessage = "flavor-profile-unknown";
private int FlavorLimit => _configManager.GetCVar(CCVars.FlavorLimit);
public string GetLocalizedFlavorsMessage(EntityUid uid, EntityUid user, Solution solution,
FlavorProfileComponent? flavorProfile = null)
{
var flavors = new HashSet<string>();
if (!Resolve(uid, ref flavorProfile))
{
return Loc.GetString(BackupFlavorMessage);
}
flavors.UnionWith(flavorProfile.Flavors);
flavors.UnionWith(GetFlavorsFromReagents(solution, FlavorLimit - flavors.Count, flavorProfile.IgnoreReagents));
var ev = new FlavorProfileModificationEvent(user, flavors);
RaiseLocalEvent(ev);
RaiseLocalEvent(uid, ev);
RaiseLocalEvent(user, ev);
return FlavorsToFlavorMessage(flavors);
}
public string GetLocalizedFlavorsMessage(EntityUid user, Solution solution)
{
var flavors = GetFlavorsFromReagents(solution, FlavorLimit);
var ev = new FlavorProfileModificationEvent(user, flavors);
RaiseLocalEvent(user, ev, true);
return FlavorsToFlavorMessage(flavors);
}
private string FlavorsToFlavorMessage(HashSet<string> flavorSet)
{
var flavors = new List<FlavorPrototype>();
foreach (var flavor in flavorSet)
{
if (string.IsNullOrEmpty(flavor) || !_prototypeManager.TryIndex<FlavorPrototype>(flavor, out var flavorPrototype))
{
continue;
}
flavors.Add(flavorPrototype);
}
flavors.Sort((a, b) => a.FlavorType.CompareTo(b.FlavorType));
if (flavors.Count == 1 && !string.IsNullOrEmpty(flavors[0].FlavorDescription))
{
return Loc.GetString("flavor-profile", ("flavor", Loc.GetString(flavors[0].FlavorDescription)));
}
if (flavors.Count > 1)
{
var lastFlavor = Loc.GetString(flavors[^1].FlavorDescription);
var allFlavors = string.Join(", ", flavors.GetRange(0, flavors.Count - 1).Select(i => Loc.GetString(i.FlavorDescription)));
return Loc.GetString("flavor-profile-multiple", ("flavors", allFlavors), ("lastFlavor", lastFlavor));
}
return Loc.GetString(BackupFlavorMessage);
}
private HashSet<string> GetFlavorsFromReagents(Solution solution, int desiredAmount, HashSet<string>? toIgnore = null)
{
var flavors = new HashSet<string>();
foreach (var reagent in solution.Contents)
{
if (toIgnore != null && toIgnore.Contains(reagent.ReagentId))
{
continue;
}
if (flavors.Count == desiredAmount)
{
break;
}
var flavor = _prototypeManager.Index<ReagentPrototype>(reagent.ReagentId).Flavor;
flavors.Add(flavor);
}
return flavors;
}
}
public sealed class FlavorProfileModificationEvent : EntityEventArgs
{
public FlavorProfileModificationEvent(EntityUid user, HashSet<string> flavors)
{
User = user;
Flavors = flavors;
}
public EntityUid User { get; }
public HashSet<string> Flavors { get; }
}

View File

@@ -30,6 +30,7 @@ namespace Content.Server.Nutrition.EntitySystems
public sealed class FoodSystem : EntitySystem public sealed class FoodSystem : EntitySystem
{ {
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
[Dependency] private readonly FlavorProfileSystem _flavorProfileSystem = default!;
[Dependency] private readonly BodySystem _bodySystem = default!; [Dependency] private readonly BodySystem _bodySystem = default!;
[Dependency] private readonly StomachSystem _stomachSystem = default!; [Dependency] private readonly StomachSystem _stomachSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!;
@@ -157,6 +158,8 @@ namespace Content.Server.Nutrition.EntitySystems
: args.FoodSolution.CurrentVolume; : args.FoodSolution.CurrentVolume;
var split = _solutionContainerSystem.SplitSolution((args.Food).Owner, args.FoodSolution, transferAmount); var split = _solutionContainerSystem.SplitSolution((args.Food).Owner, args.FoodSolution, transferAmount);
var firstStomach = stomachs.FirstOrNull( var firstStomach = stomachs.FirstOrNull(
stomach => _stomachSystem.CanTransferSolution((stomach.Comp).Owner, split)); stomach => _stomachSystem.CanTransferSolution((stomach.Comp).Owner, split));
@@ -177,11 +180,13 @@ namespace Content.Server.Nutrition.EntitySystems
split.DoEntityReaction(uid, ReactionMethod.Ingestion); split.DoEntityReaction(uid, ReactionMethod.Ingestion);
_stomachSystem.TryTransferSolution(firstStomach.Value.Comp.Owner, split, firstStomach.Value.Comp); _stomachSystem.TryTransferSolution(firstStomach.Value.Comp.Owner, split, firstStomach.Value.Comp);
var flavors = _flavorProfileSystem.GetLocalizedFlavorsMessage(args.Food.Owner, args.User, split);
if (forceFeed) if (forceFeed)
{ {
var targetName = Identity.Entity(uid, EntityManager); var targetName = Identity.Entity(uid, EntityManager);
var userName = Identity.Entity(args.User, EntityManager); var userName = Identity.Entity(args.User, EntityManager);
_popupSystem.PopupEntity(Loc.GetString("food-system-force-feed-success", ("user", userName)), _popupSystem.PopupEntity(Loc.GetString("food-system-force-feed-success", ("user", userName), ("flavors", flavors)),
uid, Filter.Entities(uid)); uid, Filter.Entities(uid));
_popupSystem.PopupEntity(Loc.GetString("food-system-force-feed-success-user", ("target", targetName)), _popupSystem.PopupEntity(Loc.GetString("food-system-force-feed-success-user", ("target", targetName)),
@@ -189,7 +194,7 @@ namespace Content.Server.Nutrition.EntitySystems
} }
else else
{ {
_popupSystem.PopupEntity(Loc.GetString(args.Food.EatMessage, ("food", args.Food.Owner)), args.User, Filter.Entities(args.User)); _popupSystem.PopupEntity(Loc.GetString(args.Food.EatMessage, ("food", args.Food.Owner), ("flavors", flavors)), args.User, Filter.Entities(args.User));
} }
SoundSystem.Play(args.Food.UseSound.GetSound(), Filter.Pvs(uid), uid, AudioParams.Default.WithVolume(-1f)); SoundSystem.Play(args.Food.UseSound.GetSound(), Filter.Pvs(uid), uid, AudioParams.Default.WithVolume(-1f));

View File

@@ -0,0 +1,22 @@
using Robust.Shared.Prototypes;
namespace Content.Server.Nutrition;
[Prototype("flavor")]
public sealed class FlavorPrototype : IPrototype
{
[IdDataField]
public string ID { get; } = default!;
[DataField("flavorType")]
public FlavorType FlavorType { get; } = FlavorType.Base;
[DataField("description")]
public string FlavorDescription { get; } = default!;
}
public enum FlavorType : byte
{
Base,
Complex
}

View File

@@ -1077,6 +1077,18 @@ namespace Content.Shared.CCVar
public static readonly CVarDef<string> public static readonly CVarDef<string>
SalvageForced = CVarDef.Create("salvage.forced", "", CVar.SERVERONLY); SalvageForced = CVarDef.Create("salvage.forced", "", CVar.SERVERONLY);
/*
* Flavor
*/
/// <summary>
/// Flavor limit. This is to ensure that having a large mass of flavors in
/// some food object won't spam a user with flavors.
/// </summary>
public static readonly CVarDef<int>
FlavorLimit = CVarDef.Create("flavor.limit", 10, CVar.SERVERONLY);
/* /*
* Mapping * Mapping
*/ */
@@ -1099,6 +1111,7 @@ namespace Content.Shared.CCVar
public static readonly CVarDef<string> public static readonly CVarDef<string>
AutosaveDirectory = CVarDef.Create("mapping.autosave_dir", "Autosaves", CVar.SERVERONLY); AutosaveDirectory = CVarDef.Create("mapping.autosave_dir", "Autosaves", CVar.SERVERONLY);
/* /*
* Rules * Rules
*/ */

View File

@@ -50,6 +50,9 @@ namespace Content.Shared.Chemistry.Reagent
[ViewVariables(VVAccess.ReadOnly)] [ViewVariables(VVAccess.ReadOnly)]
public string LocalizedPhysicalDescription => Loc.GetString(PhysicalDescription); public string LocalizedPhysicalDescription => Loc.GetString(PhysicalDescription);
[DataField("flavor")]
public string Flavor { get; } = default!;
[DataField("color")] [DataField("color")]
public Color SubstanceColor { get; } = Color.White; public Color SubstanceColor { get; } = Color.White;

View File

@@ -0,0 +1,173 @@
flavor-profile = Tastes {$flavor}.
flavor-profile-multiple = Tastes {$flavors} and {$lastFlavor}.
flavor-profile-unknown = Tastes indescribable.
# Base flavors. Use these when you can't think of anything.
# These are specifically flavors that are placed in front
# of other flavors. When the flavors are processed, these
# will go in front so you don't get this like "Tastes like tomatoes, sweet and spicy",
# instead, you get "Tastes sweet, spicy and like tomatoes".
flavor-base-savory = savory
flavor-base-sweet = sweet
flavor-base-salty = salty
flavor-base-sour = sour
flavor-base-bitter = bitter
flavor-base-spicy = spicy
flavor-base-metallic = metallic
flavor-base-meaty = meaty
flavor-base-fishy = fishy
flavor-base-cheesy = cheesy
flavor-base-funny = funny
flavor-base-tingly = tingly
flavor-base-acid = acidic
flavor-base-leafy = leafy
flavor-base-minty = minty
flavor-base-nutty = nutty
flavor-base-chalky = chalky
flavor-base-oily = oily
flavor-base-peppery = peppery
flavor-base-slimy = slimy
flavor-base-magical = magical
flavor-base-fiber = fibrous
flavor-base-cold = cold
flavor-base-spooky = spooky
flavor-base-smokey = smokey
flavor-base-fruity = fruity
flavor-base-creamy = creamy
flavor-base-fizzy = fizzy
flavor-base-shocking = shocking
flavor-base-cheap = cheap
# lmao
flavor-base-terrible = terrible
# Complex flavors. Put a flavor here when you want something that's more
# specific.
flavor-complex-nothing = like nothing
flavor-complex-honey = like honey
# Food-specific flavors.
## Food chemicals. In case you get something that has this inside.
flavor-complex-nutriment = like nutrition
flavor-complex-vitamin = like vitamins
flavor-complex-protein = like protein
## Generic food taste. This should be replaced with an actual flavor profile,
## if you have food that looks like this.
flavor-complex-food = like food
## Basic foodstuffs (ingredients, generic flavors)
flavor-complex-bun = like bun
flavor-complex-bread = like bread
flavor-complex-batter = like batter
flavor-complex-butter = like butter
flavor-complex-egg = like egg
flavor-complex-bacon = like bacon
flavor-complex-chocolate = like chocolate
flavor-complex-pasta = like pasta
flavor-complex-rice = like rice
flavor-complex-oats = like oats
flavor-complex-jelly = like jelly
flavor-complex-soy = like soy
flavor-complex-ice-cream = like ice cream
flavor-complex-dough = like dough
flavor-complex-sweet-dough = like sweet dough
flavor-complex-tofu = like tofu
flavor-complex-muffin = like a muffin
flavor-complex-peas = like peas
flavor-complex-pineapple = like pineapple
flavor-complex-onion = like onion
flavor-complex-eggplant = like eggplant
flavor-complex-carrot = like carrots
flavor-complex-potatoes = like potatoes
flavor-complex-mushroom = like mushrooms
flavor-complex-tomato = like tomatoes
flavor-complex-corn = like corn
flavor-complex-banana = like bananas
flavor-complex-apple = like apples
flavor-complex-bungo = like bungo
flavor-complex-raisins = like dried grapes
flavor-complex-orange = like oranges
## Complex foodstuffs (cooked foods, joke flavors, etc)
flavor-complex-pink = like pink
flavor-complex-curry = like curry
flavor-complex-borsch-1 = like borsch
flavor-complex-borsch-2 = like bortsch
flavor-complex-borsch-3 = like borstch
flavor-complex-borsch-4 = like borsh
flavor-complex-borsch-5 = like borscht
flavor-complex-mre-brownie = like a cheap brownie
flavor-complex-fortune-cookie = like random chance
flavor-complex-nutribrick = like you're operating in a jungle
flavor-complex-cheap-noodles = like cheap noodles
flavor-complex-syndi-cakes = like a hearty fruit cake
flavor-complex-sus-jerky = like sus
flavor-complex-boritos = like gaming
flavor-complex-nachos = like nachos
flavor-complex-donk = like cheap pizza
flavor-complex-copypasta = like a reptitive joke
flavor-complex-memory-leek = like a fork bomb
flavor-complex-gunpowder = like gunpowder
flavor-complex-validhunting = like validhunting
# Drink-specific flavors.
## Generic alcohol/soda taste. This should be replaced with an actual flavor profile.
flavor-complex-alcohol = like alcohol
flavor-complex-soda = like soda
flavor-complex-juice = like juice
## Basic drinks
flavor-complex-water = like water
flavor-complex-beer = like piss
flavor-complex-ale = like bread
flavor-complex-cola = like cola
flavor-complex-vodka = like fermented grain
flavor-complex-tequila = like fermented death
flavor-complex-sake = like sweet, alcoholic rice
flavor-complex-rum = like fermented sugar
flavor-complex-coffee-liquor = like strong, bitter coffee
flavor-complex-whiskey = like molasses
flavor-complex-shitty-wine = like grape rinds
flavor-complex-iced-tea = like iced tea
flavor-complex-coffee = like coffee
flavor-complex-milk = like milk
flavor-complex-tea = like tea
flavor-complex-ice = like ice
## Cocktails
flavor-complex-long-island = suspiciously like iced tea
flavor-complex-three-mile-island = like tea brewed in nuclear runoff
flavor-complex-whiskey-cola = like carbonated molasses
flavor-complex-singulo = like a bottomless hole
flavor-complex-syndie-bomb = like bitter whiskey
flavor-complex-tequila-sunrise = like a mexican morning
flavor-complex-irish-coffee = like an alcoholic wakeup call
flavor-complex-iced-beer = like ice cold piss
flavor-complex-gargle-blaster = like somebody smashed your head with a lemon-covered brick of gold
flavor-complex-bloody-mary = like a bad hangover
flavor-complex-beepsky = like oil and whiskey
flavor-complex-banana-honk = like a banana milkshake
flavor-complex-atomic-bomb = like a nuclear wasteland
flavor-complex-atomic-cola = like hoarding bottle caps
flavor-complex-cuba-libre = like spiked cola
flavor-complex-gin-tonic = like spiked lemon-lime soda
flavor-complex-screwdriver = like spiked orange juice
### This is exactly what pilk tastes like. I'm not even joking. I might've been a little drunk though
flavor-complex-pilk = like sweet milk
# Medicine/chemical-specific flavors.
## Generic flavors.
flavor-complex-medicine = like medicine
flavor-complex-carpet = like a handful of fur
flavor-complex-bee = unbeelievable
flavor-complex-sax = like jazz

View File

@@ -15,9 +15,10 @@ drink-component-try-use-drink-had-enough = You can't drink more!
drink-component-try-use-drink-cannot-drink-other = They can't drink anything! drink-component-try-use-drink-cannot-drink-other = They can't drink anything!
drink-component-try-use-drink-had-enough-other = They can't drink more! drink-component-try-use-drink-had-enough-other = They can't drink more!
drink-component-try-use-drink-success-slurp = Slurp drink-component-try-use-drink-success-slurp = Slurp
drink-component-try-use-drink-success-slurp-taste = Slurp. {$flavors}
drink-component-force-feed = {CAPITALIZE(THE($user))} is trying to make you drink something! drink-component-force-feed = {CAPITALIZE(THE($user))} is trying to make you drink something!
drink-component-force-feed-success = {CAPITALIZE(THE($user))} forced you to drink something! drink-component-force-feed-success = {CAPITALIZE(THE($user))} forced you to drink something! {$flavors}
drink-component-force-feed-success-user = You successfully feed {THE($target)} drink-component-force-feed-success-user = You successfully feed {THE($target)}
drink-system-verb-drink = Drink drink-system-verb-drink = Drink

View File

@@ -4,8 +4,8 @@
# When trying to eat food without the required utensil... but you gotta hold it # When trying to eat food without the required utensil... but you gotta hold it
food-you-need-to-hold-utensil = You need to be holding a {$utensil} to eat that! food-you-need-to-hold-utensil = You need to be holding a {$utensil} to eat that!
food-nom = Nom food-nom = Nom. {$flavors}
food-swallow = You swallow the {$food}. food-swallow = You swallow the {$food}. {$flavors}
food-system-remove-mask = You need to take off the {$entity} first. food-system-remove-mask = You need to take off the {$entity} first.
@@ -21,5 +21,5 @@ food-system-verb-eat = Eat
## Force feeding ## Force feeding
food-system-force-feed = {CAPITALIZE(THE($user))} is trying feed you something! food-system-force-feed = {CAPITALIZE(THE($user))} is trying feed you something!
food-system-force-feed-success = {CAPITALIZE(THE($user))} forced you to eat something! food-system-force-feed-success = {CAPITALIZE(THE($user))} forced you to eat something! {$flavors}
food-system-force-feed-success-user = You successfully feed {THE($target)} food-system-force-feed-success-user = You successfully feed {THE($target)}

View File

@@ -5,6 +5,9 @@
id: FoodBreadBase id: FoodBreadBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/Baked/bread.rsi sprite: Objects/Consumable/Food/Baked/bread.rsi
@@ -22,6 +25,9 @@
id: FoodBreadSliceBase id: FoodBreadSliceBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- bread
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -94,6 +100,10 @@
id: FoodBreadMeat id: FoodBreadMeat
description: The culinary base of every self-respecting eloquen/tg/entleman. description: The culinary base of every self-respecting eloquen/tg/entleman.
components: components:
- type: FlavorProfile
flavors:
- meaty
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -117,6 +127,10 @@
id: FoodBreadMeatSlice id: FoodBreadMeatSlice
description: A slice of delicious meatbread. description: A slice of delicious meatbread.
components: components:
- type: FlavorProfile
flavors:
- meaty
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -137,6 +151,10 @@
id: FoodBreadMeatXeno id: FoodBreadMeatXeno
description: Reassuringly green meatloaf made from xeno meat. Extra heretical. description: Reassuringly green meatloaf made from xeno meat. Extra heretical.
components: components:
- type: FlavorProfile
flavors:
- acidic
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -160,6 +178,10 @@
id: FoodBreadMeatXenoSlice id: FoodBreadMeatXenoSlice
description: A slice of delicious meatbread. Extra heretical. description: A slice of delicious meatbread. Extra heretical.
components: components:
- type: FlavorProfile
flavors:
- acidic
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -227,6 +249,11 @@
id: FoodBreadBanana id: FoodBreadBanana
description: A heavenly and filling treat. description: A heavenly and filling treat.
components: components:
- type: FlavorProfile
flavors:
- banana
- nutty
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -241,6 +268,11 @@
id: FoodBreadBananaSlice id: FoodBreadBananaSlice
description: A slice of delicious banana bread. description: A slice of delicious banana bread.
components: components:
- type: FlavorProfile
flavors:
- banana
- nutty
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -295,6 +327,11 @@
id: FoodBreadCreamcheese id: FoodBreadCreamcheese
description: Yum yum yum! description: Yum yum yum!
components: components:
- type: FlavorProfile
flavors:
- cheesy
- creamy
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:
@@ -318,6 +355,11 @@
id: FoodBreadCreamcheeseSlice id: FoodBreadCreamcheeseSlice
description: A slice of yum! description: A slice of yum!
components: components:
- type: FlavorProfile
flavors:
- cheesy
- creamy
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
layers: layers:

View File

@@ -5,6 +5,9 @@
id: FoodCakeBase id: FoodCakeBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Food - type: Food
trash: FoodPlate trash: FoodPlate
- type: Sprite - type: Sprite
@@ -26,6 +29,9 @@
abstract: true abstract: true
description: Just a slice of cake, it is enough for everyone. description: Just a slice of cake, it is enough for everyone.
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Food - type: Food
trash: FoodPlateSmall trash: FoodPlateSmall
- type: SolutionContainerManager - type: SolutionContainerManager

View File

@@ -33,6 +33,11 @@
id: FoodDonkpocket id: FoodDonkpocket
description: The food of choice for the seasoned traitor. description: The food of choice for the seasoned traitor.
components: components:
- type: FlavorProfile
flavors:
- bread
- meaty
- cheap
- type: Sprite - type: Sprite
state: plain state: plain
@@ -42,6 +47,11 @@
id: FoodDonkpocketWarm id: FoodDonkpocketWarm
description: The heated food of choice for the seasoned traitor. description: The heated food of choice for the seasoned traitor.
components: components:
- type: FlavorProfile
flavors:
- bread
- meaty
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -56,6 +66,10 @@
id: FoodDonkpocketDank id: FoodDonkpocketDank
description: The food of choice for the seasoned botanist. description: The food of choice for the seasoned botanist.
components: components:
- type: FlavorProfile
flavors:
- leafy
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -71,6 +85,10 @@
id: FoodDonkpocketDankWarm id: FoodDonkpocketDankWarm
description: The heated food of choice for the seasoned botanist. description: The heated food of choice for the seasoned botanist.
components: components:
- type: FlavorProfile
flavors:
- leafy
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -86,6 +104,11 @@
id: FoodDonkpocketSpicy id: FoodDonkpocketSpicy
description: The classic snack food, now with a heat-activated spicy flair. description: The classic snack food, now with a heat-activated spicy flair.
components: components:
- type: FlavorProfile
flavors:
- spicy
- meaty
- cheap
- type: Sprite - type: Sprite
state: plain state: plain
@@ -95,6 +118,11 @@
id: FoodDonkpocketSpicyWarm id: FoodDonkpocketSpicyWarm
description: The classic snack food, now maybe a bit too spicy. description: The classic snack food, now maybe a bit too spicy.
components: components:
- type: FlavorProfile
flavors:
- spicy
- meaty
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -112,6 +140,11 @@
id: FoodDonkpocketTeriyaki id: FoodDonkpocketTeriyaki
description: An East Asian take on the classic stationside snack. description: An East Asian take on the classic stationside snack.
components: components:
- type: FlavorProfile
flavors:
- meaty
- sweet
- cheap
- type: Sprite - type: Sprite
state: teriyaki state: teriyaki
@@ -121,6 +154,11 @@
id: FoodDonkpocketTeriyakiWarm id: FoodDonkpocketTeriyakiWarm
description: An East Asian take on the classic stationside snack, now steamy and warm. description: An East Asian take on the classic stationside snack, now steamy and warm.
components: components:
- type: FlavorProfile
flavors:
- meaty
- sweet
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -136,6 +174,12 @@
id: FoodDonkpocketPizza id: FoodDonkpocketPizza
description: Delicious, cheesy and surprisingly filling. description: Delicious, cheesy and surprisingly filling.
components: components:
- type: FlavorProfile
flavors:
- bread
- cheesy
- tomato
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -151,6 +195,12 @@
id: FoodDonkpocketPizzaWarm id: FoodDonkpocketPizzaWarm
description: Cheese filling really hits the spot when warm. description: Cheese filling really hits the spot when warm.
components: components:
- type: FlavorProfile
flavors:
- bread
- cheesy
- tomato
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -166,6 +216,10 @@
id: FoodDonkpocketHonk id: FoodDonkpocketHonk
description: The award-winning donk-pocket that won the hearts of clowns and humans alike. description: The award-winning donk-pocket that won the hearts of clowns and humans alike.
components: components:
- type: FlavorProfile
flavors:
- funny
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -183,6 +237,10 @@
id: FoodDonkpocketHonkWarm id: FoodDonkpocketHonkWarm
description: The award-winning donk-pocket, now warm and toasty. description: The award-winning donk-pocket, now warm and toasty.
components: components:
- type: FlavorProfile
flavors:
- funny
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -198,6 +256,10 @@
id: FoodDonkpocketBerry id: FoodDonkpocketBerry
description: A relentlessly sweet donk-pocket first created for use in Operation Iraqi Freedom. description: A relentlessly sweet donk-pocket first created for use in Operation Iraqi Freedom.
components: components:
- type: FlavorProfile
flavors:
- sweet
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -213,6 +275,10 @@
id: FoodDonkpocketBerryWarm id: FoodDonkpocketBerryWarm
description: A relentlessly sweet donk-pocket, now warm and delicious. description: A relentlessly sweet donk-pocket, now warm and delicious.
components: components:
- type: FlavorProfile
flavors:
- sweet
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -230,6 +296,10 @@
id: FoodDonkpocketGondola id: FoodDonkpocketGondola
description: The choice to use real gondola meat in the recipe is controversial, to say the least. description: The choice to use real gondola meat in the recipe is controversial, to say the least.
components: components:
- type: FlavorProfile
flavors:
- shocking
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -244,6 +314,10 @@
parent: FoodDonkpocketGondola parent: FoodDonkpocketGondola
id: FoodDonkpocketGondolaWarm id: FoodDonkpocketGondolaWarm
components: components:
- type: FlavorProfile
flavors:
- shocking
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -259,6 +333,10 @@
id: FoodDonkpocketDink id: FoodDonkpocketDink
description: An off-brand lizard donk-pocket, filled with pickled carrot and wrapped with seaweed. Best eaten cold, or even better, not eaten at all. description: An off-brand lizard donk-pocket, filled with pickled carrot and wrapped with seaweed. Best eaten cold, or even better, not eaten at all.
components: components:
- type: FlavorProfile
flavors:
- cold
- cheap
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:

View File

@@ -39,6 +39,9 @@
parent: FoodDonutBase parent: FoodDonutBase
id: FoodDonutPlain id: FoodDonutPlain
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Sprite - type: Sprite
state: plain state: plain
@@ -47,6 +50,9 @@
parent: FoodDonutBase parent: FoodDonutBase
id: FoodDonutJellyPlain id: FoodDonutJellyPlain
components: components:
- type: FlavorProfile
flavors:
- jelly
- type: Sprite - type: Sprite
state: jelly-plain state: jelly-plain
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -66,6 +72,9 @@
parent: FoodDonutBase parent: FoodDonutBase
id: FoodDonutHomer id: FoodDonutHomer
components: components:
- type: FlavorProfile
flavors:
- pink
- type: Sprite - type: Sprite
state: homer state: homer
- type: Item - type: Item
@@ -77,6 +86,12 @@
id: FoodDonutChaos id: FoodDonutChaos
description: Like life, it never quite tastes the same. description: Like life, it never quite tastes the same.
components: components:
- type: FlavorProfile
flavors:
- sweet
- funny
- magical
- tingly
- type: Sprite - type: Sprite
state: chaos state: chaos
# Tastes like donut, chaos. # Tastes like donut, chaos.
@@ -87,6 +102,9 @@
id: FoodDonutMeat id: FoodDonutMeat
description: Tastes as gross as it looks. description: Tastes as gross as it looks.
components: components:
- type: FlavorProfile
flavors:
- meaty
- type: Sprite - type: Sprite
state: meat state: meat
# Tastes like meat. # Tastes like meat.
@@ -97,6 +115,9 @@
id: FoodDonutPink id: FoodDonutPink
description: Goes great with a soy latte. description: Goes great with a soy latte.
components: components:
- type: FlavorProfile
flavors:
- pink
- type: Sprite - type: Sprite
state: pink state: pink
- type: Item - type: Item
@@ -118,6 +139,10 @@
id: FoodDonutApple id: FoodDonutApple
description: Goes great with a shot of cinnamon schnapps. description: Goes great with a shot of cinnamon schnapps.
components: components:
- type: FlavorProfile
flavors:
- sweet
- apple
- type: Sprite - type: Sprite
state: green state: green
# Tastes like donut, green apples. # Tastes like donut, green apples.
@@ -138,6 +163,9 @@
id: FoodDonutChocolate id: FoodDonutChocolate
description: Goes great with a glass of warm milk. description: Goes great with a glass of warm milk.
components: components:
- type: FlavorProfile
flavors:
- chocolate
- type: Sprite - type: Sprite
state: choc state: choc
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -167,6 +195,10 @@
id: FoodDonutBungo id: FoodDonutBungo
description: Goes great with a mason jar of hippie's delight. description: Goes great with a mason jar of hippie's delight.
components: components:
- type: FlavorProfile
flavors:
- sweet
- bungo
- type: Sprite - type: Sprite
state: yellow state: yellow
# Tastes like donut, tropical sweetness. # Tastes like donut, tropical sweetness.
@@ -177,6 +209,9 @@
id: FoodDonut id: FoodDonut
description: The L-theanine in this donut is relaxing, yet not euphoric. Goes great with a cup of tea. description: The L-theanine in this donut is relaxing, yet not euphoric. Goes great with a cup of tea.
components: components:
- type: FlavorProfile
flavors:
- tea
- type: Sprite - type: Sprite
state: olive state: olive
# Tastes like donut, matcha. # Tastes like donut, matcha.

View File

@@ -5,6 +5,9 @@
id: FoodPieBase id: FoodPieBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Food - type: Food
trash: FoodPlateTin trash: FoodPlateTin
- type: Sprite - type: Sprite
@@ -31,6 +34,9 @@
abstract: true abstract: true
description: A slice of pie. Tasty! description: A slice of pie. Tasty!
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Food - type: Food
trash: FoodPlateSmall trash: FoodPlateSmall
- type: Sprite - type: Sprite
@@ -57,6 +63,10 @@
id: FoodPieApple id: FoodPieApple
description: A pie containing sweet, sweet love... or apple. description: A pie containing sweet, sweet love... or apple.
components: components:
- type: FlavorProfile
flavors:
- sweet
- apple
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -69,6 +79,10 @@
parent: FoodPieSliceBase parent: FoodPieSliceBase
id: FoodPieAppleSlice id: FoodPieAppleSlice
components: components:
- type: FlavorProfile
flavors:
- sweet
- apple
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -84,6 +98,10 @@
id: FoodPieBaklava id: FoodPieBaklava
description: A delightful healthy snack made of nut layers with thin bread. description: A delightful healthy snack made of nut layers with thin bread.
components: components:
- type: FlavorProfile
flavors:
- sweet
- nutty
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -97,6 +115,10 @@
id: FoodPieBaklavaSlice id: FoodPieBaklavaSlice
description: A portion of a delightful healthy snack made of nut layers with thin bread. description: A portion of a delightful healthy snack made of nut layers with thin bread.
components: components:
- type: FlavorProfile
flavors:
- sweet
- nutty
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -109,6 +131,11 @@
id: FoodPieBananaCream id: FoodPieBananaCream
description: Just like back home, on clown planet! HONK! description: Just like back home, on clown planet! HONK!
components: components:
- type: FlavorProfile
flavors:
- sweet
- banana
- creamy
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -122,6 +149,11 @@
id: FoodPieClafoutis id: FoodPieClafoutis
description: No black birds, this is a good sign. description: No black birds, this is a good sign.
components: components:
- type: FlavorProfile
flavors:
- sweet
- banana
- creamy
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -135,6 +167,9 @@
parent: FoodPieSliceBase parent: FoodPieSliceBase
id: FoodPieClafoutisSlice id: FoodPieClafoutisSlice
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -150,6 +185,9 @@
id: FoodPieCherry id: FoodPieCherry
description: Tastes good enough to make a grown man cry. description: Tastes good enough to make a grown man cry.
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -162,6 +200,9 @@
parent: FoodPieSliceBase parent: FoodPieSliceBase
id: FoodPieCherrySlice id: FoodPieCherrySlice
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -177,6 +218,9 @@
id: FoodPieMeat id: FoodPieMeat
description: An old barber recipe, very delicious! description: An old barber recipe, very delicious!
components: components:
- type: FlavorProfile
flavors:
- meaty
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -189,6 +233,9 @@
parent: FoodPieSliceBase parent: FoodPieSliceBase
id: FoodPieMeatSlice id: FoodPieMeatSlice
components: components:
- type: FlavorProfile
flavors:
- meaty
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -203,6 +250,10 @@
parent: FoodPieBase parent: FoodPieBase
id: FoodPieXeno id: FoodPieXeno
components: components:
- type: FlavorProfile
flavors:
- meaty
- acidic
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -215,6 +266,10 @@
parent: FoodPieSliceBase parent: FoodPieSliceBase
id: FoodPieXenoSlice id: FoodPieXenoSlice
components: components:
- type: FlavorProfile
flavors:
- meaty
- acidic
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -230,6 +285,9 @@
id: FoodPieFrosty id: FoodPieFrosty
description: Tastes like blue and cold. description: Tastes like blue and cold.
components: components:
- type: FlavorProfile
flavors:
- cold
- type: Sprite - type: Sprite
layers: layers:
- state: tin - state: tin
@@ -242,6 +300,9 @@
parent: FoodPieSliceBase parent: FoodPieSliceBase
id: FoodPieFrostySlice id: FoodPieFrostySlice
components: components:
- type: FlavorProfile
flavors:
- cold
- type: Sprite - type: Sprite
layers: layers:
- state: plate-small - state: plate-small
@@ -259,6 +320,9 @@
id: FoodPieAmanita id: FoodPieAmanita
description: Sweet and tasty poison pie. description: Sweet and tasty poison pie.
components: components:
- type: FlavorProfile
flavors:
- mushroom
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -282,6 +346,9 @@
id: FoodPiePlump id: FoodPiePlump
description: I bet you love stuff made out of plump helmets! description: I bet you love stuff made out of plump helmets!
components: components:
- type: FlavorProfile
flavors:
- mushroom
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -296,6 +363,9 @@
id: FoodTartGrape id: FoodTartGrape
description: A tasty dessert that reminds you of the wine you didn't make. description: A tasty dessert that reminds you of the wine you didn't make.
components: components:
- type: FlavorProfile
flavors:
- sweet
- type: Food - type: Food
trash: FoodPlateSmall trash: FoodPlateSmall
- type: Sprite - type: Sprite
@@ -310,6 +380,9 @@
id: FoodTartMime id: FoodTartMime
description: "\" \"" description: "\" \""
components: components:
- type: FlavorProfile
flavors:
- nothing
- type: Food - type: Food
trash: FoodPlateSmall trash: FoodPlateSmall
- type: Sprite - type: Sprite
@@ -324,6 +397,9 @@
id: FoodTartGapple id: FoodTartGapple
description: A tasty dessert that won't make it through a metal detector. description: A tasty dessert that won't make it through a metal detector.
components: components:
- type: FlavorProfile
flavors:
- apple
- type: Food - type: Food
trash: FoodPlateSmall trash: FoodPlateSmall
- type: Sprite - type: Sprite
@@ -338,6 +414,9 @@
id: FoodTartCoco id: FoodTartCoco
description: A tasty dessert made of chocolate, with a liquid core. description: A tasty dessert made of chocolate, with a liquid core.
components: components:
- type: FlavorProfile
flavors:
- chocolate
- type: Food - type: Food
trash: FoodPlateSmall trash: FoodPlateSmall
- type: Sprite - type: Sprite

View File

@@ -5,6 +5,10 @@
id: FoodPizzaBase id: FoodPizzaBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- oily
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/Baked/pizza.rsi sprite: Objects/Consumable/Food/Baked/pizza.rsi
@@ -31,6 +35,10 @@
id: FoodPizzaSliceBase id: FoodPizzaSliceBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- oily
- bread
- type: Food - type: Food
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/Baked/pizza.rsi sprite: Objects/Consumable/Food/Baked/pizza.rsi
@@ -59,6 +67,11 @@
id: FoodPizzaMargherita id: FoodPizzaMargherita
description: The flavor of Italy. description: The flavor of Italy.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: margherita - state: margherita
@@ -71,6 +84,11 @@
id: FoodPizzaMargheritaSlice id: FoodPizzaMargheritaSlice
description: A slice of Italy. description: A slice of Italy.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: margherita-slice - state: margherita-slice
@@ -81,6 +99,12 @@
id: FoodPizzaMeat id: FoodPizzaMeat
description: Greasy pizza with delicious meat. description: Greasy pizza with delicious meat.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: meat - state: meat
@@ -93,6 +117,12 @@
id: FoodPizzaMeatSlice id: FoodPizzaMeatSlice
description: A nutritious slice of meatpizza. description: A nutritious slice of meatpizza.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: meat-slice - state: meat-slice
@@ -104,6 +134,11 @@
id: FoodPizzaMushroom id: FoodPizzaMushroom
description: Very special pizza. description: Very special pizza.
components: components:
- type: FlavorProfile
flavors:
- mushroom
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: mushroom - state: mushroom
@@ -116,6 +151,11 @@
id: FoodPizzaMushroomSlice id: FoodPizzaMushroomSlice
description: Maybe it is the last slice of pizza in your life. description: Maybe it is the last slice of pizza in your life.
components: components:
- type: FlavorProfile
flavors:
- mushroom
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: mushroom-slice - state: mushroom-slice
@@ -127,6 +167,14 @@
id: FoodPizzaVegetable id: FoodPizzaVegetable
description: The station's vegetarians will thank you for making this. description: The station's vegetarians will thank you for making this.
components: components:
- type: FlavorProfile
flavors:
- eggplant
- corn
- tomato
- oily
- cheesy
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: vegetable - state: vegetable
@@ -150,6 +198,15 @@
id: FoodPizzaVegetableSlice id: FoodPizzaVegetableSlice
description: A slice of this is enough to satisfy even the pickiest station personnel. description: A slice of this is enough to satisfy even the pickiest station personnel.
components: components:
- type: FlavorProfile
flavors:
- eggplant
- corn
- tomato
- carrot
- oily
- cheesy
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: vegetable-slice - state: vegetable-slice
@@ -173,6 +230,9 @@
id: FoodPizzaDonkpocket id: FoodPizzaDonkpocket
description: Who thought this would be a good idea? description: Who thought this would be a good idea?
components: components:
- type: FlavorProfile
flavors:
- donk
- type: Sprite - type: Sprite
layers: layers:
- state: donkpocket - state: donkpocket
@@ -197,6 +257,9 @@
id: FoodPizzaDonkpocketSlice id: FoodPizzaDonkpocketSlice
description: Smells like donk-pocket. description: Smells like donk-pocket.
components: components:
- type: FlavorProfile
flavors:
- donk
- type: Sprite - type: Sprite
layers: layers:
- state: donkpocket-slice - state: donkpocket-slice
@@ -219,6 +282,12 @@
id: FoodPizzaDank id: FoodPizzaDank
description: The hippie's pizza of choice. description: The hippie's pizza of choice.
components: components:
- type: FlavorProfile
flavors:
- oily
- bread
- cheesy
- leafy
- type: Sprite - type: Sprite
layers: layers:
- state: dank - state: dank
@@ -242,6 +311,12 @@
id: FoodPizzaDankSlice id: FoodPizzaDankSlice
description: So good, man... description: So good, man...
components: components:
- type: FlavorProfile
flavors:
- oily
- bread
- cheesy
- leafy
- type: Sprite - type: Sprite
layers: layers:
- state: dank-slice - state: dank-slice
@@ -264,6 +339,12 @@
id: FoodPizzaSassysage id: FoodPizzaSassysage
description: You can really smell the sassiness. description: You can really smell the sassiness.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: sassysage - state: sassysage
@@ -276,6 +357,12 @@
id: FoodPizzaSassysageSlice id: FoodPizzaSassysageSlice
description: Deliciously sassy. description: Deliciously sassy.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: sassysage-slice - state: sassysage-slice
@@ -287,6 +374,13 @@
id: FoodPizzaPineapple id: FoodPizzaPineapple
description: Makes people burst into tears. Tears of joy or sadness depends on the persons fondness for pineapple. description: Makes people burst into tears. Tears of joy or sadness depends on the persons fondness for pineapple.
components: components:
- type: FlavorProfile
flavors:
- meaty
- pineapple
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: pineapple - state: pineapple
@@ -299,6 +393,13 @@
id: FoodPizzaPineappleSlice id: FoodPizzaPineappleSlice
description: A slice of joy/sin. description: A slice of joy/sin.
components: components:
- type: FlavorProfile
flavors:
- meaty
- pineapple
- cheesy
- oily
- bread
- type: Sprite - type: Sprite
layers: layers:
- state: pineapple-slice - state: pineapple-slice
@@ -311,6 +412,13 @@
id: FoodPizzaArnold id: FoodPizzaArnold
description: Hello, you've reached Arnold's pizza shop. I'm not here now, I'm out killing pepperoni. description: Hello, you've reached Arnold's pizza shop. I'm not here now, I'm out killing pepperoni.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- oily
- bread
- gunpowder
- type: Sprite - type: Sprite
layers: layers:
- state: arnold - state: arnold
@@ -336,6 +444,13 @@
id: FoodPizzaArnoldSlice id: FoodPizzaArnoldSlice
description: I come over, maybe I give you a pizza, maybe I break off your arm. description: I come over, maybe I give you a pizza, maybe I break off your arm.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- oily
- bread
- gunpowder
- type: Sprite - type: Sprite
layers: layers:
- state: arnold-slice - state: arnold-slice
@@ -361,6 +476,11 @@
id: FoodPizzaMoldySlice id: FoodPizzaMoldySlice
description: Once a perfectly good slice of pizza pie, but now it lies here, rancid and bursting with spores. description: Once a perfectly good slice of pizza pie, but now it lies here, rancid and bursting with spores.
components: components:
- type: FlavorProfile
flavors:
- bitter
- terrible
- mushroom
- type: Sprite - type: Sprite
layers: layers:
- state: moldy-slice - state: moldy-slice

View File

@@ -26,6 +26,10 @@
id: FoodBurgerBase id: FoodBurgerBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- bun
- meaty
- type: Food - type: Food
transferAmount: 5 transferAmount: 5
- type: Sprite - type: Sprite
@@ -76,6 +80,10 @@
id: FoodBurgerCarp id: FoodBurgerCarp
description: Almost like a carp is yelling somewhere... description: Almost like a carp is yelling somewhere...
components: components:
- type: FlavorProfile
flavors:
- bun
- fishy
- type: Sprite - type: Sprite
state: fish state: fish
# Tastes like bun, fish. # Tastes like bun, fish.
@@ -86,6 +94,10 @@
id: FoodBurgerTofu id: FoodBurgerTofu
description: What... is that meat? description: What... is that meat?
components: components:
- type: FlavorProfile
flavors:
- bun
- tofu
- type: Sprite - type: Sprite
state: tofu state: tofu
# Tastes like bun, tofu. # Tastes like bun, tofu.
@@ -96,6 +108,11 @@
id: FoodBurgerRobot id: FoodBurgerRobot
description: The lettuce is the only organic component. Beep. description: The lettuce is the only organic component. Beep.
components: components:
- type: FlavorProfile
flavors:
- bun
- leafy
- metallic
- type: Sprite - type: Sprite
state: ro state: ro
# Tastes like bun, lettuce, sludge. # Tastes like bun, lettuce, sludge.
@@ -106,6 +123,11 @@
id: FoodBurgerXeno id: FoodBurgerXeno
description: Smells caustic. Tastes like heresy. description: Smells caustic. Tastes like heresy.
components: components:
- type: FlavorProfile
flavors:
- bun
- meaty
- acidic
- type: Sprite - type: Sprite
state: x state: x
# Tastes like bun, acid. # Tastes like bun, acid.
@@ -136,6 +158,9 @@
id: FoodBurgerClown id: FoodBurgerClown
description: This tastes funny... description: This tastes funny...
components: components:
- type: FlavorProfile
flavors:
- funny
- type: Sprite - type: Sprite
state: clown state: clown
@@ -145,6 +170,9 @@
id: FoodBurgerMime id: FoodBurgerMime
description: Its taste defies language. description: Its taste defies language.
components: components:
- type: FlavorProfile
flavors:
- nothing
- type: Sprite - type: Sprite
state: mime state: mime
# Tastes like . # Tastes like .
@@ -165,6 +193,10 @@
id: FoodBurgerGhost id: FoodBurgerGhost
description: Too spooky! description: Too spooky!
components: components:
- type: FlavorProfile
flavors:
- bun
- spooky
- type: Sprite - type: Sprite
state: ghost state: ghost
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -187,6 +219,10 @@
id: FoodBurgerSpell id: FoodBurgerSpell
description: This is absolutely Ei Nath. description: This is absolutely Ei Nath.
components: components:
- type: FlavorProfile
flavors:
- bun
- magical
- type: Sprite - type: Sprite
state: spell state: spell
# Tastes like bun, silver. # Tastes like bun, silver.
@@ -197,6 +233,11 @@
id: FoodBurgerBig id: FoodBurgerBig
description: Forget the Big Mac. THIS is the future! description: Forget the Big Mac. THIS is the future!
components: components:
- type: FlavorProfile
flavors: # What bun?
- meaty
- oily
- cheesy
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -216,6 +257,11 @@
id: FoodBurgerSuper id: FoodBurgerSuper
description: This is a mountain of a burger. FOOD! description: This is a mountain of a burger. FOOD!
components: components:
- type: FlavorProfile
flavors: # What bun?
- meaty
- oily
- cheesy
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -239,6 +285,10 @@
id: FoodBurgerFive id: FoodBurgerFive
description: HOT! HOT! HOT! description: HOT! HOT! HOT!
components: components:
- type: FlavorProfile
flavors:
- meaty
- spicy
- type: Sprite - type: Sprite
state: fivealarm state: fivealarm
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -292,6 +342,10 @@
id: FoodBurgerBacon id: FoodBurgerBacon
description: The perfect combination of all things American. description: The perfect combination of all things American.
components: components:
- type: FlavorProfile
flavors:
- meaty
- bacon
- type: Sprite - type: Sprite
state: bacon state: bacon
solutions: solutions:
@@ -350,6 +404,10 @@
id: FoodBurgerSoy id: FoodBurgerSoy
description: After eating this you have the overwhelming urge to purchase overpriced figurines of superheroes. description: After eating this you have the overwhelming urge to purchase overpriced figurines of superheroes.
components: components:
- type: FlavorProfile
flavors:
- bun
- soy
- type: Sprite - type: Sprite
state: soylent state: soylent
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -394,6 +452,10 @@
id: FoodBurgerMcguffin id: FoodBurgerMcguffin
description: A cheap and greasy imitation of an eggs Benedict. description: A cheap and greasy imitation of an eggs Benedict.
components: components:
- type: FlavorProfile
flavors:
- muffin
- egg
- type: Sprite - type: Sprite
state: mcguffin state: mcguffin
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -457,6 +519,10 @@
id: FoodBurgerCheese id: FoodBurgerCheese
description: This noble burger stands proudly clad in golden cheese. description: This noble burger stands proudly clad in golden cheese.
components: components:
- type: FlavorProfile
flavors:
- meaty
- cheesy
- type: Sprite - type: Sprite
state: cheese state: cheese
- type: SolutionContainerManager - type: SolutionContainerManager

View File

@@ -6,6 +6,9 @@
id: FoodBase id: FoodBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- food
- type: Food - type: Food
- type: Recyclable - type: Recyclable
- type: SpaceGarbage - type: SpaceGarbage

View File

@@ -327,6 +327,9 @@
id: FoodDough id: FoodDough
description: A piece of dough. description: A piece of dough.
components: components:
- type: FlavorProfile
flavors:
- dough
- type: Sprite - type: Sprite
state: dough state: dough
- type: SliceableFood - type: SliceableFood
@@ -339,6 +342,9 @@
id: FoodDoughSlice id: FoodDoughSlice
description: A slice of dough. Can be cooked into a bun. description: A slice of dough. Can be cooked into a bun.
components: components:
- type: FlavorProfile
flavors:
- dough
- type: Sprite - type: Sprite
state: dough-slice state: dough-slice
@@ -348,6 +354,9 @@
id: FoodDoughBun id: FoodDoughBun
description: A base for any self-respecting burger. description: A base for any self-respecting burger.
components: components:
- type: FlavorProfile
flavors:
- bun
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/burger.rsi sprite: Objects/Consumable/Food/burger.rsi
state: bun state: bun
@@ -403,6 +412,9 @@
id: FoodCakeBatter id: FoodCakeBatter
description: Cook it to get a cake. description: Cook it to get a cake.
components: components:
- type: FlavorProfile
flavors:
- sweetdough
- type: Sprite - type: Sprite
state: cakebatter state: cakebatter
@@ -421,6 +433,9 @@
id: FoodCheese id: FoodCheese
description: A big wheel of delcious Cheddar. description: A big wheel of delcious Cheddar.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- type: Sprite - type: Sprite
state: cheesewheel state: cheesewheel
- type: SliceableFood - type: SliceableFood
@@ -433,6 +448,9 @@
id: FoodCheeseSlice id: FoodCheeseSlice
description: A wedge of delicious Cheddar. The cheese wheel it was cut from can't have gone far. description: A wedge of delicious Cheddar. The cheese wheel it was cut from can't have gone far.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- type: Sprite - type: Sprite
state: cheesewedge state: cheesewedge
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -449,6 +467,9 @@
id: FoodBadRecipe id: FoodBadRecipe
description: Someone should be demoted from cook for this. description: Someone should be demoted from cook for this.
components: components:
- type: FlavorProfile
flavors:
- terrible
- type: Sprite - type: Sprite
state: badrecipe state: badrecipe
- type: SolutionContainerManager - type: SolutionContainerManager

View File

@@ -29,6 +29,10 @@
id: FoodMealPotatoLoaded id: FoodMealPotatoLoaded
description: Totally baked. description: Totally baked.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- potatoes
- type: Sprite - type: Sprite
state: loadedbakedpotato state: loadedbakedpotato
# Tastes like potato. # Tastes like potato.
@@ -39,6 +43,10 @@
id: FoodMealFries id: FoodMealFries
description: AKA, French Fries, Freedom Fries, etc. description: AKA, French Fries, Freedom Fries, etc.
components: components:
- type: FlavorProfile
flavors:
- potatoes
- salty
- type: Sprite - type: Sprite
state: fries state: fries
# Tastes like fries, salt. # Tastes like fries, salt.
@@ -49,6 +57,11 @@
id: FoodMealFriesCheesy id: FoodMealFriesCheesy
description: Fries. Covered in cheese. Duh. description: Fries. Covered in cheese. Duh.
components: components:
- type: FlavorProfile
flavors:
- potatoes
- salty
- cheesy
- type: Sprite - type: Sprite
state: fries-cheesy state: fries-cheesy
# Tastes like fries, cheese. # Tastes like fries, cheese.
@@ -59,6 +72,10 @@
id: FoodMealFriesCarrot id: FoodMealFriesCarrot
description: Tasty fries from fresh carrots. description: Tasty fries from fresh carrots.
components: components:
- type: FlavorProfile
flavors:
- carrots
- salty
- type: Sprite - type: Sprite
state: fries-carrot state: fries-carrot
netsync: false netsync: false
@@ -77,6 +94,9 @@
id: FoodMealNachos id: FoodMealNachos
description: Chips from Space Mexico. description: Chips from Space Mexico.
components: components:
- type: FlavorProfile
flavors:
- nachos
- type: Sprite - type: Sprite
state: nachos state: nachos
# Tastes like nachos. # Tastes like nachos.
@@ -87,6 +107,10 @@
id: FoodMealNachosCheesy id: FoodMealNachosCheesy
description: The delicious combination of nachos and melting cheese. description: The delicious combination of nachos and melting cheese.
components: components:
- type: FlavorProfile
flavors:
- nachos
- cheesy
- type: Sprite - type: Sprite
state: nachos-cheesy state: nachos-cheesy
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -108,6 +132,11 @@
id: FoodMealNachosCuban id: FoodMealNachosCuban
description: That's some dangerously spicy nachos. description: That's some dangerously spicy nachos.
components: components:
- type: FlavorProfile
flavors:
- nachos
- cheesy
- spicy
- type: Sprite - type: Sprite
state: nachos-cuban state: nachos-cuban
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -129,6 +158,9 @@
id: FoodMealMint id: FoodMealMint
description: It's wafer thin. description: It's wafer thin.
components: components:
- type: FlavorProfile
flavors:
- minty
- type: Sprite - type: Sprite
state: mint state: mint
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -147,6 +179,10 @@
id: FoodMealEggplantParm id: FoodMealEggplantParm
description: The only good recipe for eggplant. description: The only good recipe for eggplant.
components: components:
- type: FlavorProfile
flavors:
- eggplant
- cheesy
- type: Sprite - type: Sprite
state: eggplantparm state: eggplantparm
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -166,6 +202,10 @@
id: FoodMealPotatoYaki id: FoodMealPotatoYaki
description: Made with roasted sweet potatoes! description: Made with roasted sweet potatoes!
components: components:
- type: FlavorProfile
flavors:
- sweet
- potatoes
- type: Sprite - type: Sprite
state: yakiimo state: yakiimo
# Tastes like sweet potato. # Tastes like sweet potato.
@@ -176,6 +216,11 @@
id: FoodMealCubancarp id: FoodMealCubancarp
description: A grifftastic sandwich that burns your tongue and then leaves it numb! description: A grifftastic sandwich that burns your tongue and then leaves it numb!
components: components:
- type: FlavorProfile
flavors:
- fishy
- batter
- spicy
- type: Sprite - type: Sprite
state: cubancarp state: cubancarp
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -195,6 +240,9 @@
id: FoodMealCornedbeef id: FoodMealCornedbeef
description: Now you can feel like a real tourist vacationing in Ireland. description: Now you can feel like a real tourist vacationing in Ireland.
components: components:
- type: FlavorProfile
flavors:
- meaty
- type: Sprite - type: Sprite
state: cornedbeef state: cornedbeef
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -214,6 +262,10 @@
id: FoodMealBearsteak id: FoodMealBearsteak
description: Because eating bear wasn't manly enough. description: Because eating bear wasn't manly enough.
components: components:
- type: FlavorProfile
flavors:
- meaty
- fishy
- type: Sprite - type: Sprite
state: bearsteak state: bearsteak
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -233,6 +285,10 @@
id: FoodMealPigblanket id: FoodMealPigblanket
description: A tiny sausage wrapped in a flakey, buttery roll. Free this pig from its blanket prison by eating it. description: A tiny sausage wrapped in a flakey, buttery roll. Free this pig from its blanket prison by eating it.
components: components:
- type: FlavorProfile
flavors:
- meaty
- butter
- type: Sprite - type: Sprite
state: pigblanket state: pigblanket
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -252,6 +308,10 @@
id: FoodMealRibs id: FoodMealRibs
description: BBQ ribs, slathered in a healthy coating of BBQ sauce. The least vegan thing to ever exist. description: BBQ ribs, slathered in a healthy coating of BBQ sauce. The least vegan thing to ever exist.
components: components:
- type: FlavorProfile
flavors:
- meaty
- smokey
- type: Sprite - type: Sprite
state: ribs state: ribs
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -273,6 +333,11 @@
id: FoodMealEggsbenedict id: FoodMealEggsbenedict
description: There is only one egg on this, how rude. description: There is only one egg on this, how rude.
components: components:
- type: FlavorProfile
flavors:
- egg
- bacon
- bun
- type: Sprite - type: Sprite
state: benedict state: benedict
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -292,6 +357,10 @@
id: FoodMealOmelette id: FoodMealOmelette
description: Cheesy. description: Cheesy.
components: components:
- type: FlavorProfile
flavors:
- egg
- cheesy
- type: Sprite - type: Sprite
state: omelette state: omelette
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -309,6 +378,11 @@
id: FoodMealFriedegg id: FoodMealFriedegg
description: A fried egg, with a touch of salt and pepper. description: A fried egg, with a touch of salt and pepper.
components: components:
- type: FlavorProfile
flavors:
- egg
- salty
- peppery
- type: Sprite - type: Sprite
state: friedegg state: friedegg
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -330,6 +404,10 @@
id: FoodMealMilkape id: FoodMealMilkape
description: The king of Jungle Thick. description: The king of Jungle Thick.
components: components:
- type: FlavorProfile
flavors:
- milk
- chocolate
- type: Sprite - type: Sprite
state: milkape state: milkape
# Tastes like milk, chocolate, the jungle. # Tastes like milk, chocolate, the jungle.
@@ -340,6 +418,9 @@
id: FoodMealMemoryleek id: FoodMealMemoryleek
description: This should refresh your memory. description: This should refresh your memory.
components: components:
- type: FlavorProfile
flavors:
- memoryleek
- type: Sprite - type: Sprite
state: memoryLeek state: memoryLeek
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -380,6 +461,9 @@
id: FoodMealQueso id: FoodMealQueso
description: A classic dipping sauce that you can't go wrong with. description: A classic dipping sauce that you can't go wrong with.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- type: Sprite - type: Sprite
state: queso state: queso
# Its queso! Everyone loves queso... Right?. # Its queso! Everyone loves queso... Right?.
@@ -390,6 +474,9 @@
id: FoodMealSashimi id: FoodMealSashimi
description: Its taste can only be described as "Exotic". The poisoning though? That's pretty common. description: Its taste can only be described as "Exotic". The poisoning though? That's pretty common.
components: components:
- type: FlavorProfile
flavors:
- fishy
- type: Sprite - type: Sprite
state: sashimi state: sashimi
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -409,6 +496,9 @@
id: FoodMealEnchiladas id: FoodMealEnchiladas
description: Viva La Mexico! description: Viva La Mexico!
components: components:
- type: FlavorProfile
flavors:
- meaty
- type: Sprite - type: Sprite
state: enchiladas state: enchiladas
- type: SolutionContainerManager - type: SolutionContainerManager

View File

@@ -5,6 +5,9 @@
id: FoodMeatBase id: FoodMeatBase
abstract: true abstract: true
components: components:
- type: FlavorProfile
flavors:
- meaty
- type: Food - type: Food
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/meat.rsi sprite: Objects/Consumable/Food/meat.rsi
@@ -60,6 +63,9 @@
id: FoodMeatFish id: FoodMeatFish
description: Your last words being "Wow, exotic!" are not worth it. The taste itself though? Maybe. description: Your last words being "Wow, exotic!" are not worth it. The taste itself though? Maybe.
components: components:
- type: FlavorProfile
flavors:
- fishy
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
@@ -379,6 +385,10 @@
id: FoodMeatXeno id: FoodMeatXeno
description: A slab of xeno meat, dripping with acid. description: A slab of xeno meat, dripping with acid.
components: components:
- type: FlavorProfile
flavors:
- meaty
- acidic
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
@@ -426,6 +436,10 @@
id: FoodMeatClown id: FoodMeatClown
description: A delicious, round piece of meat clown. How horrifying. description: A delicious, round piece of meat clown. How horrifying.
components: components:
- type: FlavorProfile
flavors:
- meaty
- funny
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
@@ -452,6 +466,9 @@
id: FoodMeatSlime id: FoodMeatSlime
description: A gelatinous shaping of slime jelly. description: A gelatinous shaping of slime jelly.
components: components:
- type: FlavorProfile
flavors:
- slimy
- type: Tag - type: Tag
tags: tags:
- Raw - Raw
@@ -934,6 +951,10 @@
id: FoodMeatXenoCutlet id: FoodMeatXenoCutlet
description: A slab of raw xeno meat, dripping with acid. description: A slab of raw xeno meat, dripping with acid.
components: components:
- type: FlavorProfile
flavors:
- meaty
- acidic
- type: Tag - type: Tag
tags: tags:
- Raw - Raw

View File

@@ -27,6 +27,9 @@
id: FoodNoodlesBoiled id: FoodNoodlesBoiled
description: A plain dish of noodles, this needs more ingredients. description: A plain dish of noodles, this needs more ingredients.
components: components:
- type: FlavorProfile
flavors:
- pasta
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -39,6 +42,10 @@
id: FoodNoodles id: FoodNoodles
description: Spaghetti and crushed tomatoes. Just like your abusive father used to make! description: Spaghetti and crushed tomatoes. Just like your abusive father used to make!
components: components:
- type: FlavorProfile
flavors:
- pasta
- tomato
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -51,6 +58,9 @@
id: FoodNoodlesCopy id: FoodNoodlesCopy
description: You probably shouldn't try this, you always hear people talking about how bad it is... description: You probably shouldn't try this, you always hear people talking about how bad it is...
components: components:
- type: FlavorProfile
flavors:
- copypasta
- type: Sprite - type: Sprite
state: copypasta state: copypasta
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -70,6 +80,10 @@
id: FoodNoodlesMeatball id: FoodNoodlesMeatball
description: Now that's a nice-a meatball! description: Now that's a nice-a meatball!
components: components:
- type: FlavorProfile
flavors:
- pasta
- meaty
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -91,6 +105,10 @@
id: FoodNoodlesSpesslaw id: FoodNoodlesSpesslaw
description: A lawyer's favourite. description: A lawyer's favourite.
components: components:
- type: FlavorProfile
flavors:
- pasta
- meaty
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -112,6 +130,12 @@
id: FoodNoodlesChowmein id: FoodNoodlesChowmein
description: A nice mix of noodles and fried vegetables. description: A nice mix of noodles and fried vegetables.
components: components:
- type: FlavorProfile
flavors:
- pasta
- oily
- eggplant
- carrot
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate
@@ -133,6 +157,10 @@
id: FoodNoodlesButter id: FoodNoodlesButter
description: Noodles covered in savory butter. Simple and slippery, but delicious. description: Noodles covered in savory butter. Simple and slippery, but delicious.
components: components:
- type: FlavorProfile
flavors:
- pasta
- butter
- type: Sprite - type: Sprite
layers: layers:
- state: plate - state: plate

View File

@@ -143,6 +143,9 @@
id: FoodBanana id: FoodBanana
description: Rich in potassium. description: Rich in potassium.
components: components:
- type: FlavorProfile
flavors:
- banana
- type: Food - type: Food
trash: TrashBananaPeel trash: TrashBananaPeel
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -220,6 +223,9 @@
id: FoodCarrot id: FoodCarrot
description: It's good for the eyes! description: It's good for the eyes!
components: components:
- type: FlavorProfile
flavors:
- carrot
- type: Tag - type: Tag
tags: tags:
- Carrot - Carrot
@@ -248,6 +254,9 @@
id: FoodLemon id: FoodLemon
description: When life gives you lemons, be grateful they aren't limes. description: When life gives you lemons, be grateful they aren't limes.
components: components:
- type: FlavorProfile
flavors:
- sour
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -273,6 +282,9 @@
id: FoodPineapple id: FoodPineapple
description: Mmm, tropical. description: Mmm, tropical.
components: components:
- type: FlavorProfile
flavors:
- pineapple
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -303,6 +315,9 @@
id: FoodPotato id: FoodPotato
description: The space Irish starved to death after their potato crops died. Sadly they were unable to fish for space carp due to it being the queen's space. Bringing this up to any space IRA member will drive them insane with anger. description: The space Irish starved to death after their potato crops died. Sadly they were unable to fish for space carp due to it being the queen's space. Bringing this up to any space IRA member will drive them insane with anger.
components: components:
- type: FlavorProfile
flavors:
- potatoes
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -328,6 +343,9 @@
id: FoodTomato id: FoodTomato
description: I say to-mah-to, you say tom-mae-to. description: I say to-mah-to, you say tom-mae-to.
components: components:
- type: FlavorProfile
flavors:
- tomato
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -409,6 +427,9 @@
id: FoodEggplant id: FoodEggplant
description: Maybe there's a chicken inside? description: Maybe there's a chicken inside?
components: components:
- type: FlavorProfile
flavors:
- eggplant
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -429,6 +450,9 @@
id: FoodApple id: FoodApple
description: It's a little piece of Eden. description: It's a little piece of Eden.
components: components:
- type: FlavorProfile
flavors:
- apple
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -454,6 +478,9 @@
id: FoodCorn id: FoodCorn
description: Needs some butter! And some cooking... description: Needs some butter! And some cooking...
components: components:
- type: FlavorProfile
flavors:
- corn
- type: Food - type: Food
trash: FoodCornTrash trash: FoodCornTrash
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -499,6 +526,9 @@
id: FoodOnion id: FoodOnion
description: Nothing to cry over. description: Nothing to cry over.
components: components:
- type: FlavorProfile
flavors:
- onion
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -524,6 +554,9 @@
id: FoodOnionRed id: FoodOnionRed
description: Purple despite the name. description: Purple despite the name.
components: components:
- type: FlavorProfile
flavors:
- onion
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -586,6 +619,9 @@
id: FoodPineappleSlice id: FoodPineappleSlice
description: Mmm, tropical. description: Mmm, tropical.
components: components:
- type: FlavorProfile
flavors:
- pineapple
- type: Sprite - type: Sprite
sprite: Objects/Specific/Hydroponics/pineapple.rsi sprite: Objects/Specific/Hydroponics/pineapple.rsi
- type: Extractable - type: Extractable
@@ -600,6 +636,9 @@
id: FoodOnionSlice id: FoodOnionSlice
description: Nothing to cry over. description: Nothing to cry over.
components: components:
- type: FlavorProfile
flavors:
- onion
- type: Sprite - type: Sprite
sprite: Objects/Specific/Hydroponics/onion.rsi sprite: Objects/Specific/Hydroponics/onion.rsi
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -620,6 +659,9 @@
id: FoodOnionRedSlice id: FoodOnionRedSlice
description: Purple despite the name. description: Purple despite the name.
components: components:
- type: FlavorProfile
flavors:
- onion
- type: Sprite - type: Sprite
sprite: Objects/Specific/Hydroponics/onion_red.rsi sprite: Objects/Specific/Hydroponics/onion_red.rsi
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -640,6 +682,9 @@
id: FoodChili id: FoodChili
description: Spicy, best not touch your eyes. description: Spicy, best not touch your eyes.
components: components:
- type: FlavorProfile
flavors:
- spicy
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -662,6 +707,9 @@
id: FoodAloe id: FoodAloe
description: A fragrant plant with soothing properties. description: A fragrant plant with soothing properties.
components: components:
- type: FlavorProfile
flavors:
- medicine
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -684,6 +732,9 @@
id: FoodPoppy id: FoodPoppy
description: A flower with extracts often used in the production of medicine description: A flower with extracts often used in the production of medicine
components: components:
- type: FlavorProfile
flavors:
- medicine
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -709,6 +760,10 @@
id: FoodLingzhi id: FoodLingzhi
description: A potent medicinal mushroom. Don't go overboard. description: A potent medicinal mushroom. Don't go overboard.
components: components:
- type: FlavorProfile
flavors:
- mushroom
- medicine
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -731,6 +786,10 @@
id: FoodAmbrosiaVulgaris id: FoodAmbrosiaVulgaris
description: A medicinal plant. May make you feel a little funny. description: A medicinal plant. May make you feel a little funny.
components: components:
- type: FlavorProfile
flavors:
- leafy
- medicine
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -763,6 +822,9 @@
id: FoodGalaxythistle id: FoodGalaxythistle
description: A medicinal plant used for its antitoxin. description: A medicinal plant used for its antitoxin.
components: components:
- type: FlavorProfile
flavors:
- medicine
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -783,6 +845,9 @@
id: FoodFlyAmanita id: FoodFlyAmanita
description: A delicious-looking mushroom like you see in those cartoons. description: A delicious-looking mushroom like you see in those cartoons.
components: components:
- type: FlavorProfile
flavors:
- mushroom
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:
@@ -805,6 +870,9 @@
id: FoodGatfruit id: FoodGatfruit
description: A delicious, gun-shaped fruit with a thick wooden stem. description: A delicious, gun-shaped fruit with a thick wooden stem.
components: components:
- type: FlavorProfile
flavors:
- gunpowder
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
food: food:

View File

@@ -31,6 +31,9 @@
id: FoodSnackBoritos id: FoodSnackBoritos
description: Crunchy, salty tortilla chips. You could probably make nachos with these. description: Crunchy, salty tortilla chips. You could probably make nachos with these.
components: components:
- type: FlavorProfile
flavors:
- boritos
- type: Sprite - type: Sprite
state: boritos state: boritos
- type: Item - type: Item
@@ -43,6 +46,10 @@
id: FoodSnackCheesie id: FoodSnackCheesie
description: Bite sized cheesie snacks that will honk all over your mouth. description: Bite sized cheesie snacks that will honk all over your mouth.
components: components:
- type: FlavorProfile
flavors:
- cheesy
- funny
- type: Sprite - type: Sprite
state: cheesiehonkers state: cheesiehonkers
- type: Item - type: Item
@@ -55,6 +62,11 @@
id: FoodSnackChips id: FoodSnackChips
description: Commander Riker's What-The-Crisps. description: Commander Riker's What-The-Crisps.
components: components:
- type: FlavorProfile
flavors:
- oily
- salty
- potatoes
- type: Sprite - type: Sprite
state: chips state: chips
- type: Item - type: Item
@@ -87,6 +99,9 @@
id: FoodSnackChocolateBar id: FoodSnackChocolateBar
description: Tastes like cardboard. description: Tastes like cardboard.
components: components:
- type: FlavorProfile
flavors:
- chocolate
- type: Sprite - type: Sprite
state: chocolatebar-open state: chocolatebar-open
- type: Item - type: Item
@@ -122,6 +137,12 @@
id: FoodSnackEnergyBar id: FoodSnackEnergyBar
description: An energy bar with a lot of punch. description: An energy bar with a lot of punch.
components: components:
- type: FlavorProfile
flavors:
- nutty
- oats
- fiber
- sweet
- type: Sprite - type: Sprite
state: energybar-open state: energybar-open
- type: Item - type: Item
@@ -132,6 +153,11 @@
id: FoodSnackPopcorn id: FoodSnackPopcorn
description: Grown on an unknown planet, by an unknown farmer, popped by some jerk on a space station. description: Grown on an unknown planet, by an unknown farmer, popped by some jerk on a space station.
components: components:
- type: FlavorProfile
flavors:
- corn
- salt
- butter
- type: Sprite - type: Sprite
state: popcorn state: popcorn
- type: Item - type: Item
@@ -145,6 +171,9 @@
id: FoodSnackRaisins id: FoodSnackRaisins
description: Best raisins in the universe. Not sure why. description: Best raisins in the universe. Not sure why.
components: components:
- type: FlavorProfile
flavors:
- raisins
- type: Sprite - type: Sprite
state: raisins state: raisins
- type: Item - type: Item
@@ -157,6 +186,9 @@
id: FoodSnackSus id: FoodSnackSus
description: Something about this packet makes you feel incredibly uneasy. Jerky's good though. description: Something about this packet makes you feel incredibly uneasy. Jerky's good though.
components: components:
- type: FlavorProfile
flavors:
- susjerky
- type: Sprite - type: Sprite
state: susjerky state: susjerky
- type: Item - type: Item
@@ -169,6 +201,9 @@
id: FoodSnackSyndi id: FoodSnackSyndi
description: An extremely moist snack cake that tastes just as good after being nuked. description: An extremely moist snack cake that tastes just as good after being nuked.
components: components:
- type: FlavorProfile
flavors:
- syndicakes
- type: Sprite - type: Sprite
state: syndicakes state: syndicakes
- type: Item - type: Item
@@ -181,6 +216,11 @@
id: FoodSnackChowMein id: FoodSnackChowMein
description: A salty fried noodle snack. Looks like they forgot the vegetables. description: A salty fried noodle snack. Looks like they forgot the vegetables.
components: components:
- type: FlavorProfile
flavors:
- cheapnoodles
- salty
- oily
- type: Sprite - type: Sprite
state: chinese1 state: chinese1
- type: Item - type: Item
@@ -202,6 +242,11 @@
id: FoodSnackDanDanNoodles id: FoodSnackDanDanNoodles
description: A spicy Sichuan noodle snack. The chili oil slick pools on top. description: A spicy Sichuan noodle snack. The chili oil slick pools on top.
components: components:
- type: FlavorProfile
flavors:
- cheapnoodles
- oily
- spicy
- type: Sprite - type: Sprite
state: chinese2 state: chinese2
- type: Item - type: Item
@@ -225,6 +270,9 @@
id: FoodSnackCookieFortune id: FoodSnackCookieFortune
description: A boring cardboard tasting snack with a fortune inside. Surprise! You're boring too. description: A boring cardboard tasting snack with a fortune inside. Surprise! You're boring too.
components: components:
- type: FlavorProfile
flavors:
- fortunecookie
- type: Sprite - type: Sprite
state: cookie_fortune state: cookie_fortune
- type: SolutionContainerManager - type: SolutionContainerManager
@@ -266,6 +314,9 @@
name: nutribrick name: nutribrick
description: A carefully synthesized brick designed to contain the highest ratio of nutriment to volume. Tastes like shit. description: A carefully synthesized brick designed to contain the highest ratio of nutriment to volume. Tastes like shit.
components: components:
- type: FlavorProfile
flavors:
- nutribrick
- type: Item - type: Item
size: 10 size: 10
- type: Sprite - type: Sprite
@@ -303,6 +354,9 @@
name: brownie name: brownie
description: A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit. description: A precisely mixed brownie, made to withstand blunt trauma and harsh conditions. Tastes like shit.
components: components:
- type: FlavorProfile
flavors:
- mrebrownie
- type: Sprite - type: Sprite
state: mre-brownie-open state: mre-brownie-open
- type: Food - type: Food

View File

@@ -54,6 +54,9 @@
id: FoodSoupPea id: FoodSoupPea
description: A humble split pea soup. description: A humble split pea soup.
components: components:
- type: FlavorProfile
flavors:
- peas
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/bowl.rsi sprite: Objects/Consumable/Food/bowl.rsi
layers: layers:
@@ -79,6 +82,9 @@
id: FoodSaladAesir id: FoodSaladAesir
description: Probably too incredible for mortals to fully enjoy. description: Probably too incredible for mortals to fully enjoy.
components: components:
- type: FlavorProfile
flavors:
- leafy
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -102,6 +108,10 @@
id: FoodSaladHerb id: FoodSaladHerb
description: A tasty salad with apples on top. description: A tasty salad with apples on top.
components: components:
- type: FlavorProfile
flavors:
- leafy
- apple
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -123,6 +133,12 @@
id: FoodSaladValid id: FoodSaladValid
description: It's just an herb salad with meatballs and fried potato slices. Nothing suspicious about it. description: It's just an herb salad with meatballs and fried potato slices. Nothing suspicious about it.
components: components:
- type: FlavorProfile
flavors:
- leafy
- meaty
- potatoes
- validhunting
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -146,6 +162,9 @@
id: FoodSaladFruit id: FoodSaladFruit
description: Your standard fruit salad. description: Your standard fruit salad.
components: components:
- type: FlavorProfile
flavors:
- fruity
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -167,6 +186,9 @@
id: FoodSaladJungle id: FoodSaladJungle
description: Exotic fruits in a bowl. description: Exotic fruits in a bowl.
components: components:
- type: FlavorProfile
flavors:
- fruity
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -188,6 +210,10 @@
id: FoodSaladCitrus id: FoodSaladCitrus
description: Citrus overload! description: Citrus overload!
components: components:
- type: FlavorProfile
flavors:
- leafy
- sour
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -209,6 +235,9 @@
id: FoodSaladEden id: FoodSaladEden
description: A salad brimming with untapped potential. description: A salad brimming with untapped potential.
components: components:
- type: FlavorProfile
flavors:
- bitter
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -234,6 +263,9 @@
id: FoodRiceBoiled id: FoodRiceBoiled
description: A warm bowl of rice. description: A warm bowl of rice.
components: components:
- type: FlavorProfile
flavors:
- rice
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -246,6 +278,10 @@
id: FoodRiceEgg id: FoodRiceEgg
description: A bowl of rice with a fried egg. description: A bowl of rice with a fried egg.
components: components:
- type: FlavorProfile
flavors:
- rice
- egg
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -266,6 +302,10 @@
id: FoodRicePork id: FoodRicePork
description: Well, it looks like pork... description: Well, it looks like pork...
components: components:
- type: FlavorProfile
flavors:
- rice
- meaty
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -291,6 +331,10 @@
id: FoodRicePudding id: FoodRicePudding
description: Everybody loves rice pudding! description: Everybody loves rice pudding!
components: components:
- type: FlavorProfile
flavors:
- rice
- sweet
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -316,6 +360,12 @@
id: FoodRiceGumbo id: FoodRiceGumbo
description: A spicy and savory meat and rice dish. description: A spicy and savory meat and rice dish.
components: components:
- type: FlavorProfile
flavors:
- rice
- spicy
- meaty
- savory
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -341,6 +391,9 @@
id: FoodOatmeal id: FoodOatmeal
description: A nice bowl of oatmeal. description: A nice bowl of oatmeal.
components: components:
- type: FlavorProfile
flavors:
- oats
- type: Sprite - type: Sprite
layers: layers:
- state: bowl - state: bowl
@@ -375,6 +428,10 @@
id: FoodJellyAmanita id: FoodJellyAmanita
description: It's evil, don't touch it! description: It's evil, don't touch it!
components: components:
- type: FlavorProfile
flavors:
- mushroom
- jelly
- type: Sprite - type: Sprite
sprite: Objects/Consumable/Food/meals.rsi sprite: Objects/Consumable/Food/meals.rsi
state: amanita-jelly state: amanita-jelly

View File

@@ -0,0 +1,645 @@
- type: flavor
id: savory
flavorType: Base
description: flavor-base-savory
- type: flavor
id: sweet
flavorType: Base
description: flavor-base-sweet
- type: flavor
id: salty
flavorType: Base
description: flavor-base-salty
- type: flavor
id: sour
flavorType: Base
description: flavor-base-sour
- type: flavor
id: bitter
flavorType: Base
description: flavor-base-bitter
- type: flavor
id: spicy
flavorType: Base
description: flavor-base-spicy
- type: flavor
id: metallic
flavorType: Base
description: flavor-base-metallic
- type: flavor
id: meaty
flavorType: Base
description: flavor-base-meaty
- type: flavor
id: fishy
flavorType: Base
description: flavor-base-fishy
- type: flavor
id: cheesy
flavorType: Base
description: flavor-base-cheesy
- type: flavor
id: funny
flavorType: Base
description: flavor-base-funny
- type: flavor
id: tingly
flavorType: Base
description: flavor-base-tingly
- type: flavor
id: acid
flavorType: Base
description: flavor-base-acid
- type: flavor
id: leafy
flavorType: Base
description: flavor-base-leafy
- type: flavor
id: minty
flavorType: Base
description: flavor-base-minty
- type: flavor
id: nutty
flavorType: Base
description: flavor-base-nutty
- type: flavor
id: chalky
flavorType: Base
description: flavor-base-chalky
- type: flavor
id: oily
flavorType: Base
description: flavor-base-oily
- type: flavor
id: peppery
flavorType: Base
description: flavor-base-peppery
- type: flavor
id: slimy
flavorType: Base
description: flavor-base-slimy
- type: flavor
id: magical
flavorType: Base
description: flavor-base-magical
- type: flavor
id: fiber
flavorType: Base
description: flavor-base-fiber
- type: flavor
id: cold
flavorType: Base
description: flavor-base-cold
- type: flavor
id: spooky
flavorType: Base
description: flavor-base-spooky
- type: flavor
id: smokey
flavorType: Base
description: flavor-base-smokey
- type: flavor
id: fruity
flavorType: Base
description: flavor-base-fruity
- type: flavor
id: creamy
flavorType: Base
description: flavor-base-creamy
- type: flavor
id: fizzy
flavorType: Base
description: flavor-base-fizzy
- type: flavor
id: shocking
flavorType: Base
description: flavor-base-shocking
- type: flavor
id: cheap
flavorType: Base
description: flavor-base-cheap
- type: flavor
id: terrible
flavorType: Base
description: flavor-base-terrible
- type: flavor
id: nothing
flavorType: Complex
description: flavor-complex-nothing
- type: flavor
id: honey
flavorType: Complex
description: flavor-complex-honey
- type: flavor
id: nutriment
flavorType: Complex
description: flavor-complex-nutriment
- type: flavor
id: vitamin
flavorType: Complex
description: flavor-complex-vitamin
- type: flavor
id: protein
flavorType: Complex
description: flavor-complex-protein
- type: flavor
id: food
flavorType: Complex
description: flavor-complex-food
- type: flavor
id: bun
flavorType: Complex
description: flavor-complex-bun
- type: flavor
id: bread
flavorType: Complex
description: flavor-complex-bread
- type: flavor
id: batter
flavorType: Complex
description: flavor-complex-batter
- type: flavor
id: butter
flavorType: Complex
description: flavor-complex-butter
- type: flavor
id: egg
flavorType: Complex
description: flavor-complex-egg
- type: flavor
id: bacon
flavorType: Complex
description: flavor-complex-bacon
- type: flavor
id: chocolate
flavorType: Complex
description: flavor-complex-chocolate
- type: flavor
id: pasta
flavorType: Complex
description: flavor-complex-pasta
- type: flavor
id: rice
flavorType: Complex
description: flavor-complex-rice
- type: flavor
id: oats
flavorType: Complex
description: flavor-complex-oats
- type: flavor
id: jelly
flavorType: Complex
description: flavor-complex-jelly
- type: flavor
id: soy
flavorType: Complex
description: flavor-complex-soy
- type: flavor
id: icecream
flavorType: Complex
description: flavor-complex-ice-cream
- type: flavor
id: dough
flavorType: Complex
description: flavor-complex-dough
- type: flavor
id: sweetdough
flavorType: Complex
description: flavor-complex-sweet-dough
- type: flavor
id: tofu
flavorType: Complex
description: flavor-complex-tofu
- type: flavor
id: muffin
flavorType: Complex
description: flavor-complex-muffin
- type: flavor
id: peas
flavorType: Complex
description: flavor-complex-peas
- type: flavor
id: pineapple
flavorType: Complex
description: flavor-complex-pineapple
- type: flavor
id: onion
flavorType: Complex
description: flavor-complex-onion
- type: flavor
id: eggplant
flavorType: Complex
description: flavor-complex-eggplant
- type: flavor
id: carrot
flavorType: Complex
description: flavor-complex-carrot
- type: flavor
id: potatoes
flavorType: Complex
description: flavor-complex-potatoes
- type: flavor
id: mushroom
flavorType: Complex
description: flavor-complex-mushroom
- type: flavor
id: tomato
flavorType: Complex
description: flavor-complex-tomato
- type: flavor
id: corn
flavorType: Complex
description: flavor-complex-corn
- type: flavor
id: banana
flavorType: Complex
description: flavor-complex-banana
- type: flavor
id: apple
flavorType: Complex
description: flavor-complex-apple
- type: flavor
id: bungo
flavorType: Complex
description: flavor-complex-bungo
- type: flavor
id: raisins
flavorType: Complex
description: flavor-complex-raisins
- type: flavor
id: orange
flavorType: Complex
description: flavor-complex-orange
- type: flavor
id: pink
flavorType: Complex
description: flavor-complex-pink
- type: flavor
id: curry
flavorType: Complex
description: flavor-complex-curry
- type: flavor
id: borsch1
flavorType: Complex
description: flavor-complex-borsch-1
- type: flavor
id: borsch2
flavorType: Complex
description: flavor-complex-borsch-2
- type: flavor
id: borsch3
flavorType: Complex
description: flavor-complex-borsch-3
- type: flavor
id: borsch4
flavorType: Complex
description: flavor-complex-borsch-4
- type: flavor
id: borsch5
flavorType: Complex
description: flavor-complex-borsch-5
- type: flavor
id: mrebrownie
flavorType: Complex
description: flavor-complex-mre-brownie
- type: flavor
id: fortunecookie
flavorType: Complex
description: flavor-complex-fortune-cookie
- type: flavor
id: nutribrick
flavorType: Complex
description: flavor-complex-nutribrick
- type: flavor
id: cheapnoodles
flavorType: Complex
description: flavor-complex-cheap-noodles
- type: flavor
id: syndicakes
flavorType: Complex
description: flavor-complex-syndi-cakes
- type: flavor
id: susjerky
flavorType: Complex
description: flavor-complex-sus-jerky
- type: flavor
id: boritos
flavorType: Complex
description: flavor-complex-boritos
- type: flavor
id: nachos
flavorType: Complex
description: flavor-complex-nachos
- type: flavor
id: donk
flavorType: Complex
description: flavor-complex-donk
- type: flavor
id: copypasta
flavorType: Complex
description: flavor-complex-copypasta
- type: flavor
id: memoryleek
flavorType: Complex
description: flavor-complex-memory-leek
- type: flavor
id: gunpowder
flavorType: Complex
description: flavor-complex-gunpowder
- type: flavor
id: validhunting
flavorType: Complex
description: flavor-complex-validhunting
- type: flavor
id: alcohol
flavorType: Complex
description: flavor-complex-alcohol
- type: flavor
id: soda
flavorType: Complex
description: flavor-complex-soda
- type: flavor
id: juice
flavorType: Complex
description: flavor-complex-juice
- type: flavor
id: water
flavorType: Complex
description: flavor-complex-water
- type: flavor
id: beer
flavorType: Complex
description: flavor-complex-beer
- type: flavor
id: ale
flavorType: Complex
description: flavor-complex-ale
- type: flavor
id: cola
flavorType: Complex
description: flavor-complex-cola
- type: flavor
id: vodka
flavorType: Complex
description: flavor-complex-vodka
- type: flavor
id: tequila
flavorType: Complex
description: flavor-complex-tequila
- type: flavor
id: sake
flavorType: Complex
description: flavor-complex-sake
- type: flavor
id: rum
flavorType: Complex
description: flavor-complex-rum
- type: flavor
id: coffeeliquor
flavorType: Complex
description: flavor-complex-coffee-liquor
- type: flavor
id: whiskey
flavorType: Complex
description: flavor-complex-whiskey
- type: flavor
id: shittywine
flavorType: Complex
description: flavor-complex-shitty-wine
- type: flavor
id: icedtea
flavorType: Complex
description: flavor-complex-iced-tea
- type: flavor
id: coffee
flavorType: Complex
description: flavor-complex-coffee
- type: flavor
id: milk
flavorType: Complex
description: flavor-complex-milk
- type: flavor
id: tea
flavorType: Complex
description: flavor-complex-tea
- type: flavor
id: ice
flavorType: Complex
description: flavor-complex-ice
- type: flavor
id: longisland
flavorType: Complex
description: flavor-complex-long-island
- type: flavor
id: threemileisland
flavorType: Complex
description: flavor-complex-three-mile-island
- type: flavor
id: whiskeycola
flavorType: Complex
description: flavor-complex-whiskey-cola
- type: flavor
id: singulo
flavorType: Complex
description: flavor-complex-singulo
- type: flavor
id: syndiebomb
flavorType: Complex
description: flavor-complex-syndie-bomb
- type: flavor
id: tequilasunrise
flavorType: Complex
description: flavor-complex-tequila-sunrise
- type: flavor
id: irishcoffee
flavorType: Complex
description: flavor-complex-irish-coffee
- type: flavor
id: icedbeer
flavorType: Complex
description: flavor-complex-iced-beer
- type: flavor
id: gargleblaster
flavorType: Complex
description: flavor-complex-gargle-blaster
- type: flavor
id: bloodymary
flavorType: Complex
description: flavor-complex-bloody-mary
- type: flavor
id: beepsky
flavorType: Complex
description: flavor-complex-beepsky
- type: flavor
id: bananahonk
flavorType: Complex
description: flavor-complex-banana-honk
- type: flavor
id: atomicbomb
flavorType: Complex
description: flavor-complex-atomic-bomb
- type: flavor
id: atomiccola
flavorType: Complex
description: flavor-complex-atomic-cola
- type: flavor
id: cubalibre
flavorType: Complex
description: flavor-complex-cuba-libre
- type: flavor
id: gintonic
flavorType: Complex
description: flavor-complex-gin-tonic
- type: flavor
id: screwdriver
flavorType: Complex
description: flavor-complex-screwdriver
- type: flavor
id: pilk
flavorType: Complex
description: flavor-complex-pilk
- type: flavor
id: medicine
flavorType: Complex
description: flavor-complex-medicine
- type: flavor
id: carpet
flavorType: Complex
description: flavor-complex-carpet
- type: flavor
id: bee
flavorType: Complex
description: flavor-complex-bee
- type: flavor
id: sax
flavorType: Complex
description: flavor-complex-sax

View File

@@ -7,6 +7,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-absinthe desc: reagent-desc-absinthe
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#33EE00" color: "#33EE00"
spritePath: absintheglass.rsi spritePath: absintheglass.rsi
metabolisms: metabolisms:
@@ -24,6 +25,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-ale desc: reagent-desc-ale
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: ale
color: "#663100" color: "#663100"
spritePath: aleglass.rsi spritePath: aleglass.rsi
@@ -33,6 +35,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-beer desc: reagent-desc-beer
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: beer
color: "#cfa85f" color: "#cfa85f"
spritePath: beerglass.rsi spritePath: beerglass.rsi
@@ -42,6 +45,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-blue-curacao desc: reagent-desc-blue-curacao
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#0000CD" color: "#0000CD"
spritePath: curacaoglass.rsi spritePath: curacaoglass.rsi
metabolisms: metabolisms:
@@ -59,6 +63,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-cognac desc: reagent-desc-cognac
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#AB3C05" color: "#AB3C05"
spritePath: cognacglass.rsi spritePath: cognacglass.rsi
metabolisms: metabolisms:
@@ -76,6 +81,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-dead-rum desc: reagent-desc-dead-rum
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: rum
color: "#664300" color: "#664300"
spritePath: rumglass.rsi spritePath: rumglass.rsi
metabolisms: metabolisms:
@@ -93,6 +99,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-ethanol desc: reagent-desc-ethanol
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#b05b3c" color: "#b05b3c"
boilingPoint: 78.2 boilingPoint: 78.2
meltingPoint: -114.1 meltingPoint: -114.1
@@ -123,6 +130,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-gin desc: reagent-desc-gin
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: ginvodkaglass.rsi spritePath: ginvodkaglass.rsi
metabolisms: metabolisms:
@@ -140,6 +148,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-kahlua desc: reagent-desc-kahlua
physicalDesc: reagent-physical-desc-cloudy physicalDesc: reagent-physical-desc-cloudy
flavor: coffeeliquor
color: "#664300" color: "#664300"
spritePath: kahluaglass.rsi spritePath: kahluaglass.rsi
@@ -149,6 +158,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-melon-liquor desc: reagent-desc-melon-liquor
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: sweet
color: "#138808" color: "#138808"
spritePath: emeraldglass.rsi spritePath: emeraldglass.rsi
@@ -158,6 +168,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-n-t-cahors desc: reagent-desc-n-t-cahors
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: bitter
color: "#7E4043" color: "#7E4043"
spritePath: wineglass.rsi spritePath: wineglass.rsi
@@ -167,6 +178,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-poison-wine desc: reagent-desc-poison-wine
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: bitter
color: "#000000" color: "#000000"
spritePath: pwineglass.rsi spritePath: pwineglass.rsi
metabolisms: metabolisms:
@@ -190,6 +202,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-rum desc: reagent-desc-rum
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: rum
color: "#664300" color: "#664300"
spritePath: rumglass.rsi spritePath: rumglass.rsi
metabolisms: metabolisms:
@@ -207,6 +220,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-sake desc: reagent-desc-sake
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: sake
color: "#DDDDDD" color: "#DDDDDD"
- type: reagent - type: reagent
@@ -215,6 +229,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-tequila desc: reagent-desc-tequila
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: tequila
color: "#d7d1d155" color: "#d7d1d155"
metabolisms: metabolisms:
Drink: Drink:
@@ -231,6 +246,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-vermouth desc: reagent-desc-vermouth
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#91FF91" color: "#91FF91"
spritePath: vermouthglass.rsi spritePath: vermouthglass.rsi
@@ -240,6 +256,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-vodka desc: reagent-desc-vodka
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: vodka
color: "#d1d1d155" color: "#d1d1d155"
spritePath: ginvodkaglass.rsi spritePath: ginvodkaglass.rsi
metabolisms: metabolisms:
@@ -257,6 +274,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-whiskey desc: reagent-desc-whiskey
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: whiskey
color: "#664300" color: "#664300"
spritePath: whiskeyglass.rsi spritePath: whiskeyglass.rsi
metabolisms: metabolisms:
@@ -274,6 +292,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-wine desc: reagent-desc-wine
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: shittywine
color: "#7E4043" color: "#7E4043"
spritePath: wineglass.rsi spritePath: wineglass.rsi
@@ -285,6 +304,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-acid-spit desc: reagent-desc-acid-spit
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#365000" color: "#365000"
spritePath: acidspitglass.rsi spritePath: acidspitglass.rsi
@@ -294,6 +314,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-allies-cocktail #haha, cock. that's hot desc: reagent-desc-allies-cocktail #haha, cock. that's hot
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#00664d" color: "#00664d"
spritePath: alliescocktail.rsi spritePath: alliescocktail.rsi
@@ -303,6 +324,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-aloe desc: reagent-desc-aloe
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#192c00" color: "#192c00"
spritePath: aloe.rsi spritePath: aloe.rsi
@@ -312,6 +334,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-amasec desc: reagent-desc-amasec
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#124da7" color: "#124da7"
spritePath: amasecglass.rsi spritePath: amasecglass.rsi
@@ -321,6 +344,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-andalusia desc: reagent-desc-andalusia
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#665700" color: "#665700"
spritePath: andalusia.rsi spritePath: andalusia.rsi
@@ -330,6 +354,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-antifreeze desc: reagent-desc-antifreeze
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: alcohol
color: "#ff7d63" color: "#ff7d63"
spritePath: antifreeze.rsi spritePath: antifreeze.rsi
metabolisms: metabolisms:
@@ -347,6 +372,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-atomic-bomb desc: reagent-desc-atomic-bomb
physicalDesc: reagent-physical-desc-cloudy physicalDesc: reagent-physical-desc-cloudy
flavor: atomicbomb
color: "#666300" color: "#666300"
spritePath: atomicbombglass.rsi spritePath: atomicbombglass.rsi
metabolisms: metabolisms:
@@ -367,6 +393,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-b52 desc: reagent-desc-b52
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: b52glass.rsi spritePath: b52glass.rsi
metabolisms: metabolisms:
@@ -384,6 +411,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-bahama-mama desc: reagent-desc-bahama-mama
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#FF7F3B" color: "#FF7F3B"
spritePath: bahama_mama.rsi spritePath: bahama_mama.rsi
@@ -393,6 +421,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-banana-honk desc: reagent-desc-banana-honk
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: bananahonk
color: "#ffff91" color: "#ffff91"
spritePath: bananahonkglass.rsi spritePath: bananahonkglass.rsi
@@ -402,6 +431,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-barefoot desc: reagent-desc-barefoot
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: b&p.rsi spritePath: b&p.rsi
@@ -411,6 +441,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-beepsky-smash desc: reagent-desc-beepsky-smash
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: beepsky
color: "#664300" color: "#664300"
spritePath: beepskysmashglass.rsi spritePath: beepskysmashglass.rsi
metabolisms: metabolisms:
@@ -428,6 +459,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-bilk desc: reagent-desc-bilk
physicalDesc: reagent-physical-desc-bilky physicalDesc: reagent-physical-desc-bilky
flavor: alcohol
color: "#895C4C" color: "#895C4C"
spritePath: glass_brown.rsi spritePath: glass_brown.rsi
@@ -437,6 +469,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-black-russian desc: reagent-desc-black-russian
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#360000" color: "#360000"
spritePath: blackrussianglass.rsi spritePath: blackrussianglass.rsi
metabolisms: metabolisms:
@@ -454,6 +487,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-bloody-mary desc: reagent-desc-bloody-mary
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: bloodymary
color: "#660000" color: "#660000"
spritePath: bloodymaryglass.rsi spritePath: bloodymaryglass.rsi
@@ -463,6 +497,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-booger desc: reagent-desc-booger
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#8CFF8C" color: "#8CFF8C"
spritePath: booger.rsi spritePath: booger.rsi
@@ -472,6 +507,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-brave-bull desc: reagent-desc-brave-bull
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: bravebullglass.rsi spritePath: bravebullglass.rsi
metabolisms: metabolisms:
@@ -489,6 +525,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-cuba-libre desc: reagent-desc-cuba-libre
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: cubalibre
color: "#3E1B00" color: "#3E1B00"
spritePath: cubalibreglass.rsi spritePath: cubalibreglass.rsi
metabolisms: metabolisms:
@@ -506,6 +543,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-demons-blood desc: reagent-desc-demons-blood
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#a70000" color: "#a70000"
spritePath: demonsblood.rsi spritePath: demonsblood.rsi
@@ -515,6 +553,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-devils-kiss desc: reagent-desc-devils-kiss
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#A68310" color: "#A68310"
spritePath: devilskiss.rsi spritePath: devilskiss.rsi
@@ -524,6 +563,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-doctors-delight desc: reagent-desc-doctors-delight
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: medicine
color: "#FF8CFF" color: "#FF8CFF"
spritePath: doctorsdelightglass.rsi spritePath: doctorsdelightglass.rsi
metabolisms: metabolisms:
@@ -552,6 +592,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-driest-martini desc: reagent-desc-driest-martini
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#2E6671" color: "#2E6671"
spritePath: driestmartiniglass.rsi spritePath: driestmartiniglass.rsi
metabolisms: metabolisms:
@@ -569,6 +610,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-erika-suprise desc: reagent-desc-erika-suprise
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#2E6671" color: "#2E6671"
spritePath: erikasurprise.rsi spritePath: erikasurprise.rsi
@@ -578,6 +620,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-gargle-blaster desc: reagent-desc-gargle-blaster
physicalDesc: reagent-physical-desc-volatile physicalDesc: reagent-physical-desc-volatile
flavor: gargleblaster
color: "#9cc8b4" color: "#9cc8b4"
spritePath: gargleblasterglass.rsi spritePath: gargleblasterglass.rsi
metabolisms: metabolisms:
@@ -595,6 +638,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-gin-fizz desc: reagent-desc-gin-fizz
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: ginfizzglass.rsi spritePath: ginfizzglass.rsi
metabolisms: metabolisms:
@@ -612,6 +656,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-gin-tonic desc: reagent-desc-gin-tonic
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: gintonic
color: "#004166" color: "#004166"
spritePath: gintonicglass.rsi spritePath: gintonicglass.rsi
metabolisms: metabolisms:
@@ -629,6 +674,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-goldschlager desc: reagent-desc-goldschlager
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#FFFF91" color: "#FFFF91"
spritePath: goldschlagerglass.rsi spritePath: goldschlagerglass.rsi
metabolisms: metabolisms:
@@ -646,6 +692,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-grog desc: reagent-desc-grog
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: grogglass.rsi spritePath: grogglass.rsi
@@ -655,6 +702,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-hippies-delight desc: reagent-desc-hippies-delight
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#6eaa0c" color: "#6eaa0c"
spritePath: hippiesdelightglass.rsi spritePath: hippiesdelightglass.rsi
@@ -664,6 +712,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-hooch desc: reagent-desc-hooch
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664e00" color: "#664e00"
spritePath: glass_brown2.rsi spritePath: glass_brown2.rsi
@@ -673,6 +722,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-iced-beer desc: reagent-desc-iced-beer
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: icedbeer
color: "#664300" color: "#664300"
spritePath: iced_beerglass.rsi spritePath: iced_beerglass.rsi
@@ -682,6 +732,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-irish-car-bomb desc: reagent-desc-irish-car-bomb
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: alcohol
color: "#2E6671" color: "#2E6671"
spritePath: irishcarbomb.rsi spritePath: irishcarbomb.rsi
metabolisms: metabolisms:
@@ -699,6 +750,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-irish-cream desc: reagent-desc-irish-cream
physicalDesc: reagent-physical-desc-creamy physicalDesc: reagent-physical-desc-creamy
flavor: creamy
color: "#664300" color: "#664300"
spritePath: irishcreamglass.rsi spritePath: irishcreamglass.rsi
metabolisms: metabolisms:
@@ -716,6 +768,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-irish-coffee desc: reagent-desc-irish-coffee
physicalDesc: reagent-physical-desc-cloudy physicalDesc: reagent-physical-desc-cloudy
flavor: irishcoffee
color: "#664300" color: "#664300"
spritePath: irishcoffeeglass.rsi spritePath: irishcoffeeglass.rsi
metabolisms: metabolisms:
@@ -733,6 +786,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-long-island-iced-tea desc: reagent-desc-long-island-iced-tea
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: longisland
color: "#664300" color: "#664300"
spritePath: longislandicedteaglass.rsi spritePath: longislandicedteaglass.rsi
metabolisms: metabolisms:
@@ -750,6 +804,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-manhattan desc: reagent-desc-manhattan
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: manhattanglass.rsi spritePath: manhattanglass.rsi
@@ -759,6 +814,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-manhattan-project desc: reagent-desc-manhattan-project
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: proj_manhattanglass.rsi spritePath: proj_manhattanglass.rsi
@@ -768,6 +824,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-manly-dorf desc: reagent-desc-manly-dorf
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: manlydorfglass.rsi spritePath: manlydorfglass.rsi
@@ -777,6 +834,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-margarita desc: reagent-desc-margarita
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#8CFF8C" color: "#8CFF8C"
spritePath: margaritaglass.rsi spritePath: margaritaglass.rsi
@@ -786,6 +844,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-martini desc: reagent-desc-martini
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: martiniglass.rsi spritePath: martiniglass.rsi
metabolisms: metabolisms:
@@ -803,6 +862,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-mead desc: reagent-desc-mead
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: meadglass.rsi spritePath: meadglass.rsi
@@ -812,6 +872,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-mojito desc: reagent-desc-mojito
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#664300" color: "#664300"
spritePath: mojito.rsi spritePath: mojito.rsi
@@ -821,6 +882,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-moonshine desc: reagent-desc-moonshine
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#d1d7d155" color: "#d1d7d155"
metabolisms: metabolisms:
Drink: Drink:
@@ -837,6 +899,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-neurotoxin desc: reagent-desc-neurotoxin
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#2E2E61" color: "#2E2E61"
spritePath: neurotoxinglass.rsi spritePath: neurotoxinglass.rsi
metabolisms: metabolisms:
@@ -860,6 +923,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-patron desc: reagent-desc-patron
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: alcohol
color: "#585840" color: "#585840"
spritePath: patronglass.rsi spritePath: patronglass.rsi
metabolisms: metabolisms:
@@ -877,6 +941,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-red-mead desc: reagent-desc-red-mead
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#C73C00" color: "#C73C00"
spritePath: red_meadglass.rsi spritePath: red_meadglass.rsi
@@ -886,6 +951,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-sbiten desc: reagent-desc-sbiten
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#004166" color: "#004166"
spritePath: sbitenglass.rsi spritePath: sbitenglass.rsi
@@ -895,6 +961,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-screwdriver-cocktail desc: reagent-desc-screwdriver-cocktail
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: screwdriver
color: "#A68310" color: "#A68310"
spritePath: screwdriverglass.rsi spritePath: screwdriverglass.rsi
metabolisms: metabolisms:
@@ -912,6 +979,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-silencer desc: reagent-desc-silencer
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: nothing
color: "#004666" color: "#004666"
spritePath: silencerglass.rsi spritePath: silencerglass.rsi
metabolisms: metabolisms:
@@ -929,6 +997,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-singulo desc: reagent-desc-singulo
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: singulo
color: "#3b0c0c" color: "#3b0c0c"
spritePath: singulo.rsi spritePath: singulo.rsi
@@ -938,6 +1007,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-snow-white desc: reagent-desc-snow-white
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: alcohol
color: "#FFFFFF" color: "#FFFFFF"
spritePath: snowwhite.rsi spritePath: snowwhite.rsi
@@ -947,6 +1017,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-sui-dream desc: reagent-desc-sui-dream
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#00A86B" color: "#00A86B"
spritePath: sdreamglass.rsi spritePath: sdreamglass.rsi
@@ -956,6 +1027,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-syndicate-bomb desc: reagent-desc-syndicate-bomb
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: syndiebomb
color: "#2E6660" color: "#2E6660"
spritePath: syndicatebomb.rsi spritePath: syndicatebomb.rsi
@@ -965,6 +1037,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-tequila-sunrise desc: reagent-desc-tequila-sunrise
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: tequilasunrise
color: "#FFE48C" color: "#FFE48C"
spritePath: tequillasunriseglass.rsi spritePath: tequillasunriseglass.rsi
metabolisms: metabolisms:
@@ -982,6 +1055,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-three-mile-island desc: reagent-desc-three-mile-island
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: threemileisland
color: "#666340" color: "#666340"
spritePath: threemileislandglass.rsi spritePath: threemileislandglass.rsi
metabolisms: metabolisms:
@@ -1002,6 +1076,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-toxins-special desc: reagent-desc-toxins-special
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#665c00" color: "#665c00"
spritePath: toxinsspecialglass.rsi spritePath: toxinsspecialglass.rsi
@@ -1011,6 +1086,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-vodka-martini desc: reagent-desc-vodka-martini
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#004666" color: "#004666"
spritePath: martiniglass.rsi spritePath: martiniglass.rsi
metabolisms: metabolisms:
@@ -1028,6 +1104,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-vodka-tonic desc: reagent-desc-vodka-tonic
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#0064C8" color: "#0064C8"
spritePath: vodkatonicglass.rsi spritePath: vodkatonicglass.rsi
metabolisms: metabolisms:
@@ -1045,6 +1122,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-whiskey-cola desc: reagent-desc-whiskey-cola
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: whiskeycola
color: "#3E1B00" color: "#3E1B00"
spritePath: whiskeycolaglass.rsi spritePath: whiskeycolaglass.rsi
metabolisms: metabolisms:
@@ -1062,6 +1140,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-whiskey-soda desc: reagent-desc-whiskey-soda
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: whiskeycola
color: "#533600" color: "#533600"
spritePath: whiskeysodaglass.rsi spritePath: whiskeysodaglass.rsi
metabolisms: metabolisms:
@@ -1079,6 +1158,7 @@
parent: BaseAlcohol parent: BaseAlcohol
desc: reagent-desc-white-russian desc: reagent-desc-white-russian
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: alcohol
color: "#A68340" color: "#A68340"
spritePath: whiterussianglass.rsi spritePath: whiterussianglass.rsi
metabolisms: metabolisms:

View File

@@ -4,6 +4,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-coffee desc: reagent-desc-coffee
physicalDesc: reagent-physical-desc-aromatic physicalDesc: reagent-physical-desc-aromatic
flavor: coffee
color: "#664300" color: "#664300"
metabolisms: metabolisms:
Drink: Drink:
@@ -20,6 +21,7 @@
group: Drinks group: Drinks
desc: reagent-desc-cream desc: reagent-desc-cream
physicalDesc: reagent-physical-desc-creamy physicalDesc: reagent-physical-desc-creamy
flavor: creamy
color: "#DFD7AF" color: "#DFD7AF"
metabolisms: metabolisms:
Drink: Drink:
@@ -33,6 +35,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-cafe-latte desc: reagent-desc-cafe-latte
physicalDesc: reagent-physical-desc-creamy physicalDesc: reagent-physical-desc-creamy
flavor: creamy
color: "#664300" color: "#664300"
spritePath: cafe_latte.rsi spritePath: cafe_latte.rsi
@@ -42,6 +45,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-green-tea desc: reagent-desc-green-tea
physicalDesc: reagent-physical-desc-aromatic physicalDesc: reagent-physical-desc-aromatic
flavor: tea
color: "#C33F00" color: "#C33F00"
spritePath: glass_green.rsi #Placeholder spritePath: glass_green.rsi #Placeholder
@@ -51,6 +55,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-grenadine desc: reagent-desc-grenadine
physicalDesc: reagent-physical-desc-dark-red physicalDesc: reagent-physical-desc-dark-red
flavor: bitter
color: "#EA1D26" color: "#EA1D26"
spritePath: grenadineglass.rsi spritePath: grenadineglass.rsi
@@ -60,6 +65,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-iced-coffee desc: reagent-desc-iced-coffee
physicalDesc: reagent-physical-desc-aromatic physicalDesc: reagent-physical-desc-aromatic
flavor: coffee
color: "#102838" color: "#102838"
spritePath: icedcoffeeglass.rsi spritePath: icedcoffeeglass.rsi
@@ -69,6 +75,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-iced-green-tea desc: reagent-desc-iced-green-tea
physicalDesc: reagent-physical-desc-aromatic physicalDesc: reagent-physical-desc-aromatic
flavor: icedtea
color: "#CE4200" color: "#CE4200"
spritePath: glass_green.rsi #Placeholder spritePath: glass_green.rsi #Placeholder
@@ -78,6 +85,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-iced-tea desc: reagent-desc-iced-tea
physicalDesc: reagent-physical-desc-aromatic physicalDesc: reagent-physical-desc-aromatic
flavor: icedtea
color: "#104038" color: "#104038"
spritePath: icedteaglass.rsi spritePath: icedteaglass.rsi
metabolisms: metabolisms:
@@ -95,6 +103,7 @@
group: Drinks group: Drinks
desc: reagent-desc-lemonade desc: reagent-desc-lemonade
physicalDesc: reagent-physical-desc-tart physicalDesc: reagent-physical-desc-tart
flavor: sweet
color: "#FFFF00" color: "#FFFF00"
spritePath: lemonadeglass.rsi spritePath: lemonadeglass.rsi
metabolisms: metabolisms:
@@ -109,6 +118,7 @@
group: Drinks group: Drinks
desc: reagent-desc-milk desc: reagent-desc-milk
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: milk
color: "#DFDFDF" color: "#DFDFDF"
plantMetabolism: plantMetabolism:
- !type:PlantAdjustNutrition - !type:PlantAdjustNutrition
@@ -133,6 +143,7 @@
group: Drinks group: Drinks
desc: reagent-desc-milk-oat desc: reagent-desc-milk-oat
physicalDesc: reagent-physical-desc-refreshing physicalDesc: reagent-physical-desc-refreshing
flavor: oats
color: "#302000" color: "#302000"
metabolisms: metabolisms:
Drink: Drink:
@@ -152,6 +163,7 @@
group: Drinks group: Drinks
desc: reagent-desc-milk-spoiled desc: reagent-desc-milk-spoiled
physicalDesc: reagent-physical-desc-putrid physicalDesc: reagent-physical-desc-putrid
flavor: terrible
color: "#faffba" color: "#faffba"
metabolisms: metabolisms:
Drink: Drink:
@@ -179,6 +191,7 @@
group: Drinks group: Drinks
desc: reagent-desc-nuclear-cola desc: reagent-desc-nuclear-cola
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: atomiccola
color: "#100800" color: "#100800"
spritePath: nuclear_colaglass.rsi spritePath: nuclear_colaglass.rsi
metabolisms: metabolisms:
@@ -199,6 +212,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-soda-water desc: reagent-desc-soda-water
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: fizzy
color: "#619494" color: "#619494"
- type: reagent - type: reagent
@@ -207,6 +221,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-soy-latte desc: reagent-desc-soy-latte
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: soy
color: "#664300" color: "#664300"
spritePath: soy_latte.rsi spritePath: soy_latte.rsi
@@ -216,6 +231,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-tea desc: reagent-desc-tea
physicalDesc: reagent-physical-desc-aromatic physicalDesc: reagent-physical-desc-aromatic
flavor: tea
color: "#8a5a3a" color: "#8a5a3a"
metabolisms: metabolisms:
Drink: Drink:
@@ -232,6 +248,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-tonic-water desc: reagent-desc-tonic-water
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: water
color: "#0064C8" color: "#0064C8"
- type: reagent - type: reagent
@@ -240,6 +257,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-water desc: reagent-desc-water
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: water
color: "#75b1f0" color: "#75b1f0"
boilingPoint: 100.0 boilingPoint: 100.0
meltingPoint: 0.0 meltingPoint: 0.0
@@ -254,6 +272,7 @@
name: reagent-name-ice name: reagent-name-ice
desc: reagent-desc-ice desc: reagent-desc-ice
physicalDesc: reagent-physical-desc-frosty physicalDesc: reagent-physical-desc-frosty
flavor: cold
color: "#bed8e6" color: "#bed8e6"
meltingPoint: 0.0 meltingPoint: 0.0
boilingPoint: 100.0 boilingPoint: 100.0
@@ -267,6 +286,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-dry-ramen desc: reagent-desc-dry-ramen
physicalDesc: reagent-physical-desc-wormy physicalDesc: reagent-physical-desc-wormy
flavor: cheapnoodles
color: "#664300" color: "#664300"
metabolisms: metabolisms:
Food: Food:
@@ -280,6 +300,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-hot-ramen desc: reagent-desc-hot-ramen
physicalDesc: reagent-physical-desc-wormy physicalDesc: reagent-physical-desc-wormy
flavor: cheapnoodles
color: "#664300" color: "#664300"
metabolisms: metabolisms:
Food: Food:
@@ -293,6 +314,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-pilk desc: reagent-desc-pilk
physicalDesc: reagent-physical-desc-creamy physicalDesc: reagent-physical-desc-creamy
flavor: pilk
color: "#e7c69f" color: "#e7c69f"
metabolisms: metabolisms:
Drink: Drink:
@@ -306,6 +328,7 @@
parent: BaseDrink parent: BaseDrink
desc: Long live the guy who everyone had mistaken for a girl. Baka! desc: Long live the guy who everyone had mistaken for a girl. Baka!
physicalDesc: strong-smelling physicalDesc: strong-smelling
flavor: sweet
color: "#CCCC99" color: "#CCCC99"
spritePath: kiraspecial.rsi spritePath: kiraspecial.rsi
@@ -315,6 +338,7 @@
parent: BaseDrink parent: BaseDrink
desc: The secret of the sanctuary of the Librarian... desc: The secret of the sanctuary of the Librarian...
physicalDesc: strong-smelling physicalDesc: strong-smelling
flavor: sweet
color: "#485000" color: "#485000"
spritePath: rewriter.rsi spritePath: rewriter.rsi
@@ -324,5 +348,6 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-kvass desc: reagent-desc-kvass
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: bread
color: "#381600" color: "#381600"
spritePath: kvass.rsi spritePath: kvass.rsi

View File

@@ -4,6 +4,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-apple desc: reagent-desc-juice-apple
physicalDesc: reagent-physical-desc-crisp physicalDesc: reagent-physical-desc-crisp
flavor: apple
color: "#FDAD01" color: "#FDAD01"
- type: reagent - type: reagent
@@ -12,6 +13,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-banana desc: reagent-desc-juice-banana
physicalDesc: reagent-physical-desc-crisp physicalDesc: reagent-physical-desc-crisp
flavor: banana
color: "#FFE777" color: "#FFE777"
- type: reagent - type: reagent
@@ -20,6 +22,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-berry desc: reagent-desc-juice-berry
physicalDesc: reagent-physical-desc-sweet physicalDesc: reagent-physical-desc-sweet
flavor: juice
color: "#660099" color: "#660099"
- type: reagent - type: reagent
@@ -27,6 +30,7 @@
name: reagent-name-juice-berry-poison name: reagent-name-juice-berry-poison
desc: reagent-desc-juice-berry-poison desc: reagent-desc-juice-berry-poison
physicalDesc: reagent-physical-desc-sickly physicalDesc: reagent-physical-desc-sickly
flavor: bitter
color: "#6600CC" color: "#6600CC"
metabolisms: metabolisms:
Drink: Drink:
@@ -56,6 +60,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-carrot desc: reagent-desc-juice-carrot
physicalDesc: reagent-physical-desc-crisp physicalDesc: reagent-physical-desc-crisp
flavor: carrot
color: "#FF8820" color: "#FF8820"
metabolisms: metabolisms:
Drink: Drink:
@@ -75,6 +80,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-grape desc: reagent-desc-juice-grape
physicalDesc: reagent-physical-desc-crisp physicalDesc: reagent-physical-desc-crisp
flavor: juice
color: "#512284" color: "#512284"
- type: reagent - type: reagent
@@ -83,6 +89,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-lemon desc: reagent-desc-juice-lemon
physicalDesc: reagent-physical-desc-citric physicalDesc: reagent-physical-desc-citric
flavor: sour
color: "#fff690" color: "#fff690"
- type: reagent - type: reagent
@@ -91,6 +98,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-lime desc: reagent-desc-juice-lime
physicalDesc: reagent-physical-desc-citric physicalDesc: reagent-physical-desc-citric
flavor: sour
color: "#99bb43" color: "#99bb43"
# /datum/reagent/drink/orangejuice/on_mob_life(var/mob/living/M) # /datum/reagent/drink/orangejuice/on_mob_life(var/mob/living/M)
@@ -107,6 +115,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-orange desc: reagent-desc-juice-orange
physicalDesc: reagent-physical-desc-citric physicalDesc: reagent-physical-desc-citric
flavor: orange
color: "#E78108" color: "#E78108"
- type: reagent - type: reagent
@@ -115,6 +124,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-pineapple desc: reagent-desc-juice-pineapple
physicalDesc: reagent-physical-desc-tropical physicalDesc: reagent-physical-desc-tropical
flavor: pineapple
color: yellow color: yellow
- type: reagent - type: reagent
@@ -123,6 +133,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-potato desc: reagent-desc-juice-potato
physicalDesc: reagent-physical-desc-starchy physicalDesc: reagent-physical-desc-starchy
flavor: potatoes
color: "#302000" color: "#302000"
- type: reagent - type: reagent
@@ -131,6 +142,7 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-tomato desc: reagent-desc-juice-tomato
physicalDesc: reagent-physical-desc-saucey physicalDesc: reagent-physical-desc-saucey
flavor: tomato
color: "#731008" color: "#731008"
- type: reagent - type: reagent
@@ -139,4 +151,5 @@
parent: BaseDrink parent: BaseDrink
desc: reagent-desc-juice-watermelon desc: reagent-desc-juice-watermelon
physicalDesc: reagent-physical-desc-sweet physicalDesc: reagent-physical-desc-sweet
flavor: tomato
color: "#EF3520" color: "#EF3520"

View File

@@ -4,6 +4,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-cola desc: reagent-desc-cola
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#422912" color: "#422912"
- type: reagent - type: reagent
@@ -12,6 +13,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-changeling-sting desc: reagent-desc-changeling-sting
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#2E6671" color: "#2E6671"
- type: reagent - type: reagent
@@ -20,6 +22,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-dr-gibb desc: reagent-desc-dr-gibb
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#102000" color: "#102000"
- type: reagent - type: reagent
@@ -28,6 +31,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-energy-drink desc: reagent-desc-energy-drink
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#ffffbf" color: "#ffffbf"
metabolisms: metabolisms:
Drink: Drink:
@@ -44,6 +48,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-grape-soda desc: reagent-desc-grape-soda
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#ae94a6" color: "#ae94a6"
- type: reagent - type: reagent
@@ -52,6 +57,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-ice-cream desc: reagent-desc-ice-cream
physicalDesc: reagent-physical-desc-creamy physicalDesc: reagent-physical-desc-creamy
flavor: soda
color: "#fffbd6" color: "#fffbd6"
spritePath: icecreamglass.rsi spritePath: icecreamglass.rsi
@@ -61,6 +67,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-lemon-lime desc: reagent-desc-lemon-lime
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#878F00" color: "#878F00"
spritePath: lemonlime.rsi spritePath: lemonlime.rsi
@@ -70,6 +77,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-pwr-game desc: reagent-desc-pwr-game
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#9385bf" color: "#9385bf"
- type: reagent - type: reagent
@@ -78,6 +86,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-root-beer desc: reagent-desc-root-beer
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#381c07" color: "#381c07"
spritePath: rootbeerglass.rsi spritePath: rootbeerglass.rsi
@@ -87,6 +96,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-root-beer-float desc: reagent-desc-root-beer-float
physicalDesc: reagent-physical-desc-fizzy and creamy physicalDesc: reagent-physical-desc-fizzy and creamy
flavor: soda
color: "#4f361f" color: "#4f361f"
spritePath: rootbeerfloatglass.rsi spritePath: rootbeerfloatglass.rsi
@@ -96,6 +106,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-space-mountain-wind desc: reagent-desc-space-mountain-wind
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#102000" color: "#102000"
- type: reagent - type: reagent
@@ -104,6 +115,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-space-up desc: reagent-desc-space-up
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#00FF00" color: "#00FF00"
- type: reagent - type: reagent
@@ -112,6 +124,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-starkist desc: reagent-desc-starkist
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#9F3400" color: "#9F3400"
- type: reagent - type: reagent
@@ -120,6 +133,7 @@
parent: BaseSoda parent: BaseSoda
desc: reagent-desc-fourteen-loko desc: reagent-desc-fourteen-loko
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: soda
color: "#deb928" color: "#deb928"
metabolisms: metabolisms:
Drink: Drink:

View File

@@ -4,6 +4,7 @@
group: Foods group: Foods
desc: reagent-desc-astrotame desc: reagent-desc-astrotame
physicalDesc: reagent-physical-desc-sugary physicalDesc: reagent-physical-desc-sugary
flavor: sweet
color: aquamarine color: aquamarine
- type: reagent - type: reagent
@@ -12,6 +13,7 @@
group: Foods group: Foods
desc: reagent-desc-bbq-sauce desc: reagent-desc-bbq-sauce
physicalDesc: reagent-physical-desc-gloopy physicalDesc: reagent-physical-desc-gloopy
flavor: sweet
color: darkred color: darkred
- type: reagent - type: reagent
@@ -20,6 +22,7 @@
group: Foods group: Foods
desc: reagent-desc-cornoil desc: reagent-desc-cornoil
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: oily
color: yellow color: yellow
- type: reagent - type: reagent
@@ -28,6 +31,7 @@
group: Foods group: Foods
desc: reagent-desc-frostoil desc: reagent-desc-frostoil
physicalDesc: reagent-physical-desc-cold physicalDesc: reagent-physical-desc-cold
flavor: cold
color: skyblue color: skyblue
- type: reagent - type: reagent
@@ -36,6 +40,7 @@
group: Foods group: Foods
desc: reagent-desc-horseradish-sauce desc: reagent-desc-horseradish-sauce
physicalDesc: reagent-physical-desc-overpowering physicalDesc: reagent-physical-desc-overpowering
flavor: spicy
color: gray color: gray
- type: reagent - type: reagent
@@ -44,6 +49,7 @@
group: Foods group: Foods
desc: reagent-desc-hotsauce desc: reagent-desc-hotsauce
physicalDesc: reagent-physical-desc-spicy physicalDesc: reagent-physical-desc-spicy
flavor: spicy
color: red color: red
- type: reagent - type: reagent
@@ -52,6 +58,7 @@
group: Foods group: Foods
desc: reagent-desc-ketchup desc: reagent-desc-ketchup
physicalDesc: reagent-physical-desc-tangy physicalDesc: reagent-physical-desc-tangy
flavor: tomato
color: red color: red
- type: reagent - type: reagent
@@ -60,6 +67,7 @@
group: Foods group: Foods
desc: reagent-desc-soysauce desc: reagent-desc-soysauce
physicalDesc: reagent-physical-desc-salty physicalDesc: reagent-physical-desc-salty
flavor: salty
color: saddlebrown color: saddlebrown
metabolisms: metabolisms:
Food: Food:
@@ -75,6 +83,7 @@
group: Foods group: Foods
desc: reagent-desc-table-salt desc: reagent-desc-table-salt
physicalDesc: reagent-physical-desc-grainy physicalDesc: reagent-physical-desc-grainy
flavor: salty
color: "#a1000b" color: "#a1000b"
boilingPoint: 1465.0 boilingPoint: 1465.0
meltingPoint: 800.7 meltingPoint: 800.7

View File

@@ -4,6 +4,7 @@
group: Foods group: Foods
desc: reagent-desc-nutriment desc: reagent-desc-nutriment
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: nutriment
color: "#664330" color: "#664330"
metabolisms: metabolisms:
Food: Food:
@@ -21,6 +22,7 @@
group: Foods group: Foods
desc: reagent-desc-vitamin desc: reagent-desc-vitamin
physicalDesc: reagent-physical-desc-chalky physicalDesc: reagent-physical-desc-chalky
flavor: vitamin
color: "#D3D3D3" color: "#D3D3D3"
metabolisms: metabolisms:
Food: #This makes it not compete with medicines, a large bonus for something that can heal Food: #This makes it not compete with medicines, a large bonus for something that can heal
@@ -42,6 +44,7 @@
group: Foods group: Foods
desc: reagent-desc-protein desc: reagent-desc-protein
physicalDesc: reagent-physical-desc-clumpy physicalDesc: reagent-physical-desc-clumpy
flavor: protein
color: "#FFFFE5" color: "#FFFFE5"
metabolisms: metabolisms:
Food: Food:

View File

@@ -4,6 +4,7 @@
group: Foods group: Foods
desc: reagent-desc-flour desc: reagent-desc-flour
physicalDesc: reagent-physical-desc-powdery physicalDesc: reagent-physical-desc-powdery
flavor: chalky
color: white color: white
metabolisms: metabolisms:
Food: Food:
@@ -17,6 +18,7 @@
group: Foods group: Foods
desc: reagent-desc-oats desc: reagent-desc-oats
physicalDesc: reagent-physical-desc-coarse physicalDesc: reagent-physical-desc-coarse
flavor: oats
color: tan color: tan
metabolisms: metabolisms:
Food: Food:
@@ -30,6 +32,7 @@
group: Foods group: Foods
desc: reagent-desc-enzyme desc: reagent-desc-enzyme
physicalDesc: reagent-physical-desc-chalky physicalDesc: reagent-physical-desc-chalky
flavor: bitter
color: "#009900" color: "#009900"
metabolisms: metabolisms:
Food: Food:
@@ -43,6 +46,7 @@
group: Foods group: Foods
desc: reagent-desc-egg desc: reagent-desc-egg
physicalDesc: reagent-physical-desc-mucus-like physicalDesc: reagent-physical-desc-mucus-like
flavor: egg
color: white color: white
metabolisms: metabolisms:
Food: Food:
@@ -56,6 +60,7 @@
group: Foods group: Foods
desc: reagent-desc-sugar desc: reagent-desc-sugar
physicalDesc: reagent-physical-desc-sweet physicalDesc: reagent-physical-desc-sweet
flavor: sweet
color: white color: white
meltingPoint: 146.0 meltingPoint: 146.0
metabolisms: metabolisms:
@@ -78,6 +83,7 @@
group: Foods group: Foods
desc: reagent-desc-blackpepper desc: reagent-desc-blackpepper
physicalDesc: reagent-physical-desc-grainy physicalDesc: reagent-physical-desc-grainy
flavor: peppery
color: black color: black
metabolisms: metabolisms:
Food: Food:
@@ -91,6 +97,7 @@
group: Foods group: Foods
desc: reagent-desc-vinegar desc: reagent-desc-vinegar
physicalDesc: reagent-physical-desc-sour physicalDesc: reagent-physical-desc-sour
flavor: bitter
color: tan color: tan
metabolisms: metabolisms:
Food: Food:
@@ -104,6 +111,7 @@
group: Foods group: Foods
desc: reagent-desc-rice desc: reagent-desc-rice
physicalDesc: reagent-physical-desc-chewy physicalDesc: reagent-physical-desc-chewy
flavor: rice
color: white color: white
metabolisms: metabolisms:
Food: Food:
@@ -116,6 +124,7 @@
group: Foods group: Foods
desc: reagent-desc-oil-olive desc: reagent-desc-oil-olive
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: oily
color: olive color: olive
metabolisms: metabolisms:
Food: Food:
@@ -129,6 +138,7 @@
group: Foods group: Foods
desc: reagent-desc-oil desc: reagent-desc-oil
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: oily
color: "#b67823" color: "#b67823"
boilingPoint: 300.0 boilingPoint: 300.0
meltingPoint: -16.0 meltingPoint: -16.0
@@ -140,6 +150,7 @@
name: reagent-name-capsaicin-oil name: reagent-name-capsaicin-oil
desc: reagent-desc-capsaicin-oil desc: reagent-desc-capsaicin-oil
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: spicy
color: "#FF0000" color: "#FF0000"
meltingPoint: 146 meltingPoint: 146
boilingPoint: 410 # Really high boiling point compared to its melting boilingPoint: 410 # Really high boiling point compared to its melting

View File

@@ -3,6 +3,7 @@
name: reagent-name-blood name: reagent-name-blood
group: Biological group: Biological
desc: reagent-desc-blood desc: reagent-desc-blood
flavor: metallic
color: "#800000" color: "#800000"
physicalDesc: reagent-physical-desc-ferrous physicalDesc: reagent-physical-desc-ferrous
metabolisms: metabolisms:
@@ -20,6 +21,7 @@
name: reagent-name-slime name: reagent-name-slime
group: Biological group: Biological
desc: reagent-desc-slime desc: reagent-desc-slime
flavor: slimy
color: "#2cf274" color: "#2cf274"
physicalDesc: reagent-physical-desc-viscous physicalDesc: reagent-physical-desc-viscous
metabolisms: metabolisms:
@@ -35,6 +37,7 @@
group: Biological group: Biological
desc: reagent-desc-ichor desc: reagent-desc-ichor
physicalDesc: reagent-physical-desc-roaring physicalDesc: reagent-physical-desc-roaring
flavor: metallic
color: "#f4692e" color: "#f4692e"
metabolisms: metabolisms:
Drink: Drink:

View File

@@ -3,6 +3,7 @@
name: reagent-name-e-z-nutrient name: reagent-name-e-z-nutrient
group: Botanical group: Botanical
desc: reagent-desc-e-z-nutrient desc: reagent-desc-e-z-nutrient
flavor: bitter
color: "#664330" color: "#664330"
physicalDesc: reagent-physical-desc-thick physicalDesc: reagent-physical-desc-thick
plantMetabolism: plantMetabolism:
@@ -14,6 +15,7 @@
name: reagent-name-left4-zed name: reagent-name-left4-zed
group: Botanical group: Botanical
desc: reagent-desc-left4-zed desc: reagent-desc-left4-zed
flavor: bitter
color: "#5b406c" color: "#5b406c"
physicalDesc: reagent-physical-desc-heterogeneous physicalDesc: reagent-physical-desc-heterogeneous
plantMetabolism: plantMetabolism:
@@ -30,6 +32,7 @@
name: reagent-name-pest-killer name: reagent-name-pest-killer
group: Botanical group: Botanical
desc: reagent-desc-pest-killer desc: reagent-desc-pest-killer
flavor: bitter
color: "#9e9886" color: "#9e9886"
physicalDesc: reagent-physical-desc-bubbling physicalDesc: reagent-physical-desc-bubbling
plantMetabolism: plantMetabolism:
@@ -43,6 +46,7 @@
name: reagent-name-plant-b-gone name: reagent-name-plant-b-gone
group: Botanical group: Botanical
desc: reagent-desc-plant-b-gone desc: reagent-desc-plant-b-gone
flavor: bitter
color: "#49002E" color: "#49002E"
physicalDesc: reagent-physical-desc-bubbling physicalDesc: reagent-physical-desc-bubbling
plantMetabolism: plantMetabolism:
@@ -60,6 +64,7 @@
name: reagent-name-robust-harvest name: reagent-name-robust-harvest
group: Botanical group: Botanical
desc: reagent-desc-robust-harvest desc: reagent-desc-robust-harvest
flavor: bitter
color: "#3e901c" color: "#3e901c"
physicalDesc: reagent-physical-desc-robust physicalDesc: reagent-physical-desc-robust
plantMetabolism: plantMetabolism:
@@ -78,6 +83,7 @@
name: reagent-name-weed-killer name: reagent-name-weed-killer
group: Botanical group: Botanical
desc: reagent-desc-weed-killer desc: reagent-desc-weed-killer
flavor: bitter
color: "#968395" color: "#968395"
physicalDesc: reagent-physical-desc-bubbling physicalDesc: reagent-physical-desc-bubbling
plantMetabolism: plantMetabolism:
@@ -92,6 +98,7 @@
group: Botanical group: Botanical
desc: reagent-desc-ammonia desc: reagent-desc-ammonia
physicalDesc: reagent-physical-desc-pungent physicalDesc: reagent-physical-desc-pungent
flavor: bitter
color: "#77b58e" color: "#77b58e"
boilingPoint: -33.0 boilingPoint: -33.0
meltingPoint: -77.7 meltingPoint: -77.7
@@ -114,6 +121,7 @@
group: Botanical group: Botanical
desc: reagent-desc-diethylamine desc: reagent-desc-diethylamine
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: bitter
color: "#a1000b" color: "#a1000b"
boilingPoint: 55.5 boilingPoint: 55.5
meltingPoint: -50.0 meltingPoint: -50.0

View File

@@ -3,6 +3,7 @@
name: reagent-name-acetone name: reagent-name-acetone
desc: reagent-desc-acetone desc: reagent-desc-acetone
physicalDesc: reagent-physical-desc-acidic physicalDesc: reagent-physical-desc-acidic
flavor: bitter
color: "#AF14B7" color: "#AF14B7"
boilingPoint: 55.5 boilingPoint: 55.5
meltingPoint: -50.0 meltingPoint: -50.0
@@ -12,6 +13,7 @@
name: reagent-name-phenol name: reagent-name-phenol
desc: reagent-desc-phenol desc: reagent-desc-phenol
physicalDesc: reagent-physical-desc-acidic physicalDesc: reagent-physical-desc-acidic
flavor: bitter
color: "#E7EA91" color: "#E7EA91"
boilingPoint: 55.5 boilingPoint: 55.5
meltingPoint: -50.0 meltingPoint: -50.0

View File

@@ -3,6 +3,7 @@
name: reagent-name-bleach name: reagent-name-bleach
desc: reagent-desc-bleach desc: reagent-desc-bleach
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: bitter
color: "#a1000b" color: "#a1000b"
boilingPoint: 111.0 boilingPoint: 111.0
meltingPoint: -5.0 meltingPoint: -5.0
@@ -24,6 +25,7 @@
name: reagent-name-space-cleaner name: reagent-name-space-cleaner
desc: reagent-desc-space-cleaner desc: reagent-desc-space-cleaner
physicalDesc: reagent-physical-desc-lemony-fresh physicalDesc: reagent-physical-desc-lemony-fresh
flavor: bitter
color: "#c8ff69" color: "#c8ff69"
boilingPoint: 147.0 # Made this up, loosely based on bleach boilingPoint: 147.0 # Made this up, loosely based on bleach
meltingPoint: -11.0 meltingPoint: -11.0
@@ -35,6 +37,7 @@
name: reagent-name-space-lube name: reagent-name-space-lube
desc: reagent-desc-space-lube desc: reagent-desc-space-lube
physicalDesc: reagent-physical-desc-shiny physicalDesc: reagent-physical-desc-shiny
flavor: funny
color: "#77b58e" color: "#77b58e"
boilingPoint: 290.0 # Glycerin boilingPoint: 290.0 # Glycerin
meltingPoint: 18.2 meltingPoint: 18.2

View File

@@ -4,6 +4,7 @@
group: Elements group: Elements
desc: reagent-desc-aluminium # -we use real words here. desc: reagent-desc-aluminium # -we use real words here.
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: metallic
color: "#848789" color: "#848789"
boilingPoint: 2327.0 boilingPoint: 2327.0
meltingPoint: 660.0 meltingPoint: 660.0
@@ -14,6 +15,7 @@
group: Elements group: Elements
desc: reagent-desc-carbon desc: reagent-desc-carbon
physicalDesc: reagent-physical-desc-crystalline physicalDesc: reagent-physical-desc-crystalline
flavor: bitter
color: "#22282b" color: "#22282b"
boilingPoint: 4200.0 boilingPoint: 4200.0
meltingPoint: 3550.0 meltingPoint: 3550.0
@@ -24,6 +26,7 @@
group: Elements group: Elements
desc: reagent-desc-chlorine desc: reagent-desc-chlorine
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#a2ff00" color: "#a2ff00"
meltingPoint: -101.5 meltingPoint: -101.5
boilingPoint: -34.04 boilingPoint: -34.04
@@ -43,6 +46,7 @@
group: Elements group: Elements
desc: reagent-desc-copper desc: reagent-desc-copper
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: metallic
color: "#b05b3c" color: "#b05b3c"
boilingPoint: 2595.0 boilingPoint: 2595.0
meltingPoint: 1083.0 meltingPoint: 1083.0
@@ -53,6 +57,7 @@
group: Elements group: Elements
desc: reagent-desc-fluorine desc: reagent-desc-fluorine
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#808080" color: "#808080"
boilingPoint: -188.11 boilingPoint: -188.11
meltingPoint: -219.67 meltingPoint: -219.67
@@ -72,6 +77,7 @@
group: Elements group: Elements
desc: reagent-desc-gold desc: reagent-desc-gold
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: metallic
color: "#F7C430" color: "#F7C430"
boilingPoint: 2700.0 boilingPoint: 2700.0
meltingPoint: 1064.76 meltingPoint: 1064.76
@@ -82,6 +88,7 @@
group: Elements group: Elements
desc: reagent-desc-hydrogen desc: reagent-desc-hydrogen
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#808080" color: "#808080"
boilingPoint: -253.0 boilingPoint: -253.0
meltingPoint: -259.2 meltingPoint: -259.2
@@ -92,6 +99,7 @@
group: Elements group: Elements
desc: reagent-desc-iodine desc: reagent-desc-iodine
physicalDesc: reagent-physical-desc-dark-brown physicalDesc: reagent-physical-desc-dark-brown
flavor: bitter
color: "#BC8A00" color: "#BC8A00"
boilingPoint: 184.3 boilingPoint: 184.3
meltingPoint: 113.7 meltingPoint: 113.7
@@ -102,6 +110,7 @@
group: Elements group: Elements
desc: reagent-desc-iron desc: reagent-desc-iron
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: metallic
color: "#434b4d" color: "#434b4d"
boilingPoint: 2862.0 boilingPoint: 2862.0
meltingPoint: 1538.0 meltingPoint: 1538.0
@@ -117,6 +126,7 @@
group: Elements group: Elements
desc: reagent-desc-lithium desc: reagent-desc-lithium
physicalDesc: reagent-physical-desc-shiny physicalDesc: reagent-physical-desc-shiny
flavor: metallic
color: "#c6c8cc" color: "#c6c8cc"
meltingPoint: 180.5 meltingPoint: 180.5
boilingPoint: 1330.0 boilingPoint: 1330.0
@@ -128,6 +138,7 @@
group: Elements group: Elements
desc: reagent-desc-mercury desc: reagent-desc-mercury
physicalDesc: reagent-physical-desc-shiny physicalDesc: reagent-physical-desc-shiny
flavor: metallic
color: "#929296" color: "#929296"
meltingPoint: -38.83 meltingPoint: -38.83
boilingPoint: 356.73 boilingPoint: 356.73
@@ -145,6 +156,7 @@
group: Elements group: Elements
desc: reagent-desc-potassium desc: reagent-desc-potassium
physicalDesc: reagent-physical-desc-shiny physicalDesc: reagent-physical-desc-shiny
flavor: metallic
color: "#c6c8cc" color: "#c6c8cc"
meltingPoint: 65.5 meltingPoint: 65.5
boilingPoint: 759.0 boilingPoint: 759.0
@@ -155,6 +167,7 @@
group: Elements group: Elements
desc: reagent-desc-phosphorus desc: reagent-desc-phosphorus
physicalDesc: reagent-physical-desc-powdery physicalDesc: reagent-physical-desc-powdery
flavor: metallic
color: "#ede4e4" color: "#ede4e4"
meltingPoint: 44.2 meltingPoint: 44.2
boilingPoint: 280.5 boilingPoint: 280.5
@@ -173,6 +186,7 @@
parent: Uranium parent: Uranium
desc: reagent-desc-radium desc: reagent-desc-radium
physicalDesc: reagent-physical-desc-glowing physicalDesc: reagent-physical-desc-glowing
flavor: metallic
color: "#00ff04" color: "#00ff04"
meltingPoint: 700.0 meltingPoint: 700.0
boilingPoint: 1737.0 boilingPoint: 1737.0
@@ -183,6 +197,7 @@
group: Elements group: Elements
desc: reagent-desc-silicon desc: reagent-desc-silicon
physicalDesc: reagent-physical-desc-crystalline physicalDesc: reagent-physical-desc-crystalline
flavor: metallic
color: "#364266" color: "#364266"
boilingPoint: 3265.0 boilingPoint: 3265.0
meltingPoint: 1414.0 meltingPoint: 1414.0
@@ -193,6 +208,7 @@
group: Elements group: Elements
desc: reagent-desc-silver desc: reagent-desc-silver
physicalDesc: reagent-physical-desc-reasonably-metallic physicalDesc: reagent-physical-desc-reasonably-metallic
flavor: metallic
color: "#d0d0d0" color: "#d0d0d0"
boilingPoint: 2212.0 boilingPoint: 2212.0
meltingPoint: 960.5 meltingPoint: 960.5
@@ -203,6 +219,7 @@
group: Elements group: Elements
desc: reagent-desc-sulfur desc: reagent-desc-sulfur
physicalDesc: reagent-physical-desc-powdery physicalDesc: reagent-physical-desc-powdery
flavor: bitter
color: "#fff385" color: "#fff385"
boilingPoint: 445.0 boilingPoint: 445.0
meltingPoint: 120.0 meltingPoint: 120.0
@@ -213,6 +230,7 @@
group: Elements group: Elements
desc: reagent-desc-sodium desc: reagent-desc-sodium
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: bitter
color: "#c6c8cc" color: "#c6c8cc"
meltingPoint: 97.8 meltingPoint: 97.8
boilingPoint: 883.0 boilingPoint: 883.0
@@ -223,6 +241,7 @@
group: Elements group: Elements
desc: reagent-desc-uranium desc: reagent-desc-uranium
physicalDesc: reagent-physical-desc-metallic physicalDesc: reagent-physical-desc-metallic
flavor: metallic
color: "#8fa191" color: "#8fa191"
meltingPoint: 1133.0 meltingPoint: 1133.0
boilingPoint: 4131.0 boilingPoint: 4131.0

View File

@@ -4,6 +4,7 @@
group: Special group: Special
desc: reagent-desc-carpetium desc: reagent-desc-carpetium
physicalDesc: reagent-physical-desc-fibrous physicalDesc: reagent-physical-desc-fibrous
flavor: carpet
color: "#800000" color: "#800000"
tileReactions: tileReactions:
- !type:CreateEntityTileReaction - !type:CreateEntityTileReaction
@@ -31,6 +32,7 @@
name: reagent-name-fiber name: reagent-name-fiber
desc: reagent-desc-fiber desc: reagent-desc-fiber
physicalDesc: reagent-physical-desc-fibrous physicalDesc: reagent-physical-desc-fibrous
flavor: fiber
color: "#808080" color: "#808080"
- type: reagent - type: reagent
@@ -39,6 +41,7 @@
group: Toxins group: Toxins
desc: reagent-desc-buzzochloric-bees desc: reagent-desc-buzzochloric-bees
physicalDesc: reagent-physical-desc-buzzy physicalDesc: reagent-physical-desc-buzzy
flavor: bee
color: "#FFD35D" color: "#FFD35D"
tileReactions: tileReactions:
- !type:CreateEntityTileReaction - !type:CreateEntityTileReaction
@@ -131,6 +134,7 @@
name: reagent-name-ground-bee name: reagent-name-ground-bee
desc: reagent-desc-ground-bee desc: reagent-desc-ground-bee
physicalDesc: reagent-physical-desc-bee-guts physicalDesc: reagent-physical-desc-bee-guts
flavor: bee
color: "#86530E" color: "#86530E"
- type: reagent - type: reagent
@@ -138,6 +142,7 @@
name: reagent-name-saxoite name: reagent-name-saxoite
desc: reagent-desc-saxoite desc: reagent-desc-saxoite
physicalDesc: reagent-physical-desc-ground-brass physicalDesc: reagent-physical-desc-ground-brass
flavor: sax
color: "#B8A603" color: "#B8A603"
- type: reagent - type: reagent
@@ -146,6 +151,7 @@
group: Toxins group: Toxins
desc: reagent-desc-licoxide desc: reagent-desc-licoxide
physicalDesc: reagent-physical-desc-electric physicalDesc: reagent-physical-desc-electric
flavor: shocking
color: "#FDD023" color: "#FDD023"
metabolisms: metabolisms:
Poison: Poison:

View File

@@ -3,6 +3,7 @@
name: reagent-name-oxygen name: reagent-name-oxygen
desc: reagent-desc-oxygen desc: reagent-desc-oxygen
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#808080" color: "#808080"
boilingPoint: -183.0 boilingPoint: -183.0
meltingPoint: -218.4 meltingPoint: -218.4
@@ -36,6 +37,7 @@
name: reagent-name-plasma name: reagent-name-plasma
desc: reagent-desc-plasma desc: reagent-desc-plasma
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#7e009e" color: "#7e009e"
boilingPoint: -127.3 # Random values picked between the actual values for CO2 and O2 boilingPoint: -127.3 # Random values picked between the actual values for CO2 and O2
meltingPoint: -186.4 meltingPoint: -186.4
@@ -75,6 +77,7 @@
name: reagent-name-tritium name: reagent-name-tritium
desc: reagent-desc-tritium desc: reagent-desc-tritium
physicalDesc: reagent-physical-desc-ionizing physicalDesc: reagent-physical-desc-ionizing
flavor: bitter
color: "#66ff33" color: "#66ff33"
tileReactions: tileReactions:
- !type:FlammableTileReaction - !type:FlammableTileReaction
@@ -104,6 +107,7 @@
name: reagent-name-carbon-dioxide name: reagent-name-carbon-dioxide
desc: reagent-desc-carbon-dioxide desc: reagent-desc-carbon-dioxide
physicalDesc: reagent-physical-desc-odorless physicalDesc: reagent-physical-desc-odorless
flavor: bitter
color: "#66ff33" color: "#66ff33"
metabolisms: metabolisms:
Gas: Gas:
@@ -129,6 +133,7 @@
name: reagent-name-nitrogen name: reagent-name-nitrogen
desc: reagent-desc-nitrogen desc: reagent-desc-nitrogen
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#808080" color: "#808080"
boilingPoint: -195.8 boilingPoint: -195.8
meltingPoint: -210.0 meltingPoint: -210.0
@@ -164,6 +169,7 @@
name: reagent-name-miasma name: reagent-name-miasma
desc: reagent-desc-miasma desc: reagent-desc-miasma
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#56941E" color: "#56941E"
boilingPoint: -195.8 boilingPoint: -195.8
meltingPoint: -210.0 meltingPoint: -210.0
@@ -228,6 +234,7 @@
name: reagent-name-nitrous-oxide name: reagent-name-nitrous-oxide
desc: reagent-desc-nitrous-oxide desc: reagent-desc-nitrous-oxide
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#808080" color: "#808080"
boilingPoint: -88 boilingPoint: -88
meltingPoint: -90 meltingPoint: -90
@@ -286,6 +293,7 @@
name: reagent-name-frezon name: reagent-name-frezon
desc: reagent-desc-frezon desc: reagent-desc-frezon
physicalDesc: reagent-physical-desc-gaseous physicalDesc: reagent-physical-desc-gaseous
flavor: bitter
color: "#3a758c" color: "#3a758c"
boilingPoint: -195.8 boilingPoint: -195.8
meltingPoint: -210.0 meltingPoint: -210.0

View File

@@ -4,6 +4,7 @@
group: Medicine group: Medicine
desc: reagent-desc-cryptobiolin desc: reagent-desc-cryptobiolin
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: medicine
color: "#081a80" color: "#081a80"
- type: reagent - type: reagent
@@ -12,6 +13,7 @@
group: Medicine group: Medicine
desc: reagent-desc-dylovene desc: reagent-desc-dylovene
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: medicine
color: "#3a1d8a" color: "#3a1d8a"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -33,6 +35,7 @@
group: Medicine group: Medicine
desc: reagent-desc-diphenhydramine desc: reagent-desc-diphenhydramine
physicalDesc: reagent-physical-desc-chalky physicalDesc: reagent-physical-desc-chalky
flavor: medicine
color: "#64ffe6" color: "#64ffe6"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -51,6 +54,7 @@
group: Medicine group: Medicine
desc: reagent-desc-ethylredoxrazine desc: reagent-desc-ethylredoxrazine
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: medicine
color: "#2d5708" color: "#2d5708"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -66,6 +70,7 @@
group: Medicine group: Medicine
desc: reagent-desc-arithrazine desc: reagent-desc-arithrazine
physicalDesc: reagent-physical-desc-cloudy physicalDesc: reagent-physical-desc-cloudy
flavor: medicine
color: "#bd5902" color: "#bd5902"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -83,6 +88,7 @@
group: Medicine group: Medicine
desc: reagent-desc-bicaridine desc: reagent-desc-bicaridine
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: medicine
color: "#ffaa00" color: "#ffaa00"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -113,6 +119,7 @@
group: Medicine group: Medicine
desc: reagent-desc-cryoxadone desc: reagent-desc-cryoxadone
physicalDesc: reagent-physical-desc-fizzy physicalDesc: reagent-physical-desc-fizzy
flavor: medicine
color: "#0091ff" color: "#0091ff"
plantMetabolism: plantMetabolism:
- !type:PlantAdjustToxins - !type:PlantAdjustToxins
@@ -142,6 +149,7 @@
parent: Cryoxadone parent: Cryoxadone
desc: reagent-desc-clonexadone desc: reagent-desc-clonexadone
physicalDesc: reagent-physical-desc-bubbly physicalDesc: reagent-physical-desc-bubbly
flavor: medicine
color: "#0666ff" color: "#0666ff"
plantMetabolism: plantMetabolism:
- !type:PlantAdjustToxins - !type:PlantAdjustToxins
@@ -156,6 +164,7 @@
group: Medicine group: Medicine
desc: reagent-desc-dermaline desc: reagent-desc-dermaline
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: medicine
color: "#215263" color: "#215263"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -184,6 +193,7 @@
group: Medicine group: Medicine
desc: reagent-desc-dexalin desc: reagent-desc-dexalin
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: medicine
color: "#0041a8" color: "#0041a8"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -200,6 +210,7 @@
group: Medicine group: Medicine
desc: reagent-desc-dexalin-plus desc: reagent-desc-dexalin-plus
physicalDesc: reagent-physical-desc-cloudy physicalDesc: reagent-physical-desc-cloudy
flavor: medicine
color: "#4da0bd" color: "#4da0bd"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -224,6 +235,7 @@
group: Medicine group: Medicine
desc: reagent-desc-epinephrine desc: reagent-desc-epinephrine
physicalDesc: reagent-physical-desc-odorless physicalDesc: reagent-physical-desc-odorless
flavor: medicine
color: "#d2fffa" color: "#d2fffa"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -284,6 +296,7 @@
group: Medicine group: Medicine
desc: reagent-desc-hyronalin desc: reagent-desc-hyronalin
physicalDesc: reagent-physical-desc-cloudy physicalDesc: reagent-physical-desc-cloudy
flavor: medicine
color: "#4cb580" color: "#4cb580"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -312,6 +325,7 @@
group: Medicine group: Medicine
desc: reagent-desc-ipecac desc: reagent-desc-ipecac
physicalDesc: reagent-physical-desc-inky physicalDesc: reagent-physical-desc-inky
flavor: medicine
color: "#422912" color: "#422912"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -325,6 +339,7 @@
group: Medicine group: Medicine
desc: reagent-desc-inaprovaline desc: reagent-desc-inaprovaline
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: medicine
color: "#731024" color: "#731024"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -346,6 +361,7 @@
group: Medicine group: Medicine
desc: reagent-desc-kelotane desc: reagent-desc-kelotane
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: medicine
color: "#bf3d19" color: "#bf3d19"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -361,6 +377,7 @@
group: Medicine group: Medicine
desc: reagent-desc-leporazine desc: reagent-desc-leporazine
physicalDesc: reagent-physical-desc-pungent physicalDesc: reagent-physical-desc-pungent
flavor: medicine
color: "#ff7db5" color: "#ff7db5"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -391,6 +408,7 @@
group: Medicine group: Medicine
desc: reagent-desc-barozine desc: reagent-desc-barozine
physicalDesc: reagent-physical-desc-viscous physicalDesc: reagent-physical-desc-viscous
flavor: medicine
color: "#ff867d" color: "#ff867d"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -433,6 +451,7 @@
group: Medicine group: Medicine
desc: reagent-desc-phalanximine desc: reagent-desc-phalanximine
physicalDesc: reagent-physical-desc-acrid physicalDesc: reagent-physical-desc-acrid
flavor: medicine
color: "#c8ff75" color: "#c8ff75"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -451,6 +470,7 @@
group: Medicine group: Medicine
desc: reagent-desc-romerol desc: reagent-desc-romerol
physicalDesc: reagent-physical-desc-acrid physicalDesc: reagent-physical-desc-acrid
flavor: medicine
color: "#7e916e" color: "#7e916e"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -466,6 +486,7 @@
group: Medicine group: Medicine
desc: reagent-desc-pulped-banana-peel desc: reagent-desc-pulped-banana-peel
physicalDesc: reagent-physical-desc-pulpy physicalDesc: reagent-physical-desc-pulpy
flavor: medicine
color: "#FFE774" color: "#FFE774"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -479,6 +500,7 @@
group: Medicine group: Medicine
desc: reagent-desc-siderlac desc: reagent-desc-siderlac
physicalDesc: reagent-physical-desc-milky physicalDesc: reagent-physical-desc-milky
flavor: medicine
color: "#f4dab8" color: "#f4dab8"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -494,6 +516,7 @@
group: Medicine group: Medicine
desc: reagent-desc-spaceacillin desc: reagent-desc-spaceacillin
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: medicine
color: "#9942f5" color: "#9942f5"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -506,6 +529,7 @@
group: Medicine group: Medicine
desc: reagent-desc-stellibinin desc: reagent-desc-stellibinin
physicalDesc: reagent-physical-desc-starry physicalDesc: reagent-physical-desc-starry
flavor: medicine
color: "#2b2f77" color: "#2b2f77"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -528,6 +552,7 @@
group: Medicine group: Medicine
desc: reagent-desc-synaptizine desc: reagent-desc-synaptizine
physicalDesc: reagent-physical-desc-pungent physicalDesc: reagent-physical-desc-pungent
flavor: medicine
color: "#d49a2f" color: "#d49a2f"
metabolisms: metabolisms:
Poison: Poison:
@@ -551,6 +576,7 @@
group: Medicine group: Medicine
desc: reagent-desc-tranexamic-acid desc: reagent-desc-tranexamic-acid
physicalDesc: reagent-physical-desc-viscous physicalDesc: reagent-physical-desc-viscous
flavor: medicine
color: "#ba7d7d" color: "#ba7d7d"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -573,6 +599,7 @@
group: Medicine group: Medicine
desc: reagent-desc-tricordrazine desc: reagent-desc-tricordrazine
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: medicine
color: "#00e5ff" color: "#00e5ff"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -594,6 +621,7 @@
group: Medicine group: Medicine
desc: reagent-desc-lipozine desc: reagent-desc-lipozine
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: medicine
color: "#2690b5" color: "#2690b5"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -609,6 +637,7 @@
group: Medicine group: Medicine
desc: reagent-desc-omnizine desc: reagent-desc-omnizine
physicalDesc: reagent-physical-desc-soothing physicalDesc: reagent-physical-desc-soothing
flavor: medicine
color: "#fcf7f9" color: "#fcf7f9"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -627,6 +656,7 @@
group: Medicine group: Medicine
desc: reagent-desc-ultravasculine desc: reagent-desc-ultravasculine
physicalDesc: reagent-physical-desc-thick-and-grainy physicalDesc: reagent-physical-desc-thick-and-grainy
flavor: medicine
color: "#520e30" color: "#520e30"
metabolisms: metabolisms:
Medicine: Medicine:
@@ -669,6 +699,7 @@
desc: reagent-desc-oculine desc: reagent-desc-oculine
group: Medicine group: Medicine
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: medicine
color: "#404040" color: "#404040"
metabolisms: metabolisms:
Medicine: Medicine:

View File

@@ -4,6 +4,7 @@
group: Narcotics group: Narcotics
desc: reagent-desc-desoxyephedrine desc: reagent-desc-desoxyephedrine
physicalDesc: reagent-physical-desc-translucent physicalDesc: reagent-physical-desc-translucent
flavor: bitter
color: "#FAFAFA" color: "#FAFAFA"
boilingPoint: 212.0 # Dexosyephedrine vape when? boilingPoint: 212.0 # Dexosyephedrine vape when?
meltingPoint: 170.0 meltingPoint: 170.0
@@ -46,6 +47,7 @@
group: Narcotics group: Narcotics
desc: reagent-desc-ephedrine desc: reagent-desc-ephedrine
physicalDesc: reagent-physical-desc-powdery physicalDesc: reagent-physical-desc-powdery
flavor: bitter
color: "#D2FFFA" color: "#D2FFFA"
boilingPoint: 255.0 boilingPoint: 255.0
meltingPoint: 36.0 meltingPoint: 36.0
@@ -83,6 +85,7 @@
name: reagent-name-thc name: reagent-name-thc
group: Narcotics group: Narcotics
desc: reagent-desc-thc desc: reagent-desc-thc
flavor: bitter
color: "#808080" color: "#808080"
physicalDesc: reagent-physical-desc-crystalline physicalDesc: reagent-physical-desc-crystalline
plantMetabolism: plantMetabolism:
@@ -106,6 +109,7 @@
group: Narcotics group: Narcotics
desc: reagent-desc-thc-oil desc: reagent-desc-thc-oil
physicalDesc: reagent-physical-desc-skunky physicalDesc: reagent-physical-desc-skunky
flavor: bitter
color: "#DAA520" color: "#DAA520"
metabolisms: metabolisms:
Narcotic: Narcotic:
@@ -122,6 +126,7 @@
name: reagent-name-nicotine name: reagent-name-nicotine
group: Narcotics group: Narcotics
desc: reagent-desc-nicotine desc: reagent-desc-nicotine
flavor: bitter
color: "#C0C0C0" color: "#C0C0C0"
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
plantMetabolism: plantMetabolism:
@@ -134,6 +139,7 @@
group: Narcotics group: Narcotics
desc: reagent-desc-impedrezene desc: reagent-desc-impedrezene
physicalDesc: reagent-physical-desc-acrid physicalDesc: reagent-physical-desc-acrid
flavor: bitter
color: "#215263" color: "#215263"
- type: reagent - type: reagent
@@ -142,6 +148,7 @@
group: Narcotics group: Narcotics
desc: reagent-desc-space-drugs desc: reagent-desc-space-drugs
physicalDesc: reagent-physical-desc-syrupy physicalDesc: reagent-physical-desc-syrupy
flavor: bitter
color: "#63806e" color: "#63806e"
metabolisms: metabolisms:
Narcotic: Narcotic:

View File

@@ -19,6 +19,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-thermite desc: reagent-desc-thermite
physicalDesc: reagent-physical-desc-grainy physicalDesc: reagent-physical-desc-grainy
flavor: bitter
color: "#757245" color: "#757245"
boilingPoint: 2977.0 # Aluminum oxide boilingPoint: 2977.0 # Aluminum oxide
meltingPoint: 2030.0 meltingPoint: 2030.0
@@ -39,6 +40,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-napalm desc: reagent-desc-napalm
physicalDesc: reagent-physical-desc-soapy physicalDesc: reagent-physical-desc-soapy
flavor: bitter
color: "#FA00AF" color: "#FA00AF"
tileReactions: tileReactions:
- !type:FlammableTileReaction - !type:FlammableTileReaction
@@ -65,6 +67,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-phlogiston desc: reagent-desc-phlogiston
physicalDesc: reagent-physical-desc-burning physicalDesc: reagent-physical-desc-burning
flavor: bitter
color: "#D4872A" color: "#D4872A"
metabolisms: metabolisms:
Poison: Poison:
@@ -91,6 +94,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-chlorine-trifluoride desc: reagent-desc-chlorine-trifluoride
physicalDesc: reagent-physical-desc-blazing physicalDesc: reagent-physical-desc-blazing
flavor: bitter
color: "#FFC8C8" color: "#FFC8C8"
tileReactions: tileReactions:
- !type:PryTileReaction - !type:PryTileReaction
@@ -126,6 +130,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-foaming-agent desc: reagent-desc-foaming-agent
physicalDesc: reagent-physical-desc-foamy physicalDesc: reagent-physical-desc-foamy
flavor: bitter
color: "#215263" color: "#215263"
boilingPoint: 418.0 # I went with ammonium lauryl sulfate as the basis for this boilingPoint: 418.0 # I went with ammonium lauryl sulfate as the basis for this
meltingPoint: 7.4 # I made this up meltingPoint: 7.4 # I made this up
@@ -136,6 +141,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-welding-fuel desc: reagent-desc-welding-fuel
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: bitter
color: "#a76b1c" color: "#a76b1c"
boilingPoint: -84.7 # Acetylene. Close enough. boilingPoint: -84.7 # Acetylene. Close enough.
meltingPoint: -80.7 meltingPoint: -80.7
@@ -157,6 +163,7 @@
parent: BasePyrotechnic parent: BasePyrotechnic
desc: reagent-desc-fluorosurfactant desc: reagent-desc-fluorosurfactant
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: bitter
color: "#9e6b38" color: "#9e6b38"
boilingPoint: 190.0 # Perfluorooctanoic Acid. boilingPoint: 190.0 # Perfluorooctanoic Acid.
meltingPoint: 45.0 meltingPoint: 45.0

View File

@@ -3,6 +3,7 @@
name: reagent-name-toxin name: reagent-name-toxin
group: Toxins group: Toxins
desc: reagent-desc-toxin desc: reagent-desc-toxin
flavor: bitter
color: "#cf3600" color: "#cf3600"
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
plantMetabolism: plantMetabolism:
@@ -23,6 +24,7 @@
name: reagent-name-carpotoxin name: reagent-name-carpotoxin
group: Toxins group: Toxins
desc: reagent-desc-carpotoxin desc: reagent-desc-carpotoxin
flavor: bitter
color: "#e2a38c" color: "#e2a38c"
physicalDesc: reagent-physical-desc-exotic-smelling physicalDesc: reagent-physical-desc-exotic-smelling
plantMetabolism: plantMetabolism:
@@ -49,6 +51,7 @@
name: reagent-name-chloral-hydrate name: reagent-name-chloral-hydrate
group: Toxins group: Toxins
desc: reagent-desc-chloral-hydrate desc: reagent-desc-chloral-hydrate
flavor: bitter
color: "#000067" color: "#000067"
physicalDesc: reagent-physical-desc-nondescript physicalDesc: reagent-physical-desc-nondescript
metabolisms: metabolisms:
@@ -80,6 +83,7 @@
name: reagent-name-mold name: reagent-name-mold
group: Toxins group: Toxins
desc: reagent-desc-mold desc: reagent-desc-mold
flavor: bitter
color: "#8a9a5b" color: "#8a9a5b"
physicalDesc: reagent-physical-desc-fuzzy physicalDesc: reagent-physical-desc-fuzzy
metabolisms: metabolisms:
@@ -109,6 +113,7 @@
group: Toxins group: Toxins
desc: reagent-desc-polytrinic-acid desc: reagent-desc-polytrinic-acid
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: acidic
color: "#a1000b" color: "#a1000b"
boilingPoint: 78.2 # This isn't a real chemical... boilingPoint: 78.2 # This isn't a real chemical...
meltingPoint: -19.4 meltingPoint: -19.4
@@ -150,6 +155,7 @@
group: Toxins group: Toxins
desc: reagent-desc-fluorosulfuric-acid desc: reagent-desc-fluorosulfuric-acid
physicalDesc: reagent-physical-desc-strong-smelling physicalDesc: reagent-physical-desc-strong-smelling
flavor: acidic
color: "#5050ff" color: "#5050ff"
boilingPoint: 165 boilingPoint: 165
meltingPoint: -87 meltingPoint: -87
@@ -184,6 +190,7 @@
group: Toxins group: Toxins
desc: reagent-desc-sulfuric-acid desc: reagent-desc-sulfuric-acid
physicalDesc: reagent-physical-desc-oily physicalDesc: reagent-physical-desc-oily
flavor: acidic
color: "#BF8C00" color: "#BF8C00"
boilingPoint: 337.0 boilingPoint: 337.0
meltingPoint: 10.31 meltingPoint: 10.31
@@ -225,6 +232,7 @@
group: Toxins group: Toxins
desc: reagent-desc-unstable-mutagen desc: reagent-desc-unstable-mutagen
physicalDesc: reagent-physical-desc-glowing physicalDesc: reagent-physical-desc-glowing
flavor: bitter
color: "#00ff5f" color: "#00ff5f"
boilingPoint: 340282300000000000000000000000000000000 # Ethidium bromide, which doesn't boil. boilingPoint: 340282300000000000000000000000000000000 # Ethidium bromide, which doesn't boil.
meltingPoint: 261.0 meltingPoint: 261.0
@@ -278,6 +286,7 @@
group: Toxins group: Toxins
desc: reagent-desc-mindbreaker-toxin desc: reagent-desc-mindbreaker-toxin
physicalDesc: reagent-physical-desc-opaque physicalDesc: reagent-physical-desc-opaque
flavor: bitter
color: "#77b58e" color: "#77b58e"
plantMetabolism: plantMetabolism:
- !type:PlantAdjustToxins - !type:PlantAdjustToxins
@@ -371,6 +380,7 @@
name: reagent-name-vent-crud name: reagent-name-vent-crud
desc: reagent-desc-vent-crud desc: reagent-desc-vent-crud
physicalDesc: reagent-physical-desc-sticky physicalDesc: reagent-physical-desc-sticky
flavor: bitter
color: "#000000" color: "#000000"
metabolisms: metabolisms:
Poison: Poison:
@@ -388,6 +398,7 @@
name: reagent-name-corpium name: reagent-name-corpium
desc: reagent-desc-corpium desc: reagent-desc-corpium
physicalDesc: reagent-physical-desc-necrotic physicalDesc: reagent-physical-desc-necrotic
flavor: bitter
color: "#7668a1" color: "#7668a1"
metabolisms: metabolisms:
Poison: Poison:
@@ -405,6 +416,7 @@
name: reagent-name-uncooked-animal-proteins name: reagent-name-uncooked-animal-proteins
desc: reagent-desc-uncooked-animal-proteins desc: reagent-desc-uncooked-animal-proteins
physicalDesc: reagent-physical-desc-clumpy physicalDesc: reagent-physical-desc-clumpy
flavor: bitter
color: "#FFFFE5" color: "#FFFFE5"
metabolisms: metabolisms:
Poison: Poison:
@@ -428,6 +440,7 @@
name: reagent-name-allicin name: reagent-name-allicin
desc: reagent-desc-allicin desc: reagent-desc-allicin
physicalDesc: reagent-physical-desc-pungent physicalDesc: reagent-physical-desc-pungent
flavor: bitter
color: "#F2E9D2" color: "#F2E9D2"
metabolisms: metabolisms:
Poison: Poison: