diff --git a/Content.Server/GameObjects/Components/Chemistry/RehydratableComponent.cs b/Content.Server/GameObjects/Components/Chemistry/RehydratableComponent.cs index e658e522eb..38b395ade1 100644 --- a/Content.Server/GameObjects/Components/Chemistry/RehydratableComponent.cs +++ b/Content.Server/GameObjects/Components/Chemistry/RehydratableComponent.cs @@ -24,7 +24,7 @@ namespace Content.Server.GameObjects.Components.Chemistry [ViewVariables] [DataField("catalyst")] - private string _catalystPrototype = "chem.Water"; + private string _catalystPrototype = "Water"; [ViewVariables] [DataField("target")] private string? _targetPrototype = default!; diff --git a/Content.Server/GameObjects/Components/Culinary/SliceableFoodComponent.cs b/Content.Server/GameObjects/Components/Culinary/SliceableFoodComponent.cs index 05419a4840..824f27a4b6 100644 --- a/Content.Server/GameObjects/Components/Culinary/SliceableFoodComponent.cs +++ b/Content.Server/GameObjects/Components/Culinary/SliceableFoodComponent.cs @@ -77,7 +77,7 @@ namespace Content.Server.GameObjects.Components.Culinary Owner.Delete(); return true; } - solution.TryRemoveReagent("chem.Nutriment", solution.CurrentVolume / ReagentUnit.New(Count + 1)); + solution.TryRemoveReagent("Nutriment", solution.CurrentVolume / ReagentUnit.New(Count + 1)); return true; } diff --git a/Content.Server/GameObjects/Components/Interactable/WelderComponent.cs b/Content.Server/GameObjects/Components/Interactable/WelderComponent.cs index acf31ed29e..0181c79294 100644 --- a/Content.Server/GameObjects/Components/Interactable/WelderComponent.cs +++ b/Content.Server/GameObjects/Components/Interactable/WelderComponent.cs @@ -60,7 +60,7 @@ namespace Content.Server.GameObjects.Components.Interactable public string? WeldSoundCollection { get; set; } [ViewVariables] - public float Fuel => _solutionComponent?.Solution?.GetReagentQuantity("chem.WeldingFuel").Float() ?? 0f; + public float Fuel => _solutionComponent?.Solution?.GetReagentQuantity("WeldingFuel").Float() ?? 0f; [ViewVariables] public float FuelCapacity => _solutionComponent?.MaxVolume.Float() ?? 0f; @@ -156,7 +156,7 @@ namespace Content.Server.GameObjects.Components.Interactable if (_solutionComponent == null) return false; - var succeeded = _solutionComponent.TryRemoveReagent("chem.WeldingFuel", ReagentUnit.New(value)); + var succeeded = _solutionComponent.TryRemoveReagent("WeldingFuel", ReagentUnit.New(value)); if (succeeded && !silent) { @@ -251,7 +251,7 @@ namespace Content.Server.GameObjects.Components.Interactable if (!HasQuality(ToolQuality.Welding) || !WelderLit || Owner.Deleted) return; - _solutionComponent?.TryRemoveReagent("chem.WeldingFuel", ReagentUnit.New(FuelLossRate * frameTime)); + _solutionComponent?.TryRemoveReagent("WeldingFuel", ReagentUnit.New(FuelLossRate * frameTime)); Owner.Transform.Coordinates .GetTileAtmosphere()?.HotspotExpose(700f, 50f, true); diff --git a/Content.Server/GameObjects/Components/Power/PowerCellComponent.cs b/Content.Server/GameObjects/Components/Power/PowerCellComponent.cs index c825cfbdf7..79d8a80ae5 100644 --- a/Content.Server/GameObjects/Components/Power/PowerCellComponent.cs +++ b/Content.Server/GameObjects/Components/Power/PowerCellComponent.cs @@ -101,7 +101,7 @@ namespace Content.Server.GameObjects.Components.Power void ISolutionChange.SolutionChanged(SolutionChangeEventArgs eventArgs) { IsRigged = Owner.TryGetComponent(out SolutionContainerComponent? solution) - && solution.Solution.ContainsReagent("chem.Plasma", out var plasma) + && solution.Solution.ContainsReagent("Plasma", out var plasma) && plasma >= 5; } } diff --git a/Content.Tests/Shared/Chemistry/ReagentPrototype_Tests.cs b/Content.Tests/Shared/Chemistry/ReagentPrototype_Tests.cs index ef5fc3764c..0d982fa7e4 100644 --- a/Content.Tests/Shared/Chemistry/ReagentPrototype_Tests.cs +++ b/Content.Tests/Shared/Chemistry/ReagentPrototype_Tests.cs @@ -31,7 +31,7 @@ namespace Content.Tests.Shared.Chemistry var newReagent = serializationManager.ReadValue(new MappingDataNode(proto)); Assert.That(defType, Is.EqualTo("reagent")); - Assert.That(newReagent.ID, Is.EqualTo("chem.H2")); + Assert.That(newReagent.ID, Is.EqualTo("H2")); Assert.That(newReagent.Name, Is.EqualTo("Hydrogen")); Assert.That(newReagent.Description, Is.EqualTo("A light, flammable gas.")); Assert.That(newReagent.SubstanceColor, Is.EqualTo(Color.Teal)); @@ -39,7 +39,7 @@ namespace Content.Tests.Shared.Chemistry } private const string YamlReagentPrototype = @"- type: reagent - id: chem.H2 + id: H2 name: Hydrogen desc: A light, flammable gas. color: " + "\"#008080\""; diff --git a/Content.Tests/Shared/Chemistry/Solution_Tests.cs b/Content.Tests/Shared/Chemistry/Solution_Tests.cs index 26d40328c9..6ecd893b88 100644 --- a/Content.Tests/Shared/Chemistry/Solution_Tests.cs +++ b/Content.Tests/Shared/Chemistry/Solution_Tests.cs @@ -306,19 +306,19 @@ namespace Content.Tests.Shared.Chemistry public void SplitSolutionZero() { var solution = new Solution(); - solution.AddReagent("chem.Impedrezene", ReagentUnit.New(0.01 + 0.19)); - solution.AddReagent("chem.Thermite", ReagentUnit.New(0.01 + 0.39)); - solution.AddReagent("chem.Li", ReagentUnit.New(0.01 + 0.17)); - solution.AddReagent("chem.F", ReagentUnit.New(0.01 + 0.17)); - solution.AddReagent("chem.Na", ReagentUnit.New(0 + 0.13)); - solution.AddReagent("chem.Hg", ReagentUnit.New(0.15 + 4.15)); - solution.AddReagent("chem.Cu", ReagentUnit.New(0 + 0.13)); - solution.AddReagent("chem.U", ReagentUnit.New(0.76 + 20.77)); - solution.AddReagent("chem.Fe", ReagentUnit.New(0.01 + 0.36)); - solution.AddReagent("chem.SpaceDrugs", ReagentUnit.New(0.02 + 0.41)); - solution.AddReagent("chem.Al", ReagentUnit.New(0)); - solution.AddReagent("chem.Glucose", ReagentUnit.New(0)); - solution.AddReagent("chem.O", ReagentUnit.New(0)); + solution.AddReagent("Impedrezene", ReagentUnit.New(0.01 + 0.19)); + solution.AddReagent("Thermite", ReagentUnit.New(0.01 + 0.39)); + solution.AddReagent("Li", ReagentUnit.New(0.01 + 0.17)); + solution.AddReagent("F", ReagentUnit.New(0.01 + 0.17)); + solution.AddReagent("Na", ReagentUnit.New(0 + 0.13)); + solution.AddReagent("Hg", ReagentUnit.New(0.15 + 4.15)); + solution.AddReagent("Cu", ReagentUnit.New(0 + 0.13)); + solution.AddReagent("U", ReagentUnit.New(0.76 + 20.77)); + solution.AddReagent("Fe", ReagentUnit.New(0.01 + 0.36)); + solution.AddReagent("SpaceDrugs", ReagentUnit.New(0.02 + 0.41)); + solution.AddReagent("Al", ReagentUnit.New(0)); + solution.AddReagent("Glucose", ReagentUnit.New(0)); + solution.AddReagent("O", ReagentUnit.New(0)); solution.SplitSolution(ReagentUnit.New(0.98)); } diff --git a/Resources/Prototypes/Atmospherics/reactions.yml b/Resources/Prototypes/Atmospherics/reactions.yml index 7062ba849d..9165a9573d 100644 --- a/Resources/Prototypes/Atmospherics/reactions.yml +++ b/Resources/Prototypes/Atmospherics/reactions.yml @@ -37,4 +37,4 @@ effects: - !type:WaterVaporReaction gas: 5 - reagent: chem.Water + reagent: Water diff --git a/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/booze_dispenser.yml b/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/booze_dispenser.yml index 93ce896a81..d37c1e4ec8 100644 --- a/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/booze_dispenser.yml +++ b/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/booze_dispenser.yml @@ -13,12 +13,12 @@ - type: reagentDispenserInventory id: BoozeDispenserInventory inventory: - - chem.Ale - - chem.Beer - - chem.Cognac - - chem.Ice - - chem.Kahlua - - chem.Rum - - chem.Vodka - - chem.Whiskey - - chem.Wine + - Ale + - Beer + - Cognac + - Ice + - Kahlua + - Rum + - Vodka + - Whiskey + - Wine diff --git a/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/chem_dispenser.yml b/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/chem_dispenser.yml index e6e4fd1059..d16d50abeb 100644 --- a/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/chem_dispenser.yml +++ b/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/chem_dispenser.yml @@ -17,27 +17,27 @@ - type: reagentDispenserInventory id: ChemDispenserStandardInventory inventory: - - chem.Aluminium - - chem.Carbon - - chem.Chlorine - - chem.Copper - - chem.Ethanol - - chem.Fluorine - - chem.Glucose - - chem.Hydrogen - - chem.Iron - - chem.Lithium - - chem.Mercury - - chem.Nitrogen - - chem.Nutriment - - chem.Oxygen - - chem.Phosphorus - - chem.Potassium - - chem.Radium - - chem.Silicon - - chem.Sodium - - chem.Sugar - - chem.Sulfur - - chem.SulfuricAcid - - chem.Uranium - - chem.Water + - Aluminium + - Carbon + - Chlorine + - Copper + - Ethanol + - Fluorine + - Glucose + - Hydrogen + - Iron + - Lithium + - Mercury + - Nitrogen + - Nutriment + - Oxygen + - Phosphorus + - Potassium + - Radium + - Silicon + - Sodium + - Sugar + - Sulfur + - SulfuricAcid + - Uranium + - Water diff --git a/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/soda_dispenser.yml b/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/soda_dispenser.yml index f1598dba65..a63b374417 100644 --- a/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/soda_dispenser.yml +++ b/Resources/Prototypes/Entities/Constructible/Specific/Dispensers/soda_dispenser.yml @@ -13,9 +13,9 @@ - type: reagentDispenserInventory id: SodaDispenserInventory inventory: - - chem.Coffee - - chem.Cola - - chem.Cream - - chem.Ice - - chem.Tea - - chem.Water + - Coffee + - Cola + - Cream + - Ice + - Tea + - Water diff --git a/Resources/Prototypes/Entities/Constructible/Specific/barricades.yml b/Resources/Prototypes/Entities/Constructible/Specific/barricades.yml index 06872ce5a5..3ae0b467e9 100644 --- a/Resources/Prototypes/Entities/Constructible/Specific/barricades.yml +++ b/Resources/Prototypes/Entities/Constructible/Specific/barricades.yml @@ -46,14 +46,14 @@ - !type:ExtinguishReaction touch: true reagents: - - chem.Water + - Water - !type:FlammableReaction touch: true reagents: - - chem.WeldingFuel - - chem.Thermite - - chem.Plasma - - chem.Ethanol + - WeldingFuel + - Thermite + - Plasma + - Ethanol - type: Appearance visuals: - type: FireVisualizer diff --git a/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/fuel_tank.yml b/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/fuel_tank.yml index da1237f07a..92b306a59d 100644 --- a/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/fuel_tank.yml +++ b/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/fuel_tank.yml @@ -25,5 +25,5 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.WeldingFuel + - ReagentId: WeldingFuel Quantity: 1500 diff --git a/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/water_tank.yml b/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/water_tank.yml index ff66db9e41..2ee3b28b2d 100644 --- a/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/water_tank.yml +++ b/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/water_tank.yml @@ -17,5 +17,5 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Water + - ReagentId: Water Quantity: 1500 diff --git a/Resources/Prototypes/Entities/Constructible/Watercloset/toilet.yml b/Resources/Prototypes/Entities/Constructible/Watercloset/toilet.yml index f0f7b35bf0..0de11e1e9f 100644 --- a/Resources/Prototypes/Entities/Constructible/Watercloset/toilet.yml +++ b/Resources/Prototypes/Entities/Constructible/Watercloset/toilet.yml @@ -35,7 +35,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Water + - ReagentId: Water Quantity: 180 - - ReagentId: chem.Toxin + - ReagentId: Toxin Quantity: 20 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index c9df5bf2aa..4ef1d7ba87 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -391,7 +391,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 5 - type: MouseAccent diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 54ee5e625b..7af3c4fe8e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -12,14 +12,14 @@ - !type:ExtinguishReaction touch: true reagents: - - chem.Water + - Water - !type:FlammableReaction touch: true reagents: - - chem.WeldingFuel - - chem.Thermite - - chem.Plasma - - chem.Ethanol + - WeldingFuel + - Thermite + - Plasma + - Ethanol - type: UtilityAI behaviorSets: - Clothing diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index 365f3bf603..a5eefc6a9d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -15,19 +15,19 @@ - !type:ExtinguishReaction touch: true reagents: - - chem.Water + - Water - !type:FlammableReaction touch: true reagents: - - chem.WeldingFuel - - chem.Thermite - - chem.Plasma - - chem.Ethanol + - WeldingFuel + - Thermite + - Plasma + - Ethanol - !type:WashCreamPieReaction touch: true reagents: - - chem.Water - - chem.SpaceCleaner + - Water + - SpaceCleaner - type: Flashable - type: Hands - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Objects/Consumable/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/drinks.yml index c4838c0846..5221581a2c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/drinks.yml @@ -71,7 +71,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Ale + - ReagentId: Ale Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/aleglass.rsi @@ -87,7 +87,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Antifreeze + - ReagentId: Antifreeze Quantity: 20 - type: Drink - type: Sprite @@ -104,7 +104,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.AtomicBomb + - ReagentId: AtomicBomb Quantity: 20 - type: Drink - type: Sprite @@ -121,7 +121,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.B52 + - ReagentId: B52 Quantity: 20 - type: Drink - type: Sprite @@ -160,7 +160,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Beer + - ReagentId: Beer Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/beer.rsi @@ -176,7 +176,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Beer + - ReagentId: Beer Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/beerglass.rsi @@ -193,7 +193,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.BerryJuice + - ReagentId: BerryJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/berryjuice.rsi @@ -281,7 +281,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.CarrotJuice + - ReagentId: CarrotJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/carrotjuice.rsi @@ -320,7 +320,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Coffee + - ReagentId: Coffee Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/coffee.rsi @@ -336,7 +336,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Cognac + - ReagentId: Cognac Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/cognacglass.rsi @@ -352,7 +352,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Cola + - ReagentId: Cola Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/colabottle.rsi @@ -368,7 +368,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Cream + - ReagentId: Cream Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/cream.rsi @@ -384,7 +384,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.CubaLibre + - ReagentId: CubaLibre Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/cubalibreglass.rsi @@ -599,7 +599,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.LimeJuice + - ReagentId: LimeJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/glass_green.rsi @@ -616,7 +616,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.OrangeJuice + - ReagentId: OrangeJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/glass_orange.rsi @@ -632,7 +632,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.LemonJuice + - ReagentId: LemonJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/glass_yellow.rsi @@ -649,7 +649,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.TomatoJuice + - ReagentId: TomatoJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/glass_red.rsi @@ -665,7 +665,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Milk + - ReagentId: Milk Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/glass_white.rsi @@ -692,7 +692,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.GrapeJuice + - ReagentId: GrapeJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/grapejuice.rsi @@ -808,7 +808,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Ice + - ReagentId: Ice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/iceglass.rsi @@ -824,7 +824,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.IrishCarBomb + - ReagentId: IrishCarBomb Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/irishcarbomb.rsi @@ -840,7 +840,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.IrishCoffee + - ReagentId: IrishCoffee Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/irishcoffeeglass.rsi @@ -856,7 +856,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.IrishCream + - ReagentId: IrishCream Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/irishcreamglass.rsi @@ -905,7 +905,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Kahlua + - ReagentId: Kahlua Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/kahluaglass.rsi @@ -966,7 +966,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.LemonJuice + - ReagentId: LemonJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/lemonjuice.rsi @@ -983,9 +983,9 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.LemonJuice + - ReagentId: LemonJuice Quantity: 10 - - ReagentId: chem.LimeJuice + - ReagentId: LimeJuice Quantity: 10 - type: Sprite sprite: Objects/Consumable/Drinks/lemonlime.rsi @@ -1002,7 +1002,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.LimeJuice + - ReagentId: LimeJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/limejuice.rsi @@ -1051,7 +1051,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.ManlyDorf + - ReagentId: ManlyDorf Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/manlydorfglass.rsi @@ -1100,7 +1100,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Milk + - ReagentId: Milk Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/milk.rsi @@ -1183,7 +1183,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.OrangeJuice + - ReagentId: OrangeJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/orangejuice.rsi @@ -1211,7 +1211,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.PoisonBerryJuice + - ReagentId: PoisonBerryJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/poisonberryjuice.rsi @@ -1526,7 +1526,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.SyndicateBomb + - ReagentId: SyndicateBomb Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/syndicatebomb.rsi @@ -1542,7 +1542,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Tea + - ReagentId: Tea Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/teaglass.rsi @@ -1558,7 +1558,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Tea + - ReagentId: Tea Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/teapot.rsi @@ -1619,7 +1619,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.TomatoJuice + - ReagentId: TomatoJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/tomatojuice.rsi @@ -1713,7 +1713,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.WatermelonJuice + - ReagentId: WatermelonJuice Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/watermelon.rsi @@ -1745,7 +1745,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.WhiskeyCola + - ReagentId: WhiskeyCola Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/whiskeycolaglass.rsi @@ -1761,7 +1761,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Whiskey + - ReagentId: Whiskey Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/whiskeyglass.rsi @@ -1810,7 +1810,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Wine + - ReagentId: Wine Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/wineglass.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/drinks_bottles.yml index 595bbef887..6404d0b891 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/drinks_bottles.yml @@ -46,7 +46,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Absinthe + - ReagentId: Absinthe Quantity: 100 - type: entity @@ -70,7 +70,7 @@ maxVol: 100 contents: reagents: - - ReagentId: chem.Ale + - ReagentId: Ale Quantity: 100 - type: Sprite sprite: Objects/Consumable/Drinks/alebottle.rsi @@ -96,7 +96,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Cognac + - ReagentId: Cognac Quantity: 100 - type: Sprite sprite: Objects/Consumable/Drinks/cognacbottle.rsi @@ -114,7 +114,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Gin + - ReagentId: Gin Quantity: 100 - type: entity @@ -138,7 +138,7 @@ maxVol: 80 contents: reagents: - - ReagentId: chem.Water + - ReagentId: Water Quantity: 80 - type: Sprite sprite: Objects/Consumable/Drinks/kahluabottle.rsi @@ -209,7 +209,7 @@ maxVol: 80 contents: reagents: - - ReagentId: chem.Vodka + - ReagentId: Vodka Quantity: 80 - type: Sprite sprite: Objects/Consumable/Drinks/vodkabottle.rsi @@ -225,7 +225,7 @@ maxVol: 80 contents: reagents: - - ReagentId: chem.Whiskey + - ReagentId: Whiskey Quantity: 80 - type: Sprite sprite: Objects/Consumable/Drinks/whiskeybottle.rsi @@ -241,7 +241,7 @@ maxVol: 80 contents: reagents: - - ReagentId: chem.Wine + - ReagentId: Wine Quantity: 80 - type: Sprite sprite: Objects/Consumable/Drinks/winebottle.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/drinks_cans.yml index 7c44c0888e..825d494e9a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/drinks_cans.yml @@ -11,7 +11,7 @@ caps: None contents: reagents: - - ReagentId: chem.Cola + - ReagentId: Cola Quantity: 20 - type: SolutionTransfer transferAmount: 5 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/drinks_cups.yml index a263bf2d13..f9176f5fdc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/drinks_cups.yml @@ -236,7 +236,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Coffee + - ReagentId: Coffee Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/hot_coffee.rsi @@ -252,7 +252,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Tea + - ReagentId: Tea Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/teacup.rsi @@ -273,7 +273,7 @@ maxVol: 20 contents: reagents: - - ReagentId: chem.Lean + - ReagentId: Lean Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/lean.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/food.yml b/Resources/Prototypes/Entities/Objects/Consumable/food.yml index 5414aaf180..564a45e8bd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/food.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/food.yml @@ -35,7 +35,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/4no_raisins.rsi @@ -51,7 +51,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/aesirsalad.rsi @@ -66,7 +66,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/amanita_pie.rsi @@ -83,7 +83,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/amanitajelly.rsi @@ -113,7 +113,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/apple_cake_slice.rsi @@ -128,7 +128,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/apple_pie.rsi @@ -157,7 +157,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/badrecipe.rsi @@ -172,7 +172,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/baguette.rsi @@ -189,7 +189,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/breadslice.rsi @@ -206,7 +206,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/bananabreadslice.rsi @@ -224,7 +224,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/pie.rsi @@ -258,7 +258,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/beetsoup.rsi @@ -275,7 +275,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/berryclafoutis.rsi @@ -292,7 +292,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/birthday_cake_slice.rsi @@ -309,7 +309,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/spaghettiboiled.rsi @@ -326,7 +326,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/brain_cake_slice.rsi @@ -343,7 +343,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/candy.rsi @@ -359,7 +359,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/candy_corn.rsi @@ -376,7 +376,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/carrotcake_slice.rsi @@ -393,7 +393,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/carrotfries.rsi @@ -410,7 +410,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/chawanmushi.rsi @@ -425,7 +425,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/cheeseburger.rsi @@ -443,7 +443,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/cheesecake_slice.rsi @@ -458,7 +458,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/cheesewedge.rsi @@ -475,7 +475,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/cheesie_honkers.rsi @@ -492,7 +492,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/cheesyfries.rsi @@ -507,7 +507,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/cherrypie.rsi @@ -524,7 +524,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/chips.rsi @@ -542,7 +542,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/chocolatebar.rsi @@ -559,7 +559,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/chocolatecake_slice.rsi @@ -574,7 +574,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/chocolateegg.rsi @@ -589,7 +589,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/clownburger.rsi @@ -605,7 +605,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/clownstears.rsi @@ -636,7 +636,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/coldchili.rsi @@ -665,7 +665,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/cookie!!!.rsi @@ -680,7 +680,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/cracker.rsi @@ -697,7 +697,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/creamcheesebreadslice.rsi @@ -714,7 +714,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/cubancarp.rsi @@ -743,7 +743,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/donkpocket.rsi @@ -758,7 +758,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/donut1.rsi @@ -774,7 +774,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/donut2.rsi @@ -790,7 +790,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-blue.rsi @@ -806,7 +806,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-green.rsi @@ -822,7 +822,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-mime.rsi @@ -838,7 +838,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-orange.rsi @@ -854,7 +854,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-purple.rsi @@ -870,7 +870,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-rainbow.rsi @@ -886,7 +886,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-red.rsi @@ -902,7 +902,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg-yellow.rsi @@ -918,7 +918,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/egg.rsi @@ -938,7 +938,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/eggplantparm.rsi @@ -969,7 +969,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/enchiladas.rsi @@ -1012,7 +1012,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/fishandchips.rsi @@ -1027,7 +1027,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/fishburger.rsi @@ -1057,7 +1057,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/fishfingers.rsi @@ -1086,7 +1086,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/fortune_cookie.rsi @@ -1101,7 +1101,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/friedegg.rsi @@ -1118,7 +1118,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/fries.rsi @@ -1135,7 +1135,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/gappletart.rsi @@ -1152,7 +1152,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/toastedsandwich.rsi @@ -1167,7 +1167,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/hburger.rsi @@ -1185,7 +1185,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/herbsalad.rsi @@ -1216,7 +1216,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/hotchili.rsi @@ -1231,7 +1231,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/hotdog.rsi @@ -1260,7 +1260,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/hugemushroomslice.rsi @@ -1277,7 +1277,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/kabob.rsi @@ -1292,7 +1292,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/jdonut1.rsi @@ -1307,7 +1307,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/jdonut2.rsi @@ -1322,7 +1322,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/jellyburger.rsi @@ -1340,7 +1340,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/jellysandwich.rsi @@ -1357,7 +1357,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/jellytoast.rsi @@ -1375,7 +1375,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/kabob.rsi @@ -1420,7 +1420,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/lemoncake_slice.rsi @@ -1437,7 +1437,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/limecake_slice.rsi @@ -1452,7 +1452,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/liquidfood.rsi @@ -1467,7 +1467,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/loadedbakedpotato.rsi @@ -1482,7 +1482,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 5 - type: Sprite sprite: Objects/Consumable/Food/meat.rsi @@ -1497,7 +1497,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/meatball.rsi @@ -1515,7 +1515,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/meatballsoup.rsi @@ -1532,7 +1532,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/meatballspaghetti.rsi @@ -1549,7 +1549,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/meatbreadslice.rsi @@ -1566,7 +1566,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/meatpie.rsi @@ -1581,7 +1581,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/meatpizzaslice.rsi @@ -1598,7 +1598,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/meatsteak.rsi @@ -1615,7 +1615,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/milosoup.rsi @@ -1630,7 +1630,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/mimeburger.rsi @@ -1645,7 +1645,7 @@ - type: SolutionContainer contents: reagents: # TODO: mint toxin - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/mint.rsi @@ -1674,7 +1674,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/hburger.rsi @@ -1692,7 +1692,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 30 - type: Sprite sprite: Objects/Consumable/Food/monkeysdelight.rsi @@ -1735,7 +1735,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/mushroompizzaslice.rsi @@ -1752,7 +1752,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/mushroomsoup.rsi @@ -1770,7 +1770,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 1 - type: Sprite sprite: Objects/Consumable/Food/mysterysoup.rsi @@ -1787,7 +1787,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/nettlesoup.rsi @@ -1818,7 +1818,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/omelette.rsi @@ -1835,7 +1835,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/orangecake_slice.rsi @@ -1852,7 +1852,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/pastatomato.rsi @@ -1881,7 +1881,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/phelmbiscuit.rsi @@ -1896,7 +1896,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/pizzamargheritaslice.rsi @@ -1913,7 +1913,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/plaincake_slice.rsi @@ -1928,7 +1928,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/plump_pie.rsi @@ -1945,7 +1945,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/popcorn.rsi @@ -1960,7 +1960,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 - type: Sprite sprite: Objects/Consumable/Food/poppypretzel.rsi @@ -1977,7 +1977,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/pumpkinpieslice.rsi @@ -2007,7 +2007,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/roburger.rsi @@ -2024,7 +2024,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/rofflewaffles.rsi @@ -2069,7 +2069,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/rpudding.rsi @@ -2086,7 +2086,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/sandwich.rsi @@ -2129,7 +2129,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/sausage.rsi @@ -2172,7 +2172,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/sosjerky.rsi @@ -2190,7 +2190,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/soydope.rsi @@ -2207,7 +2207,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/soylent_green.rsi @@ -2225,7 +2225,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/soylent_yellow.rsi @@ -2254,7 +2254,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/space_twinkie.rsi @@ -2271,7 +2271,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/spacylibertyduff.rsi @@ -2286,7 +2286,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/spaghetti.rsi @@ -2301,7 +2301,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/spellburger.rsi @@ -2317,7 +2317,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/spesslaw.rsi @@ -2332,7 +2332,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/stew.rsi @@ -2349,7 +2349,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/stewedsoymeat.rsi @@ -2364,7 +2364,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/stuffing.rsi @@ -2407,7 +2407,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/superbiteburger.rsi @@ -2424,7 +2424,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/syndi_cakes.rsi @@ -2439,7 +2439,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 - type: Sprite sprite: Objects/Consumable/Food/taco.rsi @@ -2456,7 +2456,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/tastybread.rsi @@ -2473,7 +2473,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/toastedsandwich.rsi @@ -2488,7 +2488,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/tofu.rsi @@ -2505,7 +2505,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/tofubreadslice.rsi @@ -2520,7 +2520,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/tofuburger.rsi @@ -2538,7 +2538,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/kabob.rsi @@ -2553,7 +2553,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 24 - type: Sprite sprite: Objects/Consumable/Food/tofurkey.rsi @@ -2568,7 +2568,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Consumable/Food/tomatomeat.rsi @@ -2585,7 +2585,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/tomatosoup.rsi @@ -2600,7 +2600,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 4 - type: Sprite sprite: Objects/Consumable/Food/twobread.rsi @@ -2617,7 +2617,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/validsalad.rsi @@ -2632,7 +2632,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/vegetablepizzaslice.rsi @@ -2649,7 +2649,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/vegetablesoup.rsi @@ -2666,7 +2666,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/waffles.rsi @@ -2681,7 +2681,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/watermelonslice.rsi @@ -2698,7 +2698,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 12 - type: Sprite sprite: Objects/Consumable/Food/wingfangchu.rsi @@ -2715,7 +2715,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 2 - type: Sprite sprite: Objects/Consumable/Food/wishsoup.rsi @@ -2730,7 +2730,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 16 - type: Sprite sprite: Objects/Consumable/Food/xburger.rsi @@ -2748,7 +2748,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/xenobreadslice.rsi @@ -2763,7 +2763,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/xenomeat.rsi @@ -2780,7 +2780,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/xenomeatpie.rsi @@ -2797,7 +2797,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Bleach + - ReagentId: Bleach Quantity: 15 - type: Sprite sprite: Objects/Consumable/Food/stew.rsi @@ -2815,7 +2815,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 20 - type: Sprite sprite: Objects/Consumable/Food/milkape.rsi @@ -2831,7 +2831,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 9999999999 - type: Sprite sprite: Objects/Consumable/Food/memoryleek.rsi @@ -2850,7 +2850,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/apple_cake.rsi @@ -2868,7 +2868,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/bananabread.rsi @@ -2886,7 +2886,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/birthdaycake.rsi @@ -2904,7 +2904,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/braincake.rsi @@ -2922,7 +2922,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/bread.rsi @@ -2940,7 +2940,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/carrotcake.rsi @@ -2958,7 +2958,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/cheesecake.rsi @@ -2976,7 +2976,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/apple_cake.rsi @@ -2994,7 +2994,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/chocolatecake.rsi @@ -3012,7 +3012,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/creamcheesebread.rsi @@ -3030,7 +3030,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/lemoncake.rsi @@ -3048,7 +3048,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/limecake.rsi @@ -3066,7 +3066,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/meatbread.rsi @@ -3085,7 +3085,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 48 - type: Sprite sprite: Objects/Consumable/Food/meatpizza.rsi @@ -3104,7 +3104,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 48 - type: Sprite sprite: Objects/Consumable/Food/mushroompizza.rsi @@ -3122,7 +3122,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/orangecake.rsi @@ -3141,7 +3141,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 48 - type: Sprite sprite: Objects/Consumable/Food/pizzamargherita.rsi @@ -3159,7 +3159,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/plaincake.rsi @@ -3177,7 +3177,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/pumpkinpie.rsi @@ -3198,7 +3198,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/tofubread.rsi @@ -3217,7 +3217,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 48 - type: Sprite sprite: Objects/Consumable/Food/vegetablepizza.rsi @@ -3235,7 +3235,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 40 - type: Sprite sprite: Objects/Consumable/Food/xenomeatbread.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/kitchen_reagent_containers.yml b/Resources/Prototypes/Entities/Objects/Consumable/kitchen_reagent_containers.yml index ac3e0b1beb..3eb459f1ab 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/kitchen_reagent_containers.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/kitchen_reagent_containers.yml @@ -8,7 +8,7 @@ maxVol: 50 contents: reagents: - - ReagentId: chem.Flour + - ReagentId: Flour Quantity: 50 - type: SolutionTransfer transferAmount: 5 diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 92b94dcb24..396cdb1a6f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -17,7 +17,7 @@ caps: Refillable, Drainable contents: reagents: - - ReagentId: chem.Water + - ReagentId: Water Quantity: 100 - type: ItemCooldown - type: Spray diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/produce.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/produce.yml index 0ed575ed18..a461c327ce 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/produce.yml @@ -24,9 +24,9 @@ caps: None contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 5 - - ReagentId: chem.Flour + - ReagentId: Flour Quantity: 5 - type: Produce seed: wheat @@ -43,9 +43,9 @@ caps: None contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 5 - - ReagentId: chem.Glucose + - ReagentId: Glucose Quantity: 5 - type: Produce seed: sugarcane @@ -76,7 +76,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/banana.rsi @@ -85,7 +85,7 @@ - type: Juiceable result: reagents: - - ReagentId: chem.BananaJuice + - ReagentId: BananaJuice Quantity: 10 - type: entity @@ -98,7 +98,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/carrot.rsi @@ -107,7 +107,7 @@ - type: Juiceable result: reagents: - - ReagentId: chem.CarrotJuice + - ReagentId: CarrotJuice Quantity: 10 - type: entity @@ -120,7 +120,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/lemon.rsi @@ -129,7 +129,7 @@ - type: Juiceable result: reagents: - - ReagentId: chem.LimeJuice + - ReagentId: LimeJuice Quantity: 10 - type: entity @@ -142,7 +142,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/potato.rsi @@ -151,7 +151,7 @@ - type: Juiceable result: reagents: - - ReagentId: chem.PotatoJuice + - ReagentId: PotatoJuice Quantity: 10 - type: entity @@ -164,7 +164,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/tomato.rsi @@ -173,7 +173,7 @@ - type: Juiceable result: reagents: - - ReagentId: chem.TomatoJuice + - ReagentId: TomatoJuice Quantity: 10 - type: entity @@ -186,7 +186,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/eggplant.rsi @@ -203,7 +203,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/apple.rsi @@ -212,7 +212,7 @@ - type: Juiceable result: reagents: - - ReagentId: chem.AppleJuice + - ReagentId: AppleJuice Quantity: 10 - type: entity @@ -226,7 +226,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/corn.rsi @@ -243,7 +243,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 6 - type: Sprite sprite: Objects/Specific/Hydroponics/chanterelle.rsi @@ -266,7 +266,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.THCOil + - ReagentId: THCOil Quantity: 5 - type: entity @@ -282,7 +282,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.THC + - ReagentId: THC Quantity: 2 - type: Sprite sprite: Objects/Specific/Hydroponics/tobacco.rsi @@ -301,7 +301,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.THC + - ReagentId: THC Quantity: 10 - type: Sprite sprite: Objects/Misc/reageant_fillings.rsi @@ -335,7 +335,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nicotine + - ReagentId: Nicotine Quantity: 2 - type: Sprite sprite: Objects/Specific/Hydroponics/tobacco.rsi @@ -354,7 +354,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nicotine + - ReagentId: Nicotine Quantity: 10 - type: Sprite sprite: Objects/Misc/reageant_fillings.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/sprays.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/sprays.yml index f1b6d51c3c..02a79ceb62 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/sprays.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/sprays.yml @@ -13,7 +13,7 @@ caps: Drainable contents: reagents: - - ReagentId: chem.PlantBGone + - ReagentId: PlantBGone Quantity: 100 - type: Item sprite: Objects/Tools/Hydroponics/sprays.rsi @@ -34,7 +34,7 @@ caps: Drainable contents: reagents: - - ReagentId: chem.WeedKiller + - ReagentId: WeedKiller Quantity: 50 - type: Spillable - type: ItemCooldown @@ -57,7 +57,7 @@ caps: Drainable contents: reagents: - - ReagentId: chem.PestKiller + - ReagentId: PestKiller Quantity: 50 - type: Item sprite: Objects/Tools/Hydroponics/sprays.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/janitor.yml index 3870deaadf..298fd2f725 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/janitor.yml @@ -35,7 +35,7 @@ maxVol: 500 contents: reagents: - - ReagentId: chem.Water + - ReagentId: Water Quantity: 500 - type: Physics @@ -235,7 +235,7 @@ maxVol: 100 contents: reagents: - - ReagentId: chem.Water + - ReagentId: Water Quantity: 100 - type: entity @@ -249,7 +249,7 @@ maxVol: 100 contents: reagents: - - ReagentId: chem.SpaceCleaner + - ReagentId: SpaceCleaner Quantity: 100 diff --git a/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml b/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml index 2bf9b61235..ab1dbac063 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml @@ -7,7 +7,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 maxVol: 11 # needs room for water caps: Refillable @@ -20,7 +20,7 @@ ingestion: true injection: true reagents: - - chem.Water + - Water - type: Rehydratable target: MonkeyMob_Content - type: CollisionWake @@ -48,7 +48,7 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 10 maxVol: 11 # needs room for water caps: Refillable @@ -59,7 +59,7 @@ ingestion: true injection: true reagents: - - chem.Water + - Water - type: Rehydratable target: CarpMob_Content - type: CollisionWake diff --git a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml index b4ff1383e0..f0cf21d277 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cowtools.yml @@ -119,7 +119,7 @@ caps: Refillable contents: reagents: - - ReagentId: chem.WeldingFuel + - ReagentId: WeldingFuel Quantity: 100 - type: Welder weldSoundCollection: Welder diff --git a/Resources/Prototypes/Entities/Objects/Tools/welders.yml b/Resources/Prototypes/Entities/Objects/Tools/welders.yml index 3827ccd87a..c358189902 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/welders.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/welders.yml @@ -23,7 +23,7 @@ caps: Refillable contents: reagents: - - ReagentId: chem.WeldingFuel + - ReagentId: WeldingFuel Quantity: 100 - type: Welder weldSoundCollection: Welder @@ -47,7 +47,7 @@ caps: Refillable contents: reagents: - - ReagentId: chem.WeldingFuel + - ReagentId: WeldingFuel Quantity: 1000 - type: PointLight enabled: false @@ -69,7 +69,7 @@ caps: Refillable contents: reagents: - - ReagentId: chem.WeldingFuel + - ReagentId: WeldingFuel Quantity: 25 - type: PointLight enabled: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 4656b25e95..8237a11655 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -282,5 +282,5 @@ - type: SolutionContainer contents: reagents: - - ReagentId: chem.Nutriment + - ReagentId: Nutriment Quantity: 8 diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 54c7ecd2fe..6ec9bf1102 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -14,11 +14,11 @@ idealLight: 8 nutrientConsumption: 0.15 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 20 PotencyDivisor: 20 - chem.Flour: + Flour: Min: 5 Max: 20 PotencyDivisor: 20 @@ -40,7 +40,7 @@ waterConsumption: 6 idealHeat: 298 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 20 PotencyDivisor: 20 @@ -61,7 +61,7 @@ growthStages: 3 waterConsumption: 6 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 20 PotencyDivisor: 20 @@ -82,7 +82,7 @@ potency: 10 idealLight: 8 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 20 PotencyDivisor: 20 @@ -103,7 +103,7 @@ growthStages: 4 waterConsumption: 6 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 10 PotencyDivisor: 10 @@ -125,7 +125,7 @@ growthStages: 3 idealHeat: 298 chemicals: - chem.Sugar: + Sugar: Min: 4 Max: 5 PotencyDivisor: 5 @@ -170,7 +170,7 @@ juicy: true splatPrototype: PuddleSplatter chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 10 PotencyDivisor: 10 @@ -192,7 +192,7 @@ idealLight: 9 idealHeat: 298 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 10 PotencyDivisor: 10 @@ -213,7 +213,7 @@ potency: 10 idealLight: 6 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 10 PotencyDivisor: 10 @@ -236,7 +236,7 @@ waterConsumption: 6 idealHeat: 298 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 10 PotencyDivisor: 10 @@ -260,7 +260,7 @@ waterConsumption: 6 idealHeat: 288 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 25 PotencyDivisor: 25 @@ -282,7 +282,7 @@ idealLight: 9 idealHeat: 298 chemicals: - chem.Nutriment: + Nutriment: Min: 1 Max: 10 PotencyDivisor: 10 @@ -305,7 +305,7 @@ idealLight: 9 idealHeat: 298 chemicals: - chem.THC: + THC: Min: 1 Max: 10 PotencyDivisor: 10 @@ -328,7 +328,7 @@ idealLight: 9 idealHeat: 298 chemicals: - chem.Nicotine: + Nicotine: Min: 1 Max: 10 PotencyDivisor: 10 diff --git a/Resources/Prototypes/Reagents/botany.yml b/Resources/Prototypes/Reagents/botany.yml index 720991af9d..43ab432f92 100644 --- a/Resources/Prototypes/Reagents/botany.yml +++ b/Resources/Prototypes/Reagents/botany.yml @@ -1,5 +1,5 @@ - type: reagent - id: chem.EZNutrient + id: EZNutrient name: EZ nutrient desc: Give your plants some of those EZ nutrients! color: "#664330" @@ -9,7 +9,7 @@ amount: 1 - type: reagent - id: chem.Left4Zed + id: Left4Zed name: left-4-zed desc: A cocktail of mutagenic compounds, which cause plant life to become highly unstable. color: "#5b406c" @@ -24,7 +24,7 @@ amount: 0.2 - type: reagent - id: chem.PestKiller + id: PestKiller name: pest killer desc: A mixture that targets pests. color: "#9e9886" @@ -36,7 +36,7 @@ amount: -6 - type: reagent - id: chem.PlantBGone + id: PlantBGone name: plant-B-gone desc: A harmful toxic mixture to kill plantlife. Do not ingest! color: "#49002E" @@ -52,7 +52,7 @@ amount: 0.1 - type: reagent - id: chem.RobustHarvest + id: RobustHarvest name: robust harvest desc: Plant-enhancing hormones, good for increasing potency. color: "#3e901c" @@ -70,7 +70,7 @@ - !type:RobustHarvest {} - type: reagent - id: chem.WeedKiller + id: WeedKiller name: weed killer desc: A mixture that targets weeds. color: "#968395" @@ -82,7 +82,7 @@ amount: -6 - type: reagent - id: chem.THC + id: THC name: THC desc: The main psychoactive compound in cannabis. color: "#808080" @@ -94,7 +94,7 @@ amount: -1 - type: reagent - id: chem.Nicotine + id: Nicotine name: Nicotine desc: Dangerous and highly addictive. color: "#C0C0C0" diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 56b07fe3b1..fe188fb654 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -1,5 +1,5 @@ - type: reagent - id: chem.Ammonia + id: Ammonia name: ammonia desc: An effective fertilizer which is better than what is available to the botanist initially, though it isn't as powerful as Diethylamine physicalDesc: pungent @@ -13,7 +13,7 @@ amount: 0.5 - type: reagent - id: chem.Diethylamine + id: Diethylamine name: diethylamine desc: A very potent fertilizer. physicalDesc: strong-smelling @@ -35,7 +35,7 @@ - !type:Diethylamine {} - type: reagent - id: chem.Ethanol + id: Ethanol name: ethanol desc: A simple alcohol, makes you drunk if consumed, flammable. physicalDesc: strong-smelling @@ -47,7 +47,7 @@ temperatureMultiplier: 1.35 - type: reagent - id: chem.FoamingAgent + id: FoamingAgent name: foaming agent desc: Makes foam such as that's required in metal foam grenades. physicalDesc: foamy @@ -56,7 +56,7 @@ meltingPoint: 7.4 # I made this up - type: reagent - id: chem.Glucose + id: Glucose name: glucose desc: A simple sugar found in many foods. physicalDesc: syrupy @@ -72,7 +72,7 @@ amount: 2 - type: reagent - id: chem.Ice + id: Ice name: ice desc: Frozen water. physicalDesc: frosty @@ -84,7 +84,7 @@ amount: 1 - type: reagent - id: chem.Nutriment + id: Nutriment name: nutriment desc: All the vitamins, minerals, and carbohydrates the body needs in pure form. physicalDesc: opaque @@ -99,7 +99,7 @@ amount: 0.5 - type: reagent - id: chem.Plasma + id: Plasma name: plasma desc: Funky, space-magic pixie dust. You probably shouldn't eat this, but we both know you will anyways. physicalDesc: gaseous @@ -111,7 +111,7 @@ temperatureMultiplier: 1.5 - type: reagent - id: chem.PolytrinicAcid + id: PolytrinicAcid name: polytrinic acid desc: An extremely corrosive chemical substance. The slightest touch of it will melt off most masks and headgear, and it deals extreme damage to anyone who comes directly into contact with it. physicalDesc: strong-smelling @@ -127,7 +127,7 @@ amount: -8 - type: reagent - id: chem.FluorosulfuricAcid + id: FluorosulfuricAcid name: fluorosulfuric acid desc: An extremely corrosive chemical substance. physicalDesc: strong-smelling @@ -136,7 +136,7 @@ meltingPoint: -87 - type: reagent - id: chem.TableSalt + id: TableSalt name: table salt desc: Commonly known as salt, Sodium Chloride is often used to season food or kill borers instantly. physicalDesc: grainy @@ -158,7 +158,7 @@ amount: -2 - type: reagent - id: chem.Thermite + id: Thermite name: thermite desc: A mixture that becomes extremely hot when ignited, and which can burn straight through walls when applied and ignited. It'll slowly inflict burn damage to anybody dumb enough to ingest it, but can't be ignited inside inside said dumb person. physicalDesc: grainy @@ -170,7 +170,7 @@ temperatureMultiplier: 1.35 - type: reagent - id: chem.Toxin + id: Toxin name: toxin desc: A Toxic chemical. color: "#cf3600" @@ -180,7 +180,7 @@ amount: 10 - type: reagent - id: chem.Sugar + id: Sugar name: sugar desc: Sweet. color: "#ffffff" @@ -194,7 +194,7 @@ amount: 2 - type: reagent - id: chem.SulfuricAcid + id: SulfuricAcid name: sulfuric acid desc: A highly corrosive, oily, colorless liquid. physicalDesc: oily @@ -210,7 +210,7 @@ amount: -4 - type: reagent - id: chem.UnstableMutagen + id: UnstableMutagen name: unstable mutagen desc: Causes mutations when injected into living people or plants. High doses may be lethal, especially in humans. physicalDesc: glowing @@ -223,7 +223,7 @@ amount: 1 - type: reagent - id: chem.Water + id: Water name: water desc: A colorless liquid that humans need in order to survive. physicalDesc: translucent @@ -241,7 +241,7 @@ amount: 1 - type: reagent - id: chem.WeldingFuel + id: WeldingFuel name: welding fuel desc: Used by welders to weld. physicalDesc: oily @@ -252,7 +252,7 @@ - !type:FlammableTileReaction {} - type: reagent - id: chem.Fluorosurfactant + id: Fluorosurfactant name: fluorosurfactant desc: A perfluoronated sulfonic acid that forms a foam when mixed with water. physicalDesc: opaque diff --git a/Resources/Prototypes/Reagents/cleaning.yml b/Resources/Prototypes/Reagents/cleaning.yml index f789934922..c2879d0d2a 100644 --- a/Resources/Prototypes/Reagents/cleaning.yml +++ b/Resources/Prototypes/Reagents/cleaning.yml @@ -1,5 +1,5 @@ - type: reagent - id: chem.Bleach + id: Bleach name: bleach desc: Heavy duty cleaner that can clean tiles the same as Space Cleaner and also decontaminate clothes. Extremely toxic when ingested. physicalDesc: strong-smelling @@ -8,7 +8,7 @@ meltingPoint: -5.0 - type: reagent - id: chem.SpaceCleaner + id: SpaceCleaner name: space cleaner desc: This is able to clean almost all surfaces of almost anything that may dirty them. The janitor is likely to appreciate refills. physicalDesc: lemony fresh @@ -19,7 +19,7 @@ - !type:CleanTileReaction {} - type: reagent - id: chem.SpaceLube + id: SpaceLube name: space lube desc: Space Lube is a high performance lubricant intended for maintenance of extremely complex mechanical equipment (and certainly not used to make people slip). physicalDesc: shiny diff --git a/Resources/Prototypes/Reagents/drinks.yml b/Resources/Prototypes/Reagents/drinks.yml index f11b3ec508..e9a57d2537 100644 --- a/Resources/Prototypes/Reagents/drinks.yml +++ b/Resources/Prototypes/Reagents/drinks.yml @@ -1,5 +1,5 @@ - type: reagent - id: chem.Absinthe + id: Absinthe name: absinthe desc: One sip of this and you just know you're gonna have a good time. spritePath: absintheglass.rsi @@ -7,7 +7,7 @@ physicalDesc: strong-smelling - type: reagent - id: chem.Whiskey + id: Whiskey name: whiskey desc: An alcoholic beverage made from fermented grain mash physicalDesc: strong-smelling @@ -15,7 +15,7 @@ spritePath: whiskeyglass.rsi - type: reagent - id: chem.Ale + id: Ale name: ale desc: A type of beer brewed using a warm fermentation method, resulting in a sweet, full-bodied and fruity taste. physicalDesc: bubbly @@ -23,7 +23,7 @@ spritePath: aleglass.rsi - type: reagent - id: chem.Wine + id: Wine name: wine desc: An alcoholic drink made from fermented grapes physicalDesc: translucent @@ -31,7 +31,7 @@ spritePath: wineglass.rsi - type: reagent - id: chem.Beer + id: Beer name: beer desc: A cold pint of pale lager. physicalDesc: bubbly @@ -44,7 +44,7 @@ amount: 0.7 - type: reagent - id: chem.Vodka + id: Vodka name: vodka desc: The glass contain wodka. Хуета. physicalDesc: strong-smelling @@ -52,7 +52,7 @@ spritePath: ginvodkaglass.rsi - type: reagent - id: chem.Gin + id: Gin name: gin desc: A crystal clear glass of Griffeater gin. physicalDesc: strong-smelling @@ -60,7 +60,7 @@ spritePath: ginvodkaglass.rsi - type: reagent - id: chem.Rum + id: Rum name: rum desc: Popular with the sailors. Not very popular with anyone else. physicalDesc: strong-smelling @@ -68,21 +68,21 @@ spritePath: rumglass.rsi - type: reagent - id: chem.Moonshine + id: Moonshine name: moonshine desc: Artisanal homemade liquor. What could go wrong? physicalDesc: strong-smelling color: "#d1d7d155" - type: reagent - id: chem.Tequila + id: Tequila name: tequila desc: This stuff will get you fucked up. physicalDesc: strong-smelling color: "#d7d1d155" - type: reagent - id: chem.Kahlua + id: Kahlua name: kahlua desc: A widely known, Mexican coffee-flavoured liqueur. In production since 1936! physicalDesc: cloudy @@ -90,7 +90,7 @@ spritePath: kahluaglass.rsi - type: reagent - id: chem.Cognac + id: Cognac name: cognac desc: A sweet and strongly alcoholic drink, twice distilled and left to mature for several years. Classy as fornication. physicalDesc: strong-smelling @@ -98,7 +98,7 @@ spritePath: cognacglass.rsi - type: reagent - id: chem.ManlyDorf + id: ManlyDorf name: manly dorf desc: A dwarfy concoction made from ale and beer. Intended for stout dwarves only. physicalDesc: bubbly @@ -106,7 +106,7 @@ spritePath: manlydorfglass.rsi - type: reagent - id: chem.CubaLibre + id: CubaLibre name: cuba libre desc: A classic mix of rum and cola. physicalDesc: bubbly @@ -114,7 +114,7 @@ spritePath: cubalibreglass.rsi - type: reagent - id: chem.IrishCarBomb + id: IrishCarBomb name: irish car bomb desc: A troubling mixture of irish cream and ale. physicalDesc: bubbly @@ -122,7 +122,7 @@ spritePath: irishcarbomb.rsi - type: reagent - id: chem.IrishCoffee + id: IrishCoffee name: irish coffee desc: Coffee served with irish cream. Regular cream just isn't the same! physicalDesc: cloudy @@ -130,7 +130,7 @@ spritePath: irishcoffeeglass.rsi - type: reagent - id: chem.IrishCream + id: IrishCream name: irish cream desc: Whiskey-imbued cream. What else could you expect from the Irish. physicalDesc: creamy @@ -138,7 +138,7 @@ spritePath: irishcreamglass.rsi - type: reagent - id: chem.B52 + id: B52 name: b-52 desc: Coffee, irish cream, and cognac. You will get bombed. physicalDesc: bubbly @@ -146,7 +146,7 @@ spritePath: b52glass.rsi - type: reagent - id: chem.AtomicBomb + id: AtomicBomb name: atomic bomb desc: Nuclear proliferation never tasted so good. physicalDesc: cloudy @@ -154,7 +154,7 @@ spritePath: atomicbombglass.rsi - type: reagent - id: chem.WhiskeyCola + id: WhiskeyCola name: whiskey cola desc: An innocent-looking mixture of cola and whiskey. Delicious. physicalDesc: bubbly @@ -162,7 +162,7 @@ spritePath: whiskeycolaglass.rsi - type: reagent - id: chem.SyndicateBomb + id: SyndicateBomb name: syndicate bomb desc: Somebody set us up the bomb! physicalDesc: opaque @@ -170,7 +170,7 @@ spritePath: syndicatebomb.rsi - type: reagent - id: chem.Antifreeze + id: Antifreeze name: antifreeze desc: The ultimate refreshment. physicalDesc: translucent @@ -178,7 +178,7 @@ spritePath: antifreeze.rsi - type: reagent - id: chem.Cola + id: Cola name: cola desc: A sweet, carbonated soft drink. Caffeine free. physicalDesc: fizzy @@ -195,7 +195,7 @@ amount: 0.1 - type: reagent - id: chem.Coffee + id: Coffee name: coffee desc: A drink made from brewed coffee beans. Contains a moderate amount of caffeine. physicalDesc: aromatic @@ -205,7 +205,7 @@ rate: 1 - type: reagent - id: chem.Tea + id: Tea name: tea desc: A drink made by boiling leaves of the tea tree, Camellia sinensis. physicalDesc: aromatic @@ -215,7 +215,7 @@ rate: 1 - type: reagent - id: chem.Cream + id: Cream name: cream desc: The fatty, still liquid part of milk. Why don't you mix this with sum scotch, eh? physicalDesc: creamy @@ -225,7 +225,7 @@ rate: 1 - type: reagent - id: chem.Milk + id: Milk name: milk desc: An opaque white liquid produced by the mammary glands of mammals. physicalDesc: opaque @@ -240,7 +240,7 @@ amount: 0.9 - type: reagent - id: chem.SpoiledMilk + id: SpoiledMilk name: spoiled milk desc: This milk has gone rancid. physicalDesc: putrid @@ -250,7 +250,7 @@ rate: 1 - type: reagent - id: chem.CreamyDelight + id: CreamyDelight name: creamy delight desc: A combination of cream, wine and moonshine. Why would you do this? physicalDesc: foul @@ -260,7 +260,7 @@ rate: 1 - type: reagent - id: chem.Lean + id: Lean name: lean desc: Turn up for days. physicalDesc: bubbly @@ -270,7 +270,7 @@ rate: 1 - type: reagent - id: chem.LeanShine + id: LeanShine name: leanshine desc: Lean mixed with moonshine. Turn up for months. physicalDesc: bubbly @@ -282,7 +282,7 @@ #Juices - type: reagent - id: chem.AppleJuice + id: AppleJuice name: apple juice desc: It's a little piece of Eden. physicalDesc: crisp @@ -292,7 +292,7 @@ rate: 1 - type: reagent - id: chem.BerryJuice + id: BerryJuice name: berry juice desc: A delicious blend of several different kinds of berries. physicalDesc: sweet @@ -302,7 +302,7 @@ rate: 1 - type: reagent - id: chem.BananaJuice + id: BananaJuice name: banana juice desc: The raw essence of a banana. HONK. physicalDesc: crisp @@ -323,7 +323,7 @@ # data++ - type: reagent - id: chem.CarrotJuice + id: CarrotJuice name: carrot juice desc: It's like a carrot, but less crunchy. physicalDesc: crisp @@ -333,7 +333,7 @@ rate: 1 - type: reagent - id: chem.LimeJuice + id: LimeJuice name: lime juice desc: The sweet-sour juice of limes. physicalDesc: citric @@ -343,7 +343,7 @@ rate: 1 - type: reagent - id: chem.LemonJuice + id: LemonJuice name: lemon juice desc: This juice is VERY sour. physicalDesc: citric @@ -353,7 +353,7 @@ rate: 1 - type: reagent - id: chem.GrapeJuice + id: GrapeJuice name: grape juice desc: Freshly squeezed juice from red grapes. Quite sweet. physicalDesc: crisp @@ -372,7 +372,7 @@ # M.adjustToxLoss(-REM) - type: reagent - id: chem.OrangeJuice + id: OrangeJuice name: orange juice desc: Both delicious AND rich in Vitamin C. What more do you need? physicalDesc: citric @@ -382,7 +382,7 @@ rate: 1 - type: reagent - id: chem.TomatoJuice + id: TomatoJuice name: tomato juice desc: Tomatoes made into juice. What a waste of good tomatoes, huh? physicalDesc: saucey @@ -399,7 +399,7 @@ # M.adjustToxLoss(1) - type: reagent - id: chem.PoisonBerryJuice + id: PoisonBerryJuice name: poison berry juice desc: A surprisingly tasty juice blended from various kinds of very deadly and toxic berries. physicalDesc: aromatic #maybe should be 'sickly'? @@ -409,7 +409,7 @@ rate: 1 - type: reagent - id: chem.WatermelonJuice + id: WatermelonJuice name: water melon juice desc: The delicious juice of a watermelon. physicalDesc: sweet @@ -419,7 +419,7 @@ rate: 1 - type: reagent - id: chem.PotatoJuice + id: PotatoJuice name: potato juice desc: Juice of the potato. Bleh. physicalDesc: starchy diff --git a/Resources/Prototypes/Reagents/elements.yml b/Resources/Prototypes/Reagents/elements.yml index 2011cd122f..d18dd47685 100644 --- a/Resources/Prototypes/Reagents/elements.yml +++ b/Resources/Prototypes/Reagents/elements.yml @@ -1,5 +1,5 @@ - type: reagent - id: chem.Aluminium # We use real words here. + id: Aluminium # We use real words here. name: aluminium desc: A silver, soft, non-magnetic, and ductile metal. physicalDesc: metallic @@ -8,7 +8,7 @@ meltingPoint: 660.0 - type: reagent - id: chem.Carbon + id: Carbon name: carbon desc: A black, crystalline solid. physicalDesc: crystalline @@ -17,7 +17,7 @@ meltingPoint: 3550.0 - type: reagent - id: chem.Chlorine + id: Chlorine name: chlorine desc: A yellow-green gas which is toxic to humans. physicalDesc: gaseous @@ -35,7 +35,7 @@ amount: -1 - type: reagent - id: chem.Copper + id: Copper name: copper desc: A soft, malleable, and ductile metal with very high thermal and electrical conductivity. physicalDesc: metallic @@ -44,7 +44,7 @@ meltingPoint: 1083.0 - type: reagent - id: chem.Fluorine + id: Fluorine name: fluorine desc: A highly toxic pale yellow gas. Extremely reactive. physicalDesc: gaseous @@ -62,7 +62,7 @@ amount: -2 - type: reagent - id: chem.Hydrogen + id: Hydrogen name: hydrogen desc: A light, flammable gas. physicalDesc: gaseous @@ -71,7 +71,7 @@ meltingPoint: -259.2 - type: reagent - id: chem.Iron + id: Iron name: iron desc: A silvery-grey metal which forms iron oxides (rust) with contact with air. Commonly alloyed with other elements to create alloys such as steel. physicalDesc: metallic @@ -80,7 +80,7 @@ meltingPoint: 1538.0 - type: reagent - id: chem.Lithium + id: Lithium name: lithium desc: A soft, silvery-white alkali metal. It is highly reactive, and ignites if it makes contact with water. physicalDesc: shiny @@ -89,7 +89,7 @@ boilingPoint: 1330.0 - type: reagent - id: chem.Mercury + id: Mercury name: mercury desc: A silver metal which is liquid at room temperature. It is highly toxic to humans. physicalDesc: shiny @@ -98,7 +98,7 @@ boilingPoint: 356.73 - type: reagent - id: chem.Nitrogen + id: Nitrogen name: nitrogen desc: A colorless, odorless unreactive gas. Highly stable. physicalDesc: gaseous @@ -107,7 +107,7 @@ meltingPoint: -210.0 - type: reagent - id: chem.Oxygen + id: Oxygen name: oxygen desc: An oxidizing, colorless gas. physicalDesc: gaseous @@ -116,7 +116,7 @@ meltingPoint: -218.4 - type: reagent - id: chem.Potassium + id: Potassium name: potassium desc: A soft, shiny grey metal. Even more reactive than lithium. physicalDesc: shiny @@ -125,7 +125,7 @@ boilingPoint: 759.0 - type: reagent - id: chem.Phosphorus + id: Phosphorus name: phosphorus desc: A reactive metal used in pyrotechnics and weapons. physicalDesc: powdery @@ -141,7 +141,7 @@ amount: -2 - type: reagent - id: chem.Radium + id: Radium name: radium desc: A radioactive metal, silvery-white in it's pure form. It glows due to it's radioactivity and is highly toxic. physicalDesc: glowing @@ -161,7 +161,7 @@ amount: 0.1 - type: reagent - id: chem.Silicon + id: Silicon name: silicon desc: A hard and brittle crystalline solid with a blue-grey color. physicalDesc: crystalline @@ -170,7 +170,7 @@ meltingPoint: 1414.0 - type: reagent - id: chem.Sulfur + id: Sulfur name: sulfur desc: A yellow, crystalline solid. physicalDesc: powdery @@ -179,7 +179,7 @@ meltingPoint: 120.0 - type: reagent - id: chem.Sodium + id: Sodium name: sodium desc: A silvery-white alkali metal. Highly reactive in it's pure form. physicalDesc: metallic @@ -188,7 +188,7 @@ boilingPoint: 883.0 - type: reagent - id: chem.Uranium + id: Uranium name: uranium desc: A grey metallic chemical element in the actinide series, weakly radioactive. physicalDesc: metallic diff --git a/Resources/Prototypes/Reagents/food_reagents.yml b/Resources/Prototypes/Reagents/food_reagents.yml index e1ff042454..f126f4a0c1 100644 --- a/Resources/Prototypes/Reagents/food_reagents.yml +++ b/Resources/Prototypes/Reagents/food_reagents.yml @@ -1,5 +1,5 @@ - type: reagent - id: chem.Flour + id: Flour name: flour desc: Used for baking. physicalDesc: powdery diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 1da32293e3..979f83558a 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -1,19 +1,19 @@ - type: reagent - id: chem.Alkycosine + id: Alkycosine name: alkycosine desc: Lessens the damage to neurological tissue. More effective at treating brain damage than alkysine and also a fairly effective painkiller as well. Caution is needed in its creation to avoid mixing bleach and the chlorine needed to make alkysine. physicalDesc: strong-smelling color: "#9e232b" - type: reagent - id: chem.Alkysine + id: Alkysine name: alkysine desc: Lessens the damage to neurological tissue, effective even after catastrophic injury. Used for treating brain damage and also a fairly effective painkiller. physicalDesc: oily color: "#ff8c00" - type: reagent - id: chem.Dylovene + id: Dylovene name: dylovene desc: A broad-spectrum anti-toxin, which treats toxin damage in the blood stream. Overdosing will cause vomiting, dizzyness and pain. physicalDesc: translucent @@ -25,21 +25,21 @@ amount: 1 - type: reagent - id: chem.Arithrazine + id: Arithrazine name: arithrazine desc: A slightly unstable medication used for the most extreme any serious case of radiation poisoning. Lowers radiation level at over twice the rate Hyronalin does and will heal toxin damage at the same time. Deals very minor brute damage to the patient over time, but the patient's body will typically out-regenerate it easily. physicalDesc: cloudy color: "#bd5902" - type: reagent - id: chem.Bicaridine + id: Bicaridine name: bicaridine desc: An analgesic which is highly effective at treating brute damage. It is useful for stabilizing people who have been severely beaten, as well as treating less life-threatening injuries. In the case of bleeding (internal or external), bicaridine will slow down the bleeding heavily. If the dosage exceeds the overdose limit, it'll stop it outright. physicalDesc: opaque color: "#ffaa00" - type: reagent - id: chem.Cryoxadone + id: Cryoxadone name: cryoxadone desc: Required for the proper function of cryogenics. Heals all standard types of damage very swiftly, but only works in temperatures under 170K (usually this means cryo cells). Can also slowly heal clone damage, such as caused by cloning or Slimes. physicalDesc: fizzy @@ -51,7 +51,7 @@ amount: 3 - type: reagent - id: chem.Clonexadone + id: Clonexadone name: clonexadone desc: Heals standard damage in the same as Cryoxadone, with the same temperature requirement. Significantly more effective than the former at treating cellular damage, although both can be used simultaneously. Best used in cryo cells. physicalDesc: bubbly @@ -63,189 +63,189 @@ amount: 5 - type: reagent - id: chem.Citalopram + id: Citalopram name: citalopram desc: Prevents hallucination slightly. physicalDesc: cloudy color: "#21693c" - type: reagent - id: chem.Dermaline + id: Dermaline name: dermaline desc: An advanced chemical that is more effective at treating burn damage than Kelotane. physicalDesc: translucent color: "#215263" - type: reagent - id: chem.Dexalin + id: Dexalin name: dexalin desc: Used for treating oxygen deprivation. In most cases where it is likely to be needed, the strength of Dexalin Plus will probably be more useful (Results in 1 unit instead of 2). physicalDesc: opaque color: "#0041a8" - type: reagent - id: chem.DexalinPlus + id: DexalinPlus name: dexalin plus desc: Used in treatment of extreme cases of oxygen deprivation. Even a single unit immediately counters all oxygen loss, which is hugely useful in many circumstances. Any dose beyond this will continue to counter oxygen loss until it is metabolized, essentially removing the need to breathe. physicalDesc: cloudy color: "#4da0bd" - type: reagent - id: chem.Ethylredoxrazine + id: Ethylredoxrazine name: ethylredoxrazine desc: Neutralises the effects of alcohol in the blood stream. Though it is commonly needed, it is rarely requested. physicalDesc: opaque color: "#2d5708" - type: reagent - id: chem.Hyperzine + id: Hyperzine name: hyperzine desc: A highly effective, long lasting muscle stimulant. It allows greater freedom of movement in bulky clothing although it has the side effect of causing some twitching. Dangerous in higher doses. physicalDesc: translucent color: "#17bd61" - type: reagent - id: chem.Hyronalin + id: Hyronalin name: hyronalin desc: A weak treatment for radiation damage. Considered to be useful mainly for genetic modification, where it reduces radiation levels, and thus the chance of genetic mutations. Largely outclassed by Arithrazine. physicalDesc: cloudy color: "#4cb580" - type: reagent - id: chem.Imidazoline + id: Imidazoline name: imidazoline desc: Effective in treating eye trauma. It heals damage caused by physical or chemical trauma, though it is ineffective in treating genetic defects in the eyes. physicalDesc: pungent color: "#f7ef00" - type: reagent - id: chem.Inacusiate + id: Inacusiate name: inacusiate desc: You only need 1u for Inacusiate to be effective. Cures deafness instantly. Useful after an explosion. physicalDesc: pungent color: "#c4c04b" - type: reagent - id: chem.Inaprovaline + id: Inaprovaline name: inaprovaline desc: Inaprovaline is a synaptic stimulant and cardiostimulant. Commonly used to stabilize patients- it stops oxygen loss when the patient is in critical health. It'll also slow down bleeding (internal or external) by half while in the body. Acts as a decent painkiller. physicalDesc: opaque color: "#731024" - type: reagent - id: chem.Kelotane + id: Kelotane name: kelotane desc: Treats burn damage and prevents infection. physicalDesc: strong-smelling color: "#bf3d19" - type: reagent - id: chem.Leporazine + id: Leporazine name: leporazine desc: This keeps a patient's body temperature stable. High doses can allow short periods of unprotected EVA, but prevents use of the cryogenics tubes. physicalDesc: pungent color: "#ff7db5" - type: reagent - id: chem.Methylin + id: Methylin name: methylin desc: An intelligence enhancer, also used in the treatment of attention deficit hyperactivity disorder. Also known as Ritalin. Allows monkeys (not diona nymphs) to understand human speech and improves their dexterity as long as they have some in their system. Causes toxin and brain damage in higher doses. physicalDesc: acrid color: "#a700c4" - type: reagent - id: chem.Oxycodone + id: Oxycodone name: oxycodone desc: A very effective painkiller, about 250% as strong as Tramadol. physicalDesc: acrid color: "#c4a300" - type: reagent - id: chem.Phalanximine + id: Phalanximine name: phalanximine desc: Used in the treatment of cancer, is as effective as Anti-Toxin. Causes moderate radiation and hair loss. physicalDesc: acrid color: "#c8ff75" - type: reagent - id: chem.Paroxetine + id: Paroxetine name: paroxetine desc: Prevents hallucination, but has a 10% chance of causing intense hallucinations. physicalDesc: acrid color: "#fffbad" - type: reagent - id: chem.Ryetalyn + id: Ryetalyn name: ryetalyn desc: You only need 1u for Ryetalin to work. Deactivates genetic defects and powers, restoring a patient to an ideal state. May be useful if genetics is unable to function properly. Deactivated effects return if the patient's genes are modified again. physicalDesc: cloudy color: "#532fd4" - type: reagent - id: chem.Spaceacillin + id: Spaceacillin name: spaceacillin desc: A theta-lactam antibiotic. A common and very useful medicine, effective against many diseases likely to be encountered in space. Slows progression of diseases. physicalDesc: opaque color: "#9942f5" - type: reagent - id: chem.Synaptizine + id: Synaptizine name: synaptizine desc: Toxic, but treats hallucinations, drowsiness & halves the duration of paralysis, stuns and knockdowns. It is metabolized very slowly. One unit is enough to treat hallucinations; two units is deadly. physicalDesc: pungent color: "#d49a2f" - type: reagent - id: chem.Tramadol + id: Tramadol name: tramadol desc: A simple, yet effective painkiller. Very effective for patients in shock. physicalDesc: strong-smelling color: "#2f6ed4" - type: reagent - id: chem.Tricordrazine + id: Tricordrazine name: tricordrazine desc: A wide-spectrum stimulant, originally derived from Cordrazine. Is capable of healing all four main damage types simultaneously, however it only heals at half the rate of conventional healing chemicals. Because of its low potency, it's best used as a supplement to other medicines. physicalDesc: opaque color: "#00e5ff" - type: reagent - id: chem.Vaccine + id: Vaccine name: vaccine desc: Introduces antigens to the body, allowing the immune system to produce enough antibodies to combat present or future infections. Is blank by default, vaccine carrying antigen is produced at a centrifuge. Each unit raises the associated antibody concentration by 20% so at most 5 units are needed to cure the strongest diseases. physicalDesc: translucent color: "#ffc9f6" - type: reagent - id: chem.Albuterol + id: Albuterol name: albuterol desc: A bronchodilator that relaxes muscles in the airways and increases air flow to the lungs. It'll remove mucus from your system as long as it's inside your body. Only useful to people with the Asthma disability. physicalDesc: cloudy color: "#00b89f" - type: reagent - id: chem.ChloralHydrate + id: ChloralHydrate name: chloral hydrate desc: A powerful sedative which causes death in doses upwards of 16.2 units. Sends the patient to sleep almost instantly. physicalDesc: acrid color: "#18c9b1" - type: reagent - id: chem.Creatine + id: Creatine name: creatine desc: A muscle-building drug that grants the user enormous strength, before their muscles seize and tear their own body to shreds. In practical terms, 1-25 units just causes toxin damage, and 26 units turns you into a hulk with all its associated benefits with the side effect of taking a little toxin damage over time. You'll remain as a hulk until it's all metabolized, at which point you'll take 200 brute damage and gib. With the correct administration, it can be the most potent drug there is, but even at the best of times it is best considered a double-edged sword. physicalDesc: cloudy color: "#a1000b" - type: reagent - id: chem.Cryptobiolin + id: Cryptobiolin name: cryptobiolin desc: Causes confusion and dizziness. This is essential to make Spaceacillin. physicalDesc: fizzy color: "#081a80" - type: reagent - id: chem.HeartbreakerToxin + id: HeartbreakerToxin name: heartbreaker toxin desc: A hallucinogenic compound that is illegal under space law. A synthetic drug derived from Mindbreaker toxin, it blocks some neurological signals to the respiratory system which causes choking. physicalDesc: strong-smelling @@ -255,28 +255,28 @@ amount: 10 - type: reagent - id: chem.Impedrezene + id: Impedrezene name: impedrezene desc: A narcotic that impedes one's ability by slowing down the higher brain cell functions. Causes massive brain damage. physicalDesc: acrid color: "#215263" - type: reagent - id: chem.Lexorin + id: Lexorin name: lexorin desc: Temporarily stops respiration and causes tissue damage. Large doses are fatal, and will cause people to pass out very quickly. Dexalin and Dexalin Plus will both remove it, however. physicalDesc: pungent color: "#6b0007" - type: reagent - id: chem.Lipozine + id: Lipozine name: lipozine desc: Causes weight loss upon consumption. physicalDesc: oily color: "#2690b5" - type: reagent - id: chem.MindbreakerToxin + id: MindbreakerToxin name: mindbreaker toxin desc: A potent hallucinogenic compound that is illegal under space law. Formerly known as LSD. physicalDesc: opaque @@ -286,28 +286,28 @@ amount: 10 - type: reagent - id: chem.Soporific + id: Soporific name: soporific (sleep-toxin) desc: A less powerful sedative that takes a while to work, intended to help insomniacs and patients that are too aggressive to be treated normally. Takes roughly 50 seconds to make the patient fall asleep. Is safe in large quantities. Can be counteracted with Anti-Toxin. physicalDesc: acrid color: "#215263" - type: reagent - id: chem.Sterilizine + id: Sterilizine name: sterilizine desc: Helps the patient when used during surgery, may also decontaminate objects and surfaces that bear pathogens. Is currently useless due to infections not being a thing. physicalDesc: strong-smelling color: "#7cad37" - type: reagent - id: chem.SpaceDrugs + id: SpaceDrugs name: space drugs desc: An illegal compound which induces a number of effects such as loss of balance and visual artefacts. physicalDesc: syrupy color: "#63806e" - type: reagent - id: chem.THCOil + id: THCOil name: THC oil desc: Pure THC oil, extracted from the leaves of the cannabis plant. Much stronger than in it's natural form and can be used to numb chronic pain in patients. physicalDesc: skunky diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 448e7a9520..eb7b54fbce 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -5,7 +5,7 @@ result: FoodCheeseburger time: 5 reagents: - chem.Flour: 5 + Flour: 5 solids: FoodMeat: 1 @@ -15,7 +15,7 @@ result: FoodClownBurger time: 5 reagents: - chem.Flour: 5 + Flour: 5 solids: ClothingMaskClown: 1 @@ -25,7 +25,7 @@ result: FoodTofuBurger time: 5 reagents: - chem.Flour: 15 + Flour: 15 solids: FoodTofu: 1 @@ -35,7 +35,7 @@ result: FoodXenoburger time: 5 reagents: - chem.Flour: 5 + Flour: 5 solids: FoodXenomeat: 1 @@ -61,7 +61,7 @@ result: FoodBread time: 15 reagents: - chem.Flour: 15 + Flour: 15 - type: microwaveMealRecipe id: RecipeSandwich @@ -106,7 +106,7 @@ result: FoodCreamCheeseBread time: 20 reagents: - chem.Flour: 15 + Flour: 15 solids: FoodCheeseWedge: 2 @@ -116,8 +116,8 @@ result: FoodBananaBread time: 25 reagents: - chem.Flour: 15 - chem.Milk: 5 + Flour: 15 + Milk: 5 solids: FoodEgg: 3 FoodBanana: 1 @@ -129,7 +129,7 @@ result: FoodMargheritaPizza time: 30 reagents: - chem.Flour: 10 + Flour: 10 solids: FoodCheeseWedge: 4 FoodTomato: 1 @@ -140,7 +140,7 @@ result: FoodMushroomPizza time: 25 reagents: - chem.Flour: 10 + Flour: 10 solids: FoodMushroom: 5 @@ -150,7 +150,7 @@ result: FoodMeatPizza time: 30 reagents: - chem.Flour: 10 + Flour: 10 solids: FoodMeat: 3 FoodCheeseWedge: 1 @@ -162,7 +162,7 @@ result: FoodVegetablePizza time: 30 reagents: - chem.Flour: 10 + Flour: 10 solids: FoodEggplant: 1 FoodCarrot: 1 @@ -176,7 +176,7 @@ result: FoodSpaghetti time: 1 reagents: - chem.Flour: 5 + Flour: 5 - type: microwaveMealRecipe id: RecipeBoiledSpaghetti @@ -184,7 +184,7 @@ result: FoodSpaghettiBoiled time: 5 reagents: - chem.Water: 5 + Water: 5 solids: FoodSpaghetti: 1 @@ -194,7 +194,7 @@ result: FoodPastaTomato time: 10 reagents: - chem.Water: 5 + Water: 5 solids: FoodSpaghetti: 1 FoodTomato: 2 @@ -205,7 +205,7 @@ result: FoodMeatballSpaghetti time: 10 reagents: - chem.Water: 5 + Water: 5 solids: FoodSpaghetti: 1 FoodMeatball: 2 @@ -292,7 +292,7 @@ result: FoodMeatballSoup time: 10 reagents: - chem.Water: 10 + Water: 10 solids: FoodMeatball: 1 FoodCarrot: 1 @@ -328,7 +328,7 @@ result: DisgustingSweptSoup time: 15 reagents: - chem.Cola: 5 + Cola: 5 solids: FoodMiloSoup: 1 @@ -346,7 +346,7 @@ name: candy corn recipe result: FoodCandyCorn time: 5 - solids: + solids: FoodCorn: 1 Sugarcane: 1 @@ -358,8 +358,8 @@ # time: 5 # reagents: # chem.Glucose: 5 -# solids: -# FoodCorn: 1 +# solids: +# FoodCorn: 1 - type: microwaveMealRecipe id: RecipePopcorn @@ -375,7 +375,7 @@ result: FoodBananaCreamPie time: 15 reagents: - chem.Flour: 10 + Flour: 10 solids: FoodBanana: 3 diff --git a/Resources/Prototypes/Recipes/Reactions/botany.yml b/Resources/Prototypes/Recipes/Reactions/botany.yml index 6a992f5f7e..0e95bd7ad9 100644 --- a/Resources/Prototypes/Recipes/Reactions/botany.yml +++ b/Resources/Prototypes/Recipes/Reactions/botany.yml @@ -1,43 +1,43 @@ - type: reaction - id: react.EZNutrient + id: EZNutrient reactants: - chem.Nitrogen: + Nitrogen: amount: 1 - chem.Phosphorus: + Phosphorus: amount: 1 - chem.Potassium: + Potassium: amount: 1 products: - chem.EZNutrient: 3 + EZNutrient: 3 - type: reaction - id: react.RobustHarvest + id: RobustHarvest reactants: - chem.EZNutrient: + EZNutrient: amount: 1 - chem.SulfuricAcid: + SulfuricAcid: amount: 1 catalyst: true products: - chem.RobustHarvest: 1 + RobustHarvest: 1 - type: reaction - id: react.Left4Zed + id: Left4Zed reactants: - chem.EZNutrient: + EZNutrient: amount: 1 - chem.Radium: + Radium: amount: 1 catalyst: true products: - chem.Left4Zed: 1 + Left4Zed: 1 - type: reaction - id: react.PlantBGone + id: PlantBGone reactants: - chem.Toxin: + Toxin: amount: 1 - chem.Water: + Water: amount: 4 products: - chem.PlantBGone: 5 + PlantBGone: 5 diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index f6f16984ad..90e450e361 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -1,65 +1,65 @@ - type: reaction - id: react.Ammonia + id: Ammonia reactants: - chem.Hydrogen: + Hydrogen: amount: 3 - chem.Nitrogen: + Nitrogen: amount: 1 products: - chem.Ammonia: 4 + Ammonia: 4 - type: reaction - id: react.Diethylamine + id: Diethylamine reactants: - chem.Ammonia: + Ammonia: amount: 1 - chem.Ethanol: + Ethanol: amount: 1 products: - chem.Diethylamine: 2 + Diethylamine: 2 - type: reaction - id: react.FoamingAgent + id: FoamingAgent reactants: - chem.Lithium: + Lithium: amount: 1 - chem.Hydrogen: + Hydrogen: amount: 1 products: - chem.FoamingAgent: 2 + FoamingAgent: 2 - type: reaction - id: react.PolytrinicAcid + id: PolytrinicAcid reactants: - chem.SulfuricAcid: + SulfuricAcid: amount: 1 - chem.Chlorine: + Chlorine: amount: 1 - chem.Potassium: + Potassium: amount: 1 products: - chem.PolytrinicAcid: 3 + PolytrinicAcid: 3 - type: reaction - id: react.FluorosulfuricAcid + id: FluorosulfuricAcid reactants: - chem.Fluorine: + Fluorine: amount: 1 - chem.Hydrogen: + Hydrogen: amount: 1 - chem.Potassium: + Potassium: amount: 1 - chem.SulfuricAcid: + SulfuricAcid: amount: 1 products: - chem.FluorosulfuricAcid: 4 + FluorosulfuricAcid: 4 - type: reaction - id: react.PotassiumExplosion + id: PotassiumExplosion reactants: - chem.Water: + Water: amount: 1 - chem.Potassium: + Potassium: amount: 1 effects: - !type:ExplosionReactionEffect @@ -72,13 +72,13 @@ maxScale: 30 #Explosion strength stops scaling at 30 potassium + 30 water - type: reaction - id: react.Smoke + id: Smoke reactants: - chem.Phosphorus: + Phosphorus: amount: 1 - chem.Potassium: + Potassium: amount: 1 - chem.Sugar: + Sugar: amount: 1 effects: - !type:SmokeAreaReactionEffect @@ -93,11 +93,11 @@ sound: /Audio/Effects/smoke.ogg - type: reaction - id: react.Foam + id: Foam reactants: - chem.Fluorosurfactant: + Fluorosurfactant: amount: 1 - chem.Water: + Water: amount: 1 effects: - !type:FoamAreaReactionEffect @@ -114,13 +114,13 @@ prototypeId: Foam - type: reaction - id: react.IronMetalFoam + id: IronMetalFoam reactants: - chem.Iron: + Iron: amount: 3 - chem.FoamingAgent: + FoamingAgent: amount: 1 - chem.FluorosulfuricAcid: + FluorosulfuricAcid: amount: 1 effects: - !type:FoamAreaReactionEffect @@ -137,13 +137,13 @@ prototypeId: IronMetalFoam - type: reaction - id: react.AluminiumMetalFoam + id: AluminiumMetalFoam reactants: - chem.Aluminium: + Aluminium: amount: 3 - chem.FoamingAgent: + FoamingAgent: amount: 1 - chem.FluorosulfuricAcid: + FluorosulfuricAcid: amount: 1 effects: - !type:FoamAreaReactionEffect @@ -160,57 +160,57 @@ prototypeId: AluminiumMetalFoam - type: reaction - id: react.TableSalt + id: TableSalt reactants: - chem.Chlorine: + Chlorine: amount: 1 - chem.Sodium: + Sodium: amount: 1 products: - chem.TableSalt: 2 + TableSalt: 2 - type: reaction - id: react.Thermite + id: Thermite reactants: - chem.Iron: + Iron: amount: 1 - chem.Aluminium: + Aluminium: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 products: - chem.Thermite: 3 + Thermite: 3 - type: reaction - id: react.UnstableMutagen + id: UnstableMutagen reactants: - chem.Radium: + Radium: amount: 1 - chem.Phosphorus: + Phosphorus: amount: 1 - chem.Chlorine: + Chlorine: amount: 1 products: - chem.UnstableMutagen: 3 + UnstableMutagen: 3 - type: reaction - id: react.Water + id: Water reactants: - chem.Hydrogen: + Hydrogen: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 products: - chem.Water: 2 + Water: 2 - type: reaction - id: react.Fluorosurfactant + id: Fluorosurfactant reactants: - chem.Carbon: + Carbon: amount: 2 - chem.Fluorine: + Fluorine: amount: 2 - chem.SulfuricAcid: + SulfuricAcid: amount: 1 products: - chem.Fluorosurfactant: 5 + Fluorosurfactant: 5 diff --git a/Resources/Prototypes/Recipes/Reactions/cleaning.yml b/Resources/Prototypes/Recipes/Reactions/cleaning.yml index 8b2257056f..a49d10acaf 100644 --- a/Resources/Prototypes/Recipes/Reactions/cleaning.yml +++ b/Resources/Prototypes/Recipes/Reactions/cleaning.yml @@ -1,33 +1,33 @@ - type: reaction - id: react.Bleach + id: Bleach reactants: - chem.TableSalt: + TableSalt: amount: 2 - chem.SpaceCleaner: + SpaceCleaner: amount: 2 - chem.Oxygen: + Oxygen: amount: 1 products: - chem.Bleach: 5 + Bleach: 5 - type: reaction - id: react.SpaceCleaner + id: SpaceCleaner reactants: - chem.Ammonia: + Ammonia: amount: 1 - chem.Water: + Water: amount: 1 products: - chem.SpaceCleaner: 2 + SpaceCleaner: 2 - type: reaction - id: react.SpaceLube + id: SpaceLube reactants: - chem.Water: + Water: amount: 1 - chem.Silicon: + Silicon: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 products: - chem.SpaceLube: 3 + SpaceLube: 3 diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index eed03ad522..e071f05d8c 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -1,137 +1,137 @@ - type: reaction - id: react.ManlyDorf + id: ManlyDorf reactants: - chem.Beer: + Beer: amount: 1 - chem.Ale: + Ale: amount: 2 products: - chem.ManlyDorf: 3 + ManlyDorf: 3 - type: reaction - id: react.CubaLibre + id: CubaLibre reactants: - chem.Cola: + Cola: amount: 1 - chem.Rum: + Rum: amount: 2 products: - chem.CubaLibre: 3 + CubaLibre: 3 - type: reaction - id: react.IrishCream + id: IrishCream reactants: - chem.Cream: + Cream: amount: 1 - chem.Whiskey: + Whiskey: amount: 2 products: - chem.IrishCream: 3 + IrishCream: 3 - type: reaction - id: react.IrishCoffee + id: IrishCoffee reactants: - chem.IrishCream: + IrishCream: amount: 2 - chem.Coffee: + Coffee: amount: 2 products: - chem.IrishCoffee: 4 + IrishCoffee: 4 - type: reaction - id: react.IrishCarBomb + id: IrishCarBomb reactants: - chem.IrishCream: + IrishCream: amount: 1 - chem.Ale: + Ale: amount: 1 products: - chem.IrishCarBomb: 2 + IrishCarBomb: 2 - type: reaction - id: react.B52 + id: B52 reactants: - chem.IrishCarBomb: + IrishCarBomb: amount: 1 - chem.Kahlua: + Kahlua: amount: 1 - chem.Cognac: + Cognac: amount: 1 products: - chem.B52: 3 + B52: 3 - type: reaction - id: react.AtomicBomb + id: AtomicBomb reactants: - chem.B52: + B52: amount: 10 - chem.Uranium: + Uranium: amount: 1 products: - chem.AtomicBomb: 11 + AtomicBomb: 11 - type: reaction - id: react.WhiskeyCola + id: WhiskeyCola reactants: - chem.Whiskey: + Whiskey: amount: 2 - chem.Cola: + Cola: amount: 1 products: - chem.WhiskeyCola: 3 + WhiskeyCola: 3 - type: reaction - id: react.SyndicateBomb + id: SyndicateBomb reactants: - chem.WhiskeyCola: + WhiskeyCola: amount: 1 - chem.Beer: + Beer: amount: 1 products: - chem.SyndicateBomb: 2 + SyndicateBomb: 2 - type: reaction - id: react.Antifreeze + id: Antifreeze reactants: - chem.Vodka: + Vodka: amount: 2 - chem.Cream: + Cream: amount: 1 - chem.Ice: + Ice: amount: 1 products: - chem.Antifreeze: 4 + Antifreeze: 4 - type: reaction - id: react.Moonshine + id: Moonshine reactants: - chem.Vodka: + Vodka: amount: 1 - chem.Tequila: + Tequila: amount: 1 - chem.Whiskey: + Whiskey: amount: 1 products: - chem.Moonshine: 3 + Moonshine: 3 - type: reaction - id: react.CreamyDelight + id: CreamyDelight reactants: - chem.Moonshine: + Moonshine: amount: 1 - chem.Cream: + Cream: amount: 1 - chem.Wine: + Wine: amount: 1 products: - chem.CreamyDelight: 3 + CreamyDelight: 3 - type: reaction - id: react.LeanShine + id: LeanShine reactants: - chem.Lean: + Lean: amount: 1 - chem.Moonshine: + Moonshine: amount: 1 products: - chem.LeanShine: 2 + LeanShine: 2 diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index 286c7c5a8e..dc11046ef6 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -1,471 +1,473 @@ - type: reaction - id: react.Alkycosine + id: Alkycosine reactants: - chem.Alkysine: + Alkysine: amount: 1 - chem.Bleach: + Bleach: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 products: - chem.Alkycosine: 3 + Alkycosine: 3 - type: reaction - id: react.Alkysine + id: Alkysine reactants: - chem.Chlorine: + Chlorine: amount: 1 - chem.Nitrogen: + Nitrogen: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 products: - chem.Alkysine: 3 + Alkysine: 3 - type: reaction - id: react.Dylovene + id: Dylovene reactants: - chem.Silicon: + Silicon: amount: 1 - chem.Nitrogen: + Nitrogen: amount: 1 - chem.Potassium: + Potassium: amount: 1 products: - chem.Dylovene: 3 + Dylovene: 3 - type: reaction - id: react.Arithrazine + id: Arithrazine reactants: - chem.Hyronalin: + Hyronalin: amount: 1 - chem.Hydrogen: + Hydrogen: amount: 1 products: - chem.Arithrazine: 2 + Arithrazine: 2 - type: reaction - id: react.Bicaridine + id: Bicaridine reactants: - chem.Inaprovaline: + Inaprovaline: amount: 1 - chem.Carbon: + Carbon: amount: 1 products: - chem.Bicaridine: 2 + Bicaridine: 2 - type: reaction - id: react.Cryoxadone + id: Cryoxadone reactants: - chem.Dexalin: + Dexalin: amount: 1 - chem.Water: + Water: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 products: - chem.Cryoxadone: 3 + Cryoxadone: 3 - type: reaction - id: react.Clonexadone + id: Clonexadone reactants: - chem.Cryoxadone: + Cryoxadone: amount: 1 - chem.Sodium: + Sodium: amount: 1 - chem.Plasma: + Plasma: amount: 5 catalyst: true products: - chem.Clonexadone: 2 + Clonexadone: 2 - type: reaction - id: react.Citalopram + id: Citalopram reactants: - chem.MindbreakerToxin: + MindbreakerToxin: amount: 5 - chem.Carbon: + Carbon: amount: 5 products: - chem.Citalopram: 10 + Citalopram: 10 - type: reaction - id: react.Dermaline + id: Dermaline reactants: - chem.Kelotane: + Kelotane: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 - chem.Phosphorus: + Phosphorus: amount: 1 products: - chem.Dermaline: 3 + Dermaline: 3 - type: reaction - id: react.Dexalin + id: Dexalin reactants: - chem.Oxygen: + Oxygen: amount: 2 - chem.Plasma: + Plasma: amount: 5 catalyst: true products: - chem.Dexalin: 3 + Dexalin: 3 - type: reaction - id: react.DexalinPlus + id: DexalinPlus reactants: - chem.Dexalin: + Dexalin: amount: 1 - chem.Carbon: + Carbon: amount: 1 - chem.Iron: + Iron: amount: 1 products: - chem.DexalinPlus: 3 + DexalinPlus: 3 - type: reaction - id: react.Ethylredoxrazine + id: Ethylredoxrazine reactants: - chem.Oxygen: + Oxygen: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 - chem.Carbon: + Carbon: amount: 1 products: - chem.Ethylredoxrazine: 3 + Ethylredoxrazine: 3 - type: reaction - id: react.Hyperzine + id: Hyperzine reactants: - chem.Glucose: + Glucose: amount: 1 - chem.Phosphorus: + Phosphorus: amount: 1 - chem.Sulfur: + Sulfur: amount: 1 products: - chem.Hyperzine: 3 + Hyperzine: 3 - type: reaction - id: react.Hyronalin + id: Hyronalin reactants: - chem.Radium: + Radium: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 products: - chem.Hyronalin: 2 + Hyronalin: 2 - type: reaction - id: react.Imidazoline + id: Imidazoline reactants: - chem.Hydrogen: + Hydrogen: amount: 1 - chem.Carbon: + Carbon: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 products: - chem.Imidazoline: 3 + Imidazoline: 3 - type: reaction - id: react.Inacusiate + id: Inacusiate reactants: - chem.Dylovene: + Dylovene: amount: 1 - chem.Carbon: + Carbon: amount: 1 - chem.Water: + Water: amount: 1 products: - chem.Inacusiate: 3 + Inacusiate: 3 - type: reaction - id: react.Inaprovaline + id: Inaprovaline reactants: - chem.Oxygen: + Oxygen: amount: 1 - chem.Carbon: + Carbon: amount: 1 - chem.Glucose: + Glucose: amount: 1 products: - chem.Inaprovaline: 3 + Inaprovaline: 3 - type: reaction - id: react.Kelotane + id: Kelotane reactants: - chem.Silicon: + Silicon: amount: 1 - chem.Carbon: + Carbon: amount: 1 products: - chem.Kelotane: 2 + Kelotane: 2 - type: reaction - id: react.Leporazine + id: Leporazine reactants: - chem.Silicon: + Silicon: amount: 1 - chem.Copper: + Copper: amount: 1 - chem.Plasma: + Plasma: amount: 5 catalyst: true products: - chem.Leporazine: 2 + Leporazine: 2 - type: reaction - id: react.Methylin + id: Methylin reactants: - chem.Hydrogen: + Hydrogen: amount: 1 - chem.Chlorine: + Chlorine: amount: 1 - chem.Ethanol: + Ethanol: amount: 1 - chem.Fluorine: + Fluorine: amount: 5 catalyst: true products: - chem.Methylin: 3 + Methylin: 3 - type: reaction - id: react.Oxycodone + id: Oxycodone reactants: - chem.Ethanol: + Ethanol: amount: 1 - chem.Tramadol: + Tramadol: amount: 1 - chem.Plasma: + Plasma: amount: 1 products: - chem.Oxycodone: 3 + Oxycodone: 3 - type: reaction - id: react.Phalanximine + id: Phalanximine reactants: - chem.Hyronalin: + Hyronalin: amount: 1 - chem.Ethanol: + Ethanol: amount: 1 - chem.UnstableMutagen: + UnstableMutagen: amount: 1 products: - chem.Phalanximine: 3 + Phalanximine: 3 - type: reaction - id: react.Paroxetine + id: Paroxetine reactants: - chem.MindbreakerToxin: + MindbreakerToxin: amount: 5 - chem.Oxygen: + Oxygen: amount: 5 - chem.Inaprovaline: + Inaprovaline: amount: 5 products: - chem.Paroxetine: 15 + Paroxetine: 15 - type: reaction - id: react.Ryetalyn + id: Ryetalyn reactants: - chem.Arithrazine: + Arithrazine: amount: 1 - chem.Carbon: + Carbon: amount: 1 products: - chem.Ryetalyn: 2 + Ryetalyn: 2 - type: reaction - id: react.Spaceacillin + id: Spaceacillin reactants: - chem.Cryptobiolin: + Cryptobiolin: amount: 1 - chem.Inaprovaline: + Inaprovaline: amount: 1 products: - chem.Spaceacillin: 2 + Spaceacillin: 2 - type: reaction - id: react.Synaptizine + id: Synaptizine reactants: - chem.Lithium: + Lithium: amount: 1 - chem.Glucose: + Glucose: amount: 1 - chem.Water: + Water: amount: 1 products: - chem.Synaptizine: 3 + Synaptizine: 3 - type: reaction - id: react.Tramadol + id: Tramadol reactants: - chem.Inaprovaline: + Inaprovaline: amount: 1 - chem.Ethanol: + Ethanol: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 products: - chem.Tramadol: 3 + Tramadol: 3 - type: reaction - id: react.Tricordrazine + id: Tricordrazine reactants: - chem.Inaprovaline: + Inaprovaline: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 products: - chem.Tricordrazine: 2 + Tricordrazine: 2 - type: reaction - id: react.Vaccine + id: Vaccine reactants: - chem.Aluminium: + Aluminium: amount: 1 - chem.Glucose: + Glucose: amount: 1 - chem.Water: + Water: amount: 1 products: - chem.Vaccine: 3 + Vaccine: 3 - type: reaction - id: react.Albuterol + id: Albuterol reactants: - chem.Hyperzine: + Hyperzine: amount: 1 - chem.Tramadol: + Tramadol: amount: 1 products: - chem.Albuterol: 2 + Albuterol: 2 - type: reaction - id: react.ChloralHydrate + id: ChloralHydrate reactants: - chem.Ethanol: + Ethanol: amount: 1 - chem.Chlorine: + Chlorine: amount: 3 - chem.Water: + Water: amount: 1 products: - chem.ChloralHydrate: 1 + ChloralHydrate: 1 - type: reaction - id: react.Creatine #Add nutriment as ingredient (amount = 1) once that's a thing + id: Creatine reactants: - chem.Bicaridine: + Bicaridine: amount: 1 - chem.Hyperzine: + Hyperzine: amount: 1 - chem.UnstableMutagen: + Nutriment: + amount: 1 + UnstableMutagen: amount: 1 products: - chem.Creatine: 3 + Creatine: 3 - type: reaction - id: react.Cryptobiolin + id: Cryptobiolin reactants: - chem.Potassium: + Potassium: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 - chem.Glucose: + Glucose: amount: 1 products: - chem.Cryptobiolin: 3 + Cryptobiolin: 3 - type: reaction - id: react.HeartbreakerToxin #heat to 37C once temperatures supported + id: HeartbreakerToxin #heat to 37C once temperatures supported reactants: - chem.Dexalin: + Dexalin: amount: 1 - chem.MindbreakerToxin: + MindbreakerToxin: amount: 1 products: - chem.HeartbreakerToxin: 2 + HeartbreakerToxin: 2 - type: reaction - id: react.Impedrezene + id: Impedrezene reactants: - chem.Mercury: + Mercury: amount: 1 - chem.Oxygen: + Oxygen: amount: 1 - chem.Glucose: + Glucose: amount: 1 products: - chem.Impedrezene: 3 + Impedrezene: 3 - type: reaction - id: react.Lexorin + id: Lexorin reactants: - chem.Ammonia: + Ammonia: amount: 1 - chem.Plasma: + Plasma: amount: 1 products: - chem.Lexorin: 2 + Lexorin: 2 - type: reaction - id: react.Lipozine + id: Lipozine reactants: - chem.TableSalt: + TableSalt: amount: 1 - chem.Ethanol: + Ethanol: amount: 1 - chem.Radium: + Radium: amount: 1 products: - chem.Lipozine: 3 + Lipozine: 3 - type: reaction - id: react.MindbreakerToxin + id: MindbreakerToxin reactants: - chem.Silicon: + Silicon: amount: 1 - chem.Hydrogen: + Hydrogen: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 products: - chem.MindbreakerToxin: 3 + MindbreakerToxin: 3 - type: reaction - id: react.Soporific + id: Soporific reactants: - chem.ChloralHydrate: + ChloralHydrate: amount: 1 - chem.Glucose: + Glucose: amount: 4 products: - chem.Soporific: 5 + Soporific: 5 - type: reaction - id: react.Sterilizine + id: Sterilizine reactants: - chem.Ethanol: + Ethanol: amount: 1 - chem.Dylovene: + Dylovene: amount: 1 - chem.Chlorine: + Chlorine: amount: 1 products: - chem.Sterilizine: 3 + Sterilizine: 3 - type: reaction - id: react.SpaceDrugs + id: SpaceDrugs reactants: - chem.Mercury: + Mercury: amount: 1 - chem.Glucose: + Glucose: amount: 1 - chem.Lithium: + Lithium: amount: 1 products: - chem.SpaceDrugs: 3 + SpaceDrugs: 3