Add text coloring for inspected solution containers, code cleanup (#2010)

* Initial commit

* remove helper

* fixes

* small fix
This commit is contained in:
nuke
2020-09-09 18:32:31 -04:00
committed by GitHub
parent f7a5bad839
commit 753a627c75
56 changed files with 981 additions and 726 deletions

View File

@@ -2,6 +2,7 @@
id: chem.Nutriment
name: nutriment
desc: All the vitamins, minerals, and carbohydrates the body needs in pure form.
physicalDesc: opaque
color: "#664330"
metabolism:
- !type:DefaultFood
@@ -11,6 +12,7 @@
id: chem.H2SO4
name: sulfuric acid
desc: A highly corrosive, oily, colorless liquid.
physicalDesc: oily
color: "#BF8C00"
boilingPoint: 337.0
meltingPoint: 10.31
@@ -18,7 +20,8 @@
- type: reagent
id: chem.H2O
name: water
desc: A tasty colorless liquid.
desc: A colorless liquid that humans need in order to survive.
physicalDesc: translucent
color: "#c0e0ff20"
boilingPoint: 100.0
meltingPoint: 0.0
@@ -30,6 +33,7 @@
id: chem.Ice
name: ice
desc: Frozen water.
physicalDesc: frosty
color: "#bed8e6"
meltingPoint: 0.0
boilingPoint: 100.0
@@ -38,7 +42,8 @@
id: chem.Phoron
name: phoron
desc: Funky, space-magic pixie dust. You probably shouldn't eat this, but we both know you will anyways.
color: "#500064"
physicalDesc: gaseous
color: "#7e009e"
boilingPoint: -127.3 # Random values picked between the actual values for CO2 and O2
meltingPoint: -186.4
@@ -46,6 +51,7 @@
id: chem.Ethanol
name: ethanol
desc: A simple alcohol, makes you drunk if consumed, flammable.
physicalDesc: strong-smelling
color: "#b05b3c"
boilingPoint: 78.2
meltingPoint: -114.1
@@ -54,6 +60,7 @@
id: chem.Glucose
name: glucose
desc: A simple sugar found in many foods.
physicalDesc: syrupy
color: "#ffffff"
boilingPoint: 340282300000000000000000000000000000000 #Fun fact: Glucose can't boil. So let's just set it to the maximum float value.
meltingPoint: 146.0
@@ -62,6 +69,7 @@
id: chem.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
color: "#77b58e"
boilingPoint: -33.0
meltingPoint: -77.7
@@ -70,6 +78,7 @@
id: chem.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
color: "#a1000b"
boilingPoint: 111.0
meltingPoint: -5.0
@@ -78,6 +87,7 @@
id: chem.Diethylamine
name: diethylamine
desc: A very potent fertilizer.
physicalDesc: strong-smelling
color: "#a1000b"
boilingPoint: 55.5
meltingPoint: -50.0
@@ -86,6 +96,7 @@
id: chem.FoamingAgent
name: foaming agent
desc: Makes foam such as that required in metal foam grenades
physicalDesc: foamy
color: "#215263"
boilingPoint: 418.0 # I went with ammonium lauryl sulfate as the basis for this
meltingPoint: 7.4 # I made this up
@@ -94,6 +105,7 @@
id: chem.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. Spraying it on other items will usually melt them too, which does make it useful if the clown has covered the entire hallway in banana peels.
physicalDesc: strong-smelling
color: "#a1000b"
boilingPoint: 78.2 # This isn't a real chemical...
meltingPoint: -19.4
@@ -102,7 +114,8 @@
id: chem.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.
color: "#215263"
physicalDesc: lemony fresh
color: "#c8ff69"
boilingPoint: 147.0 # Made this up, loosely based on bleach
meltingPoint: -11.0
@@ -110,6 +123,7 @@
id: chem.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
color: "#77b58e"
boilingPoint: 290.0 # Glycerin
meltingPoint: 18.2
@@ -118,6 +132,7 @@
id: chem.TableSalt
name: table salt
desc: Commonly known as salt, Sodium Chloride is often used to season food or kill borers instantly.
physicalDesc: grainy
color: "#a1000b"
boilingPoint: 1465.0
meltingPoint: 800.7
@@ -126,7 +141,8 @@
id: chem.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.
color: "#77b58e"
physicalDesc: grainy
color: "#757245"
boilingPoint: 2977.0 # Aluminum oxide
meltingPoint: 2030.0
@@ -134,7 +150,8 @@
id: chem.UnstableMutagen
name: unstable mutagen
desc: Causes mutations when injected into living people or plants. High doses may be lethal, especially in humans.
color: "#77b58e"
physicalDesc: glowing
color: "#00ff5f"
boilingPoint: 340282300000000000000000000000000000000 # Ethidium bromide, which doesn't boil.
meltingPoint: 261.0
@@ -142,6 +159,7 @@
id: chem.WeldingFuel
name: welding fuel
desc: Used by welders to weld.
physicalDesc: oily
color: "#a76b1c"
boilingPoint: -84.7 # Acetylene. Close enough.
meltingPoint: -80.7

View File

@@ -2,6 +2,7 @@
id: chem.Whiskey
name: whiskey
desc: An alcoholic beverage made from fermented grain mash
physicalDesc: strong-smelling
color: "#664300"
spritePath: whiskeyglass.rsi
@@ -9,13 +10,15 @@
id: chem.Ale
name: ale
desc: A type of beer brewed using a warm fermentation method, resulting in a sweet, full-bodied and fruity taste.
color: "#664300"
physicalDesc: bubbly
color: "#663100"
spritePath: aleglass.rsi
- type: reagent
id: chem.Wine
name: wine
desc: An alcoholic drink made from fermented grapes
physicalDesc: translucent
color: "#7E4043"
spritePath: wineglass.rsi
@@ -23,19 +26,36 @@
id: chem.Beer
name: beer
desc: A cold pint of pale lager.
color: "#664300"
physicalDesc: bubbly
color: "#cfa85f"
spritePath: beerglass.rsi
- type: reagent
id: chem.Vodka
name: vodka
desc: The glass contain wodka. Xynta.
color: "#664300"
physicalDesc: strong-smelling
color: "#d1d1d155"
- type: reagent
id: chem.Moonshine
name: moonshine
desc: Artisanal homemade liquor. What could go wrong?
physicalDesc: strong-smelling
color: "#d1d7d155"
- type: reagent
id: chem.Tequila
name: tequila
desc: This stuff will get you fucked up.
physicalDesc: strong-smelling
color: "#d7d1d155"
- type: reagent
id: chem.Kahlua
name: kahlua
desc: A widely known, Mexican coffee-flavoured liqueur. In production since 1936!
physicalDesc: cloudy
color: "#664300"
spritePath: kahluaglass.rsi
@@ -43,6 +63,7 @@
id: chem.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
color: "#AB3C05"
spritePath: cognacglass.rsi
@@ -50,6 +71,7 @@
id: chem.ManlyDorf
name: manly dorf
desc: A dwarfy concoction made from ale and beer. Intended for stout dwarves only.
physicalDesc: bubbly
color: "#664300"
spritePath: manlydorfglass.rsi
@@ -57,6 +79,7 @@
id: chem.CubaLibre
name: cuba libre
desc: A classic mix of rum and cola.
physicalDesc: bubbly
color: "#3E1B00"
spritePath: cubalibreglass.rsi
@@ -64,6 +87,7 @@
id: chem.IrishCarBomb
name: irish car bomb
desc: A troubling mixture of irish cream and ale.
physicalDesc: bubbly
color: "#2E6671"
spritePath: irishcarbomb.rsi
@@ -71,6 +95,7 @@
id: chem.IrishCoffee
name: irish coffee
desc: Coffee served with irish cream. Regular cream just isn't the same!
physicalDesc: cloudy
color: "#664300"
spritePath: irishcoffeeglass.rsi
@@ -78,6 +103,7 @@
id: chem.IrishCream
name: irish cream
desc: Whiskey-imbued cream. What else could you expect from the Irish.
physicalDesc: creamy
color: "#664300"
spritePath: irishcreamglass.rsi
@@ -85,6 +111,7 @@
id: chem.B52
name: b-52
desc: Coffee, irish cream, and cognac. You will get bombed.
physicalDesc: bubbly
color: "#664300"
spritePath: b52glass.rsi
@@ -92,6 +119,7 @@
id: chem.AtomicBomb
name: atomic bomb
desc: Nuclear proliferation never tasted so good.
physicalDesc: cloudy
color: "#666300"
spritePath: atomicbombglass.rsi
@@ -99,6 +127,7 @@
id: chem.WhiskeyCola
name: whiskey cola
desc: An innocent-looking mixture of cola and whiskey. Delicious.
physicalDesc: bubbly
color: "#3E1B00"
spritePath: whiskeycolaglass.rsi
@@ -106,22 +135,24 @@
id: chem.SyndicateBomb
name: syndicate bomb
desc: Somebody set us up the bomb!
color: "#2E6671"
physicalDesc: opaque
color: "#2E6660"
spritePath: syndicatebomb.rsi
- type: reagent
id: chem.Antifreeze
name: antifreeze
desc: The ultimate refreshment.
color: "#664300"
physicalDesc: translucent
color: "#ff7d63"
spritePath: antifreeze.rsi
- type: reagent
id: chem.Cola
name: cola
desc: A sweet, carbonated soft drink. Caffeine free.
color: "#100800"
physicalDesc: fizzy
color: "#422912"
metabolism:
- !type:DefaultDrink
rate: 1
@@ -130,6 +161,7 @@
id: chem.Coffee
name: coffee
desc: A drink made from brewed coffee beans. Contains a moderate amount of caffeine.
physicalDesc: aromatic
color: "#664300"
metabolism:
- !type:DefaultDrink
@@ -139,7 +171,8 @@
id: chem.Tea
name: tea
desc: A made by boiling leaves of the tea tree, Camellia sinensis.
color: "#101000"
physicalDesc: aromatic
color: "#8a5a3a"
metabolism:
- !type:DefaultDrink
rate: 1
@@ -148,6 +181,7 @@
id: chem.Cream
name: cream
desc: The fatty, still liquid part of milk. Why don't you mix this with sum scotch, eh?
physicalDesc: creamy
color: "#DFD7AF"
metabolism:
- !type:DefaultDrink
@@ -157,16 +191,48 @@
id: chem.Milk
name: milk
desc: An opaque white liquid produced by the mammary glands of mammals.
physicalDesc: opaque
color: "#DFDFDF"
metabolism:
- !type:DefaultDrink
rate: 1
- type: reagent
id: chem.SpoiledMilk
name: spoiled milk
desc: This milk has gone rancid.
physicalDesc: putrid
color: "#faffba"
metabolism:
- !type:DefaultDrink
rate: 1
- type: reagent
id: chem.CreamyDelight
name: creamy delight
desc: A combination of cream, wine and moonshine. Why would you do this?
physicalDesc: foul
color: "#a6969a"
metabolism:
- !type:DefaultDrink
rate: 1
- type: reagent
id: chem.Lean
name: lean
desc: Turn up for days
desc: Turn up for days.
physicalDesc: bubbly
color: "#9400D3"
metabolism:
- !type:DefaultDrink
rate: 1
- type: reagent
id: chem.LeanShine
name: leanshine
desc: Lean mixed with moonshine. Turn up for months.
physicalDesc: bubbly
color: "#9d5fb8"
metabolism:
- !type:DefaultDrink
rate: 1

View File

@@ -2,6 +2,7 @@
id: chem.H
name: hydrogen
desc: A light, flammable gas.
physicalDesc: gaseous
color: "#808080"
boilingPoint: -253.0
meltingPoint: -259.2
@@ -10,6 +11,7 @@
id: chem.O
name: oxygen
desc: An oxidizing, colorless gas.
physicalDesc: gaseous
color: "#808080"
boilingPoint: -183.0
meltingPoint: -218.4
@@ -19,7 +21,8 @@
id: chem.S
name: sulfur
desc: A yellow, crystalline solid.
color: "#FFFACD"
physicalDesc: powdery
color: "#fff385"
boilingPoint: 445.0
meltingPoint: 120.0
@@ -27,6 +30,7 @@
id: chem.C
name: carbon
desc: A black, crystalline solid.
physicalDesc: crystalline
color: "#22282b"
boilingPoint: 4200.0
meltingPoint: 3550.0
@@ -34,7 +38,8 @@
- type: reagent
id: chem.Al
name: aluminum
desc: A silvery-white, soft, non-magnetic, and ductile metal.
desc: A silver, soft, non-magnetic, and ductile metal.
physicalDesc: metallic
color: "#848789"
boilingPoint: 2327.0
meltingPoint: 660.0
@@ -43,6 +48,7 @@
id: chem.Cu
name: copper
desc: A soft, malleable, and ductile metal with very high thermal and electrical conductivity.
physicalDesc: metallic
color: "#b05b3c"
boilingPoint: 2595.0
meltingPoint: 1083.0
@@ -51,6 +57,7 @@
id: chem.N
name: nitrogen
desc: A colorless, odorless unreactive gas. Highly stable.
physicalDesc: gaseous
color: "#808080"
boilingPoint: -195.8
meltingPoint: -210.0
@@ -59,6 +66,7 @@
id: chem.Fe
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
color: "#434b4d"
boilingPoint: 2862.0
meltingPoint: 1538.0
@@ -67,6 +75,7 @@
id: chem.F
name: fluorine
desc: A highly toxic pale yellow gas. Extremely reactive.
physicalDesc: gaseous
color: "#808080"
boilingPoint: -188.11
meltingPoint: -219.67
@@ -75,6 +84,7 @@
id: chem.Si
name: silicon
desc: A hard and brittle crystalline solid with a blue-grey color.
physicalDesc: crystalline
color: "#364266"
boilingPoint: 3265.0
meltingPoint: 1414.0
@@ -83,6 +93,7 @@
id: chem.Cl
name: chlorine
desc: A yellow-green gas which is toxic to humans.
physicalDesc: gaseous
color: "#a2ff00"
meltingPoint: -101.5
boilingPoint: -34.04
@@ -91,6 +102,7 @@
id: chem.Li
name: lithium
desc: A soft, silvery-white alkali metal. It is highly reactive, and ignites if it makes contact with water.
physicalDesc: shiny
color: "#c6c8cc"
meltingPoint: 180.5
boilingPoint: 1330.0
@@ -99,6 +111,7 @@
id: chem.Hg
name: mercury
desc: A silver metal which is liquid at room temperature. It is highly toxic to humans.
physicalDesc: shiny
color: "#929296"
meltingPoint: -38.83
boilingPoint: 356.73
@@ -107,14 +120,16 @@
id: chem.P
name: phosphorus
desc: A reactive metal used in pyrotechnics and weapons.
color: "#803330"
physicalDesc: powdery
color: "#ede4e4"
meltingPoint: 44.2
boilingPoint: 280.5
- type: reagent
id: chem.K
name: potassium
desc: A soft, silvery-white metal. Even more reactive than lithium.
desc: A soft, shiny grey metal. Even more reactive than lithium.
physicalDesc: shiny
color: "#c6c8cc"
meltingPoint: 65.5
boilingPoint: 759.0
@@ -123,6 +138,7 @@
id: chem.Ra
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
color: "#00ff04"
meltingPoint: 700.0
boilingPoint: 1737.0
@@ -131,6 +147,7 @@
id: chem.Na
name: sodium
desc: A silvery-white alkali metal. Highly reactive in it's pure form.
physicalDesc: metallic
color: "#c6c8cc"
meltingPoint: 97.8
boilingPoint: 883.0
@@ -138,7 +155,8 @@
- type: reagent
id: chem.U
name: uranium
desc: A silvery-white metallic chemical element in the actinide series, weakly radioactive.
color: "#00ff06"
desc: A grey metallic chemical element in the actinide series, weakly radioactive.
physicalDesc: metallic
color: "#8fa191"
meltingPoint: 1133.0
boilingPoint: 4131.0

View File

@@ -2,6 +2,7 @@
id: chem.Flour
name: flour
desc: Used for baking.
physicalDesc: powdery
color: "#FFFFFF"
metabolism:
- !type:DefaultFood

View File

@@ -2,245 +2,285 @@
id: chem.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
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.
color: "#a1000b"
physicalDesc: oily
color: "#ff8c00"
- type: reagent
id: chem.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
color: "#3a1d8a"
- type: reagent
id: chem.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
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
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
color: "#0091ff"
- type: reagent
id: chem.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 clone damage, although both can be used simultaneously. Best used in cryo cells.
color: "#0091ff"
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
color: "#0666ff"
- type: reagent
id: chem.Citalopram
name: citalopram
desc: Prevents hallucination slightly.
physicalDesc: cloudy
color: "#21693c"
- type: reagent
id: chem.Dermaline
name: dermaline
desc: An advanced chemical that is more effective at treating burns damage than Kelotane.
desc: An advanced chemical that is more effective at treating burn damage than Kelotane.
physicalDesc: translucent
color: "#215263"
- type: reagent
id: chem.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
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.
color: "#297691"
physicalDesc: cloudy
color: "#4da0bd"
- type: reagent
id: chem.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
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
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.
color: "#17ac61"
physicalDesc: cloudy
color: "#4cb580"
- type: reagent
id: chem.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
name: inacusiate
desc: You only need 1u for Inacusiate work. Cures deafness instantly. Useful after an explosion.
color: "#f7ef00"
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
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.
color: "#73103b"
physicalDesc: opaque
color: "#731024"
- type: reagent
id: chem.Kelotane
name: kelotane
desc: Treats burn damage and prevents infection.
physicalDesc: strong-smelling
color: "#bf3d19"
- type: reagent
id: chem.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
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
name: oxycodone
desc: A very effective painkiller, about 250% as strong as Tramadol.
physicalDesc: acrid
color: "#c4a300"
- type: reagent
id: chem.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
name: paroxetine
desc: Prevents hallucination, but has a 10% chance of causing intense hallucinations.
color: "#c8ff75"
physicalDesc: acrid
color: "#fffbad"
- type: reagent
id: chem.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
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.
color: "#7f2fd4"
physicalDesc: opaque
color: "#9942f5"
- type: reagent
id: chem.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
name: tramadol
desc: A simple, yet effective painkiller. Very effective for patients in shock.
physicalDesc: strong-smelling
color: "#2f6ed4"
- type: reagent
id: chem.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
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.
color: "#ba0b60"
physicalDesc: translucent
color: "#ffc9f6"
- type: reagent
id: chem.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.
color: "#00e5ff"
physicalDesc: cloudy
color: "#00b89f"
- type: reagent
id: chem.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.
color: "#00e5ff"
physicalDesc: acrid
color: "#18c9b1"
- type: reagent
id: chem.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
name: cryptobiolin
desc: Causes confusion and dizziness. This is essential to make Spaceacillin.
color: "#00e5ff"
physicalDesc: fizzy
color: "#081a80"
- type: reagent
id: chem.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.
color: "#00e5ff"
physicalDesc: strong-smelling
color: "#5f959c"
- type: reagent
id: chem.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
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.
color: "#a1000b"
physicalDesc: pungent
color: "#6b0007"
- type: reagent
id: chem.Lipozine
name: lipozine
desc: Causes weight loss upon consumption.
color: "#215263"
physicalDesc: oily
color: "#2690b5"
- type: reagent
id: chem.MindbreakerToxin
name: mindbreaker toxin
desc: A potent hallucinogenic compound that is illegal under space law. Formerly known as LSD.
physicalDesc: opaque
color: "#77b58e"
- type: reagent
id: chem.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
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.
color: "#215263"
physicalDesc: strong-smelling
color: "#7cad37"
- type: reagent
id: chem.SpaceDrugs
name: space drugs
desc: An illegal compound which induces a number of effects such as loss of balance and visual artefacts.
color: "#a1000b"
physicalDesc: syrupy
color: "#63806e"