Adds metabolism effects to pretty much every chem already in the game (#5349)
* pass 1 * a little more reagent effect for breakfast * move lots of stuff around * implements all medicines * implement all cleaning & elements * implement toxins/pyrotechnic * p * linter fixies * fixes + narcotic balancing * fix and standardize * reviews * things
This commit is contained in:
@@ -57,6 +57,25 @@
|
||||
color: "#664300"
|
||||
spritePath: rumglass.rsi
|
||||
|
||||
- type: reagent
|
||||
id: Ethanol
|
||||
name: ethanol
|
||||
desc: A simple alcohol, makes you drunk if consumed, flammable.
|
||||
physicalDesc: strong-smelling
|
||||
color: "#b05b3c"
|
||||
boilingPoint: 78.2
|
||||
meltingPoint: -114.1
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 1.35
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Caustic: 1
|
||||
|
||||
- type: reagent
|
||||
id: Gin
|
||||
name: gin
|
||||
|
||||
@@ -7,12 +7,11 @@
|
||||
- !type:SatiateThirst
|
||||
factor: 3
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 0.1
|
||||
- !type:PlantAdjustWater
|
||||
amount: 1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.1
|
||||
tileReactions:
|
||||
- !type:ExtinguishTileReaction { }
|
||||
- !type:SpillIfPuddlePresentTileReaction { }
|
||||
|
||||
- type: reagent
|
||||
id: BaseSoda
|
||||
@@ -39,6 +38,9 @@
|
||||
effects:
|
||||
- !type:SatiateThirst
|
||||
factor: 2
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 1.35
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 0.25
|
||||
|
||||
@@ -202,3 +202,30 @@
|
||||
desc: It tastes strange but at least the quinine keeps the Space Malaria at bay.
|
||||
physicalDesc: fizzy
|
||||
color: "#0064C8"
|
||||
|
||||
- type: reagent
|
||||
id: Water
|
||||
name: water
|
||||
parent: BaseDrink
|
||||
desc: A colorless liquid that humans need in order to survive.
|
||||
physicalDesc: translucent
|
||||
color: "#c0e0ff20"
|
||||
boilingPoint: 100.0
|
||||
meltingPoint: 0.0
|
||||
metabolisms:
|
||||
Drink:
|
||||
effects:
|
||||
- !type:SatiateThirst
|
||||
factor: 4
|
||||
|
||||
- type: reagent
|
||||
id: Ice
|
||||
name: ice
|
||||
desc: Frozen water.
|
||||
physicalDesc: frosty
|
||||
color: "#bed8e6"
|
||||
meltingPoint: 0.0
|
||||
boilingPoint: 100.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustWater
|
||||
amount: 1
|
||||
|
||||
@@ -53,3 +53,33 @@
|
||||
desc: A salty soy-based flavoring.
|
||||
# physicalDesc:
|
||||
color: saddlebrown
|
||||
|
||||
- type: reagent
|
||||
id: 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
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustWater
|
||||
amount: -3
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: -0.3
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 8
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: -2
|
||||
- !type:PlantAdjustPests
|
||||
amount: -1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -2
|
||||
metabolisms:
|
||||
Food:
|
||||
effects:
|
||||
# eating salt on its own kinda sucks, kids
|
||||
- !type:SatiateHunger
|
||||
factor: 0.5
|
||||
- !type:SatiateThirst
|
||||
factor: -0.5
|
||||
|
||||
31
Resources/Prototypes/Reagents/Consumable/Food/food.yml
Normal file
31
Resources/Prototypes/Reagents/Consumable/Food/food.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
- type: reagent
|
||||
id: Nutriment
|
||||
name: nutriment
|
||||
desc: All the vitamins, minerals, and carbohydrates the body needs in pure form.
|
||||
physicalDesc: opaque
|
||||
color: "#664330"
|
||||
metabolisms:
|
||||
Food:
|
||||
effects:
|
||||
- !type:SatiateHunger
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.5
|
||||
|
||||
- type: reagent
|
||||
id: 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
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 0.1
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: 2
|
||||
- !type:PlantAdjustPests
|
||||
amount: 2
|
||||
@@ -100,3 +100,14 @@
|
||||
effects:
|
||||
- !type:SatiateHunger
|
||||
factor: 1
|
||||
|
||||
- type: reagent
|
||||
id: Oil
|
||||
name: oil
|
||||
desc: Used by chefs to cook.
|
||||
physicalDesc: oily
|
||||
color: "#b67823"
|
||||
boilingPoint: 300.0
|
||||
meltingPoint: -16.0
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction {}
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
# Default human metabolism groups.
|
||||
- type: metabolismGroup
|
||||
id: Poison
|
||||
|
||||
- type: metabolismGroup
|
||||
id: Medicine
|
||||
|
||||
- type: metabolismGroup
|
||||
id: Narcotic
|
||||
|
||||
- type: metabolismGroup
|
||||
id: Alcohol
|
||||
|
||||
- type: metabolismGroup
|
||||
id: Food
|
||||
|
||||
- type: metabolismGroup
|
||||
id: Drink
|
||||
@@ -1,8 +0,0 @@
|
||||
# If your species wants to metabolize stuff differently,
|
||||
# you'll likely have to tag its metabolizers with something other than Human.
|
||||
|
||||
- type: metabolizerType
|
||||
id: Human
|
||||
|
||||
- type: metabolizerType
|
||||
id: Animal
|
||||
@@ -81,23 +81,50 @@
|
||||
amount: -6
|
||||
|
||||
- type: reagent
|
||||
id: THC
|
||||
name: THC
|
||||
desc: The main psychoactive compound in cannabis.
|
||||
color: "#808080"
|
||||
physicalDesc: crystalline
|
||||
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
|
||||
color: "#77b58e"
|
||||
boilingPoint: -33.0
|
||||
meltingPoint: -77.7
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: -5
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -1
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.5
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Caustic: 1
|
||||
|
||||
- type: reagent
|
||||
id: Nicotine
|
||||
name: Nicotine
|
||||
desc: Dangerous and highly addictive.
|
||||
color: "#C0C0C0"
|
||||
physicalDesc: strong smelling
|
||||
id: Diethylamine
|
||||
name: diethylamine
|
||||
desc: A very potent fertilizer.
|
||||
physicalDesc: strong-smelling
|
||||
color: "#a1000b"
|
||||
boilingPoint: 55.5
|
||||
meltingPoint: -50.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -5
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 0.1
|
||||
- !type:PlantAdjustPests
|
||||
prob: 0.1
|
||||
amount: -1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.1
|
||||
- !type:PlantAffectGrowth
|
||||
prob: 0.2
|
||||
amount: 1
|
||||
- !type:PlantDiethylamine {}
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Caustic: 1
|
||||
|
||||
@@ -1,334 +0,0 @@
|
||||
- type: reagent
|
||||
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
|
||||
color: "#77b58e"
|
||||
boilingPoint: -33.0
|
||||
meltingPoint: -77.7
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.5
|
||||
|
||||
- type: reagent
|
||||
id: Diethylamine
|
||||
name: diethylamine
|
||||
desc: A very potent fertilizer.
|
||||
physicalDesc: strong-smelling
|
||||
color: "#a1000b"
|
||||
boilingPoint: 55.5
|
||||
meltingPoint: -50.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 0.1
|
||||
- !type:PlantAdjustPests
|
||||
prob: 0.1
|
||||
amount: -1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.1
|
||||
- !type:PlantAffectGrowth
|
||||
prob: 0.2
|
||||
amount: 1
|
||||
- !type:PlantDiethylamine {}
|
||||
|
||||
- type: reagent
|
||||
id: Ethanol
|
||||
name: ethanol
|
||||
desc: A simple alcohol, makes you drunk if consumed, flammable.
|
||||
physicalDesc: strong-smelling
|
||||
color: "#b05b3c"
|
||||
boilingPoint: 78.2
|
||||
meltingPoint: -114.1
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 1.35
|
||||
|
||||
- type: reagent
|
||||
id: FoamingAgent
|
||||
name: foaming agent
|
||||
desc: Makes foam such as that's 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
|
||||
|
||||
- type: reagent
|
||||
id: 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
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 0.1
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: 2
|
||||
- !type:PlantAdjustPests
|
||||
amount: 2
|
||||
|
||||
- type: reagent
|
||||
id: Ice
|
||||
name: ice
|
||||
desc: Frozen water.
|
||||
physicalDesc: frosty
|
||||
color: "#bed8e6"
|
||||
meltingPoint: 0.0
|
||||
boilingPoint: 100.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustWater
|
||||
amount: 1
|
||||
|
||||
- type: reagent
|
||||
id: Nutriment
|
||||
name: nutriment
|
||||
desc: All the vitamins, minerals, and carbohydrates the body needs in pure form.
|
||||
physicalDesc: opaque
|
||||
color: "#664330"
|
||||
metabolisms:
|
||||
Food:
|
||||
effects:
|
||||
- !type:SatiateHunger
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: 1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 0.5
|
||||
|
||||
- type: reagent
|
||||
id: Theobromine
|
||||
name: theobromine
|
||||
desc: Theobromine is a bitter alkaloid of the cacao plant found in chocolate, and some other foods.
|
||||
physicalDesc: grainy
|
||||
color: "#f5f5f5"
|
||||
meltingPoint: 351
|
||||
boilingPoint: 554 # I'm not a chemist, but it boils at 295, lower than melting point, idk how it works so I gave it higher value
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 1
|
||||
- !type:OrganType
|
||||
type: Animal # Applying damage to the mobs with lower metabolism capabilities
|
||||
damage:
|
||||
types:
|
||||
Poison: 4
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#7e009e"
|
||||
boilingPoint: -127.3 # Random values picked between the actual values for CO2 and O2
|
||||
meltingPoint: -186.4
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 1.5
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#a1000b"
|
||||
boilingPoint: 78.2 # This isn't a real chemical...
|
||||
meltingPoint: -19.4
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 20
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: -4
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -8
|
||||
|
||||
- type: reagent
|
||||
id: FluorosulfuricAcid
|
||||
name: fluorosulfuric acid
|
||||
desc: An extremely corrosive chemical substance.
|
||||
physicalDesc: strong-smelling
|
||||
color: "#5050ff"
|
||||
boilingPoint: 165
|
||||
meltingPoint: -87
|
||||
|
||||
- type: reagent
|
||||
id: 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
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustWater
|
||||
amount: -3
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: -0.3
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 8
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: -2
|
||||
- !type:PlantAdjustPests
|
||||
amount: -1
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -2
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#757245"
|
||||
boilingPoint: 2977.0 # Aluminum oxide
|
||||
meltingPoint: 2030.0
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 1.35
|
||||
|
||||
- type: reagent
|
||||
id: Toxin
|
||||
name: toxin
|
||||
desc: A Toxic chemical.
|
||||
color: "#cf3600"
|
||||
physicalDesc: opaque
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -5
|
||||
|
||||
- type: reagent
|
||||
id: SulfuricAcid
|
||||
name: sulfuric acid
|
||||
desc: A highly corrosive, oily, colorless liquid.
|
||||
physicalDesc: oily
|
||||
color: "#BF8C00"
|
||||
boilingPoint: 337.0
|
||||
meltingPoint: 10.31
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: -2
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -5
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#00ff5f"
|
||||
boilingPoint: 340282300000000000000000000000000000000 # Ethidium bromide, which doesn't boil.
|
||||
meltingPoint: 261.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustMutationLevel
|
||||
amount: 1
|
||||
|
||||
- type: reagent
|
||||
id: Water
|
||||
name: water
|
||||
desc: A colorless liquid that humans need in order to survive.
|
||||
physicalDesc: translucent
|
||||
color: "#c0e0ff20"
|
||||
boilingPoint: 100.0
|
||||
meltingPoint: 0.0
|
||||
metabolisms:
|
||||
Drink:
|
||||
effects:
|
||||
- !type:SatiateThirst
|
||||
factor: 4
|
||||
tileReactions:
|
||||
- !type:ExtinguishTileReaction {}
|
||||
- !type:SpillIfPuddlePresentTileReaction {}
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustWater
|
||||
amount: 1
|
||||
|
||||
- type: reagent
|
||||
id: Meth
|
||||
name: meth
|
||||
desc: Methamphetamine, more commonly know as meth, is a potent stimulant, with dangerous side-effects if too much is consumed.
|
||||
physicalDesc: translucent
|
||||
color: "#FAFAFA"
|
||||
boilingPoint: 212.0 #Meth vape when?
|
||||
meltingPoint: 170.0
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 2.5
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 10
|
||||
damage:
|
||||
types:
|
||||
Poison: 4 # this is added to the base damage of the meth.
|
||||
Narcotic:
|
||||
effects:
|
||||
- !type:MovespeedModifier
|
||||
walkSpeedModifier: 1.3
|
||||
sprintSpeedModifier: 1.3
|
||||
|
||||
- type: reagent
|
||||
id: Iodine
|
||||
name: iodine
|
||||
desc: Commonly added to table salt as a nutrient. On its own it tastes far less pleasing.
|
||||
physicalDesc: Dark Brown
|
||||
color: "#BC8A00"
|
||||
boilingPoint: 184.3
|
||||
meltingPoint: 113.7
|
||||
|
||||
- type: reagent
|
||||
id: Ephedrine
|
||||
name: ephedrine
|
||||
desc: Increases stun resistance and movement speed, giving you hand cramps. Overdose deals toxin damage and inhibits breathing
|
||||
physicalDesc: Bone white
|
||||
color: "#D2FFFA"
|
||||
boilingPoint: 255.0
|
||||
meltingPoint: 36.0
|
||||
metabolisms:
|
||||
Narcotic:
|
||||
effects:
|
||||
- !type:MovespeedModifier
|
||||
walkSpeedModifier: 1.2
|
||||
sprintSpeedModifier: 1.2
|
||||
|
||||
- type: reagent
|
||||
id: Oil
|
||||
name: oil
|
||||
desc: Used by chefs to cook.
|
||||
physicalDesc: oily
|
||||
color: "#b67823"
|
||||
boilingPoint: 300.0
|
||||
meltingPoint: -16.0
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction {}
|
||||
|
||||
- type: reagent
|
||||
id: WeldingFuel
|
||||
name: welding fuel
|
||||
desc: Used by welders to weld.
|
||||
physicalDesc: oily
|
||||
color: "#a76b1c"
|
||||
boilingPoint: -84.7 # Acetylene. Close enough.
|
||||
meltingPoint: -80.7
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction {}
|
||||
|
||||
- type: reagent
|
||||
id: Fluorosurfactant
|
||||
name: fluorosurfactant
|
||||
desc: A perfluoronated sulfonic acid that forms a foam when mixed with water.
|
||||
physicalDesc: opaque
|
||||
color: "#9e6b38"
|
||||
boilingPoint: 190.0 # Perfluorooctanoic Acid.
|
||||
meltingPoint: 45.0
|
||||
@@ -6,6 +6,17 @@
|
||||
color: "#a1000b"
|
||||
boilingPoint: 111.0
|
||||
meltingPoint: -5.0
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 3
|
||||
- !type:PopupMessage
|
||||
type: Local
|
||||
messages: [ "generic-reagent-effect-burning-insides" ]
|
||||
probability: 0.33
|
||||
|
||||
- type: reagent
|
||||
id: SpaceCleaner
|
||||
|
||||
@@ -79,6 +79,15 @@
|
||||
boilingPoint: -253.0
|
||||
meltingPoint: -259.2
|
||||
|
||||
- type: reagent
|
||||
id: Iodine
|
||||
name: iodine
|
||||
desc: Commonly added to table salt as a nutrient. On its own it tastes far less pleasing.
|
||||
physicalDesc: Dark Brown
|
||||
color: "#BC8A00"
|
||||
boilingPoint: 184.3
|
||||
meltingPoint: 113.7
|
||||
|
||||
- type: reagent
|
||||
id: Iron
|
||||
name: iron
|
||||
@@ -96,6 +105,7 @@
|
||||
color: "#c6c8cc"
|
||||
meltingPoint: 180.5
|
||||
boilingPoint: 1330.0
|
||||
# TODO: cause confusion and some brain damage
|
||||
|
||||
- type: reagent
|
||||
id: Mercury
|
||||
@@ -105,6 +115,13 @@
|
||||
color: "#929296"
|
||||
meltingPoint: -38.83
|
||||
boilingPoint: 356.73
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 2
|
||||
|
||||
- type: reagent
|
||||
id: Nitrogen
|
||||
@@ -152,21 +169,12 @@
|
||||
- type: reagent
|
||||
id: Radium
|
||||
name: radium
|
||||
parent: Uranium
|
||||
desc: A radioactive metal, silvery-white in its pure form. It glows due to its radioactivity and is highly toxic.
|
||||
physicalDesc: glowing
|
||||
color: "#00ff04"
|
||||
meltingPoint: 700.0
|
||||
boilingPoint: 1737.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustMutationLevel
|
||||
amount: 0.6
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 4
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -1.5
|
||||
- !type:PlantAdjustMutationMod
|
||||
prob: 0.2
|
||||
amount: 0.1
|
||||
|
||||
- type: reagent
|
||||
id: Silicon
|
||||
@@ -181,7 +189,7 @@
|
||||
id: Silver
|
||||
name: silver
|
||||
desc: A soft, white, lustrous transition metal, it has the highest electrical conductivity of any element and the highest thermal conductivity of any metal.
|
||||
physicalDesc: metallic
|
||||
physicalDesc: reasonably metallic
|
||||
color: "#d0d0d0"
|
||||
boilingPoint: 2212.0
|
||||
meltingPoint: 960.5
|
||||
@@ -212,3 +220,20 @@
|
||||
color: "#8fa191"
|
||||
meltingPoint: 1133.0
|
||||
boilingPoint: 4131.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustMutationLevel
|
||||
amount: 0.6
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 4
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -1.5
|
||||
- !type:PlantAdjustMutationMod
|
||||
prob: 0.2
|
||||
amount: 0.1
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Radiation: 2
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
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"
|
||||
# TODO brain damage
|
||||
|
||||
- type: reagent
|
||||
id: Alkysine
|
||||
@@ -11,6 +12,7 @@
|
||||
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"
|
||||
# TODO brain damage
|
||||
|
||||
- type: reagent
|
||||
id: Dylovene
|
||||
@@ -25,12 +27,30 @@
|
||||
damage:
|
||||
types:
|
||||
Poison: -1
|
||||
# TODO overdose: vomit, dizzy effect (drunkenness?)
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: -10
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 1
|
||||
|
||||
- type: reagent
|
||||
id: Diphenhydramine
|
||||
name: diphenhydramine
|
||||
desc: Rapidly purges the body of histamine and reduces jitteriness.
|
||||
physicalDesc: chalky
|
||||
color: "#64ffe6"
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:RemoveReagent
|
||||
reagent: Histamine
|
||||
amount: 3.0
|
||||
- !type:GenericStatusEffect
|
||||
key: Jitter
|
||||
time: 1.0
|
||||
type: Remove
|
||||
|
||||
- type: reagent
|
||||
id: Arithrazine
|
||||
name: arithrazine
|
||||
@@ -72,10 +92,26 @@
|
||||
amount: -3
|
||||
- !type:PlantAdjustHealth
|
||||
amount: 3
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:Temperature
|
||||
# this is a little arbitrary but they gotta be pretty cold
|
||||
max: 150.0
|
||||
damage:
|
||||
# todo scale with temp like SS13
|
||||
groups:
|
||||
Airloss: -6
|
||||
Brute: -4
|
||||
Burn: -4
|
||||
Toxin: -4
|
||||
|
||||
- type: reagent
|
||||
id: Clonexadone
|
||||
name: clonexadone
|
||||
parent: Cryoxadone
|
||||
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"
|
||||
@@ -91,6 +127,8 @@
|
||||
desc: Prevents hallucination slightly.
|
||||
physicalDesc: cloudy
|
||||
color: "#21693c"
|
||||
# Why do so many chems 'reduce hallucination slightly' and why did we add so fucking many
|
||||
# without even implementing hallucination?
|
||||
|
||||
- type: reagent
|
||||
id: Dermaline
|
||||
@@ -140,6 +178,7 @@
|
||||
desc: Neutralises the effects of alcohol in the blood stream. Though it is commonly needed, it is rarely requested.
|
||||
physicalDesc: opaque
|
||||
color: "#2d5708"
|
||||
# TODO: GenericStatusEffect remove drunkenness
|
||||
|
||||
- type: reagent
|
||||
id: Hyperzine
|
||||
@@ -168,6 +207,7 @@
|
||||
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"
|
||||
# TODO eye damage
|
||||
|
||||
- type: reagent
|
||||
id: Inacusiate
|
||||
@@ -175,6 +215,7 @@
|
||||
desc: You only need 1u for Inacusiate to be effective. Cures deafness instantly. Useful after an explosion.
|
||||
physicalDesc: pungent
|
||||
color: "#c4c04b"
|
||||
# TODO ear damage
|
||||
|
||||
- type: reagent
|
||||
id: Inaprovaline
|
||||
@@ -182,6 +223,17 @@
|
||||
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"
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:TotalDamage
|
||||
# they gotta be in crit first
|
||||
min: 100
|
||||
damage:
|
||||
types:
|
||||
Asphyxiation: -5
|
||||
|
||||
- type: reagent
|
||||
id: Kelotane
|
||||
@@ -203,6 +255,23 @@
|
||||
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"
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:AdjustTemperature
|
||||
conditions:
|
||||
- !type:Temperature
|
||||
max: 293.15
|
||||
amount: 1000 # thermal energy, not temperature!
|
||||
- !type:AdjustTemperature
|
||||
conditions:
|
||||
- !type:Temperature
|
||||
min: 293.15
|
||||
amount: -1000
|
||||
- !type:PopupMessage
|
||||
type: Local
|
||||
messages: [ "leporazine-effect-temperature-adjusting" ]
|
||||
probability: 0.2
|
||||
|
||||
- type: reagent
|
||||
id: Methylin
|
||||
@@ -224,6 +293,15 @@
|
||||
desc: Used in the treatment of cancer, is as effective as Anti-Toxin. Causes moderate radiation and hair loss.
|
||||
physicalDesc: acrid
|
||||
color: "#c8ff75"
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
# close enough to what it says
|
||||
Poison: -1
|
||||
Radiation: 1
|
||||
|
||||
- type: reagent
|
||||
id: Paroxetine
|
||||
@@ -231,6 +309,7 @@
|
||||
desc: Prevents hallucination, but has a 10% chance of causing intense hallucinations.
|
||||
physicalDesc: acrid
|
||||
color: "#fffbad"
|
||||
# TODO: Hallucinations.
|
||||
|
||||
- type: reagent
|
||||
id: Ryetalyn
|
||||
@@ -249,7 +328,7 @@
|
||||
- type: reagent
|
||||
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.
|
||||
desc: Toxic, but treats hallucinations, drowsiness & halves the duration of paralysis, stuns and knockdowns. One unit is enough to treat hallucinations; two units is deadly.
|
||||
physicalDesc: pungent
|
||||
color: "#d49a2f"
|
||||
metabolisms:
|
||||
@@ -258,7 +337,15 @@
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 0.5
|
||||
Poison: 3
|
||||
- !type:GenericStatusEffect
|
||||
key: Stun
|
||||
time: 1.0
|
||||
type: Remove
|
||||
- !type:GenericStatusEffect
|
||||
key: KnockedDown
|
||||
time: 1.0
|
||||
type: Remove
|
||||
|
||||
- type: reagent
|
||||
id: Tramadol
|
||||
@@ -273,20 +360,16 @@
|
||||
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: 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: 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"
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Burn: -1
|
||||
Toxin: -1
|
||||
Airloss: -1
|
||||
Brute: -1
|
||||
|
||||
- type: reagent
|
||||
id: ChloralHydrate
|
||||
@@ -294,13 +377,7 @@
|
||||
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: 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"
|
||||
# TODO: sleeping and unconsciousness
|
||||
|
||||
- type: reagent
|
||||
id: Cryptobiolin
|
||||
@@ -308,44 +385,7 @@
|
||||
desc: Causes confusion and dizziness. This is essential to make Spaceacillin.
|
||||
physicalDesc: fizzy
|
||||
color: "#081a80"
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#5f959c"
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Asphyxiation: 4
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
|
||||
- type: reagent
|
||||
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: 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"
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Airloss: 7
|
||||
# TODO confusion/dizzyness
|
||||
|
||||
- type: reagent
|
||||
id: Lipozine
|
||||
@@ -353,23 +393,12 @@
|
||||
desc: Causes weight loss upon consumption.
|
||||
physicalDesc: oily
|
||||
color: "#2690b5"
|
||||
|
||||
- type: reagent
|
||||
id: MindbreakerToxin
|
||||
name: mindbreaker toxin
|
||||
desc: A potent hallucinogenic compound that is illegal under space law. Formerly known as LSD.
|
||||
physicalDesc: opaque
|
||||
color: "#77b58e"
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
|
||||
- type: reagent
|
||||
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"
|
||||
metabolisms:
|
||||
Medicine:
|
||||
effects:
|
||||
# what the hell, this isn't satiating at all!!
|
||||
- !type:SatiateHunger
|
||||
factor: -1
|
||||
|
||||
- type: reagent
|
||||
id: Sterilizine
|
||||
@@ -378,20 +407,6 @@
|
||||
physicalDesc: strong-smelling
|
||||
color: "#7cad37"
|
||||
|
||||
- type: reagent
|
||||
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: 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
|
||||
color: "#DAA520"
|
||||
|
||||
- type: reagent
|
||||
id: Omnizine
|
||||
name: Omnizine
|
||||
|
||||
119
Resources/Prototypes/Reagents/narcotics.yml
Normal file
119
Resources/Prototypes/Reagents/narcotics.yml
Normal file
@@ -0,0 +1,119 @@
|
||||
- type: reagent
|
||||
id: Meth
|
||||
name: meth
|
||||
desc: Methamphetamine, more commonly know as meth, is a potent stimulant, with dangerous side-effects if too much is consumed.
|
||||
physicalDesc: translucent
|
||||
color: "#FAFAFA"
|
||||
boilingPoint: 212.0 #Meth vape when?
|
||||
meltingPoint: 170.0
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 1.5
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 30
|
||||
damage:
|
||||
types:
|
||||
Poison: 2 # this is added to the base damage of the meth.
|
||||
Asphyxiation: 2
|
||||
Narcotic:
|
||||
effects:
|
||||
- !type:MovespeedModifier
|
||||
walkSpeedModifier: 1.3
|
||||
sprintSpeedModifier: 1.3
|
||||
- !type:GenericStatusEffect
|
||||
key: Stutter
|
||||
component: StutteringAccent
|
||||
- !type:Jitter
|
||||
- !type:GenericStatusEffect
|
||||
key: Stun
|
||||
time: 1
|
||||
type: Remove
|
||||
- !type:GenericStatusEffect
|
||||
key: KnockedDown
|
||||
time: 1
|
||||
type: Remove
|
||||
|
||||
- type: reagent
|
||||
id: Ephedrine
|
||||
name: ephedrine
|
||||
desc: Increases stun resistance and movement speed, giving you hand cramps. Overdose deals toxin damage and inhibits breathing.
|
||||
physicalDesc: Bone white
|
||||
color: "#D2FFFA"
|
||||
boilingPoint: 255.0
|
||||
meltingPoint: 36.0
|
||||
metabolisms:
|
||||
Narcotic:
|
||||
effects:
|
||||
- !type:MovespeedModifier
|
||||
walkSpeedModifier: 1.2
|
||||
sprintSpeedModifier: 1.2
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 20
|
||||
damage:
|
||||
types:
|
||||
Poison: 2 # this is added to the base damage of the meth.
|
||||
Asphyxiation: 2
|
||||
- !type:Jitter
|
||||
- !type:GenericStatusEffect
|
||||
key: Stun
|
||||
time: 0.25
|
||||
type: Remove
|
||||
- !type:GenericStatusEffect
|
||||
key: KnockedDown
|
||||
time: 0.25
|
||||
type: Remove
|
||||
- !type:PopupMessage
|
||||
messages: ["ephedrine-effect-tight-pain", "ephedrine-effect-heart-pounds"]
|
||||
type: Local
|
||||
probability: 0.05
|
||||
|
||||
- type: reagent
|
||||
id: THC
|
||||
name: THC
|
||||
desc: The main psychoactive compound in cannabis.
|
||||
color: "#808080"
|
||||
physicalDesc: crystalline
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustNutrition
|
||||
amount: -5
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -1
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#DAA520"
|
||||
|
||||
- type: reagent
|
||||
id: Nicotine
|
||||
name: Nicotine
|
||||
desc: Dangerous and highly addictive.
|
||||
color: "#C0C0C0"
|
||||
physicalDesc: strong smelling
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -5
|
||||
|
||||
- type: reagent
|
||||
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: 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"
|
||||
47
Resources/Prototypes/Reagents/pyrotechnic.yml
Normal file
47
Resources/Prototypes/Reagents/pyrotechnic.yml
Normal file
@@ -0,0 +1,47 @@
|
||||
- type: reagent
|
||||
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
|
||||
color: "#757245"
|
||||
boilingPoint: 2977.0 # Aluminum oxide
|
||||
meltingPoint: 2030.0
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 2
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Heat: 2
|
||||
|
||||
- type: reagent
|
||||
id: FoamingAgent
|
||||
name: foaming agent
|
||||
desc: Makes foam such as that's 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
|
||||
|
||||
- type: reagent
|
||||
id: WeldingFuel
|
||||
name: welding fuel
|
||||
desc: Used by welders to weld.
|
||||
physicalDesc: oily
|
||||
color: "#a76b1c"
|
||||
boilingPoint: -84.7 # Acetylene. Close enough.
|
||||
meltingPoint: -80.7
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction {}
|
||||
|
||||
- type: reagent
|
||||
id: Fluorosurfactant
|
||||
name: fluorosurfactant
|
||||
desc: A perfluoronated sulfonic acid that forms a foam when mixed with water.
|
||||
physicalDesc: opaque
|
||||
color: "#9e6b38"
|
||||
boilingPoint: 190.0 # Perfluorooctanoic Acid.
|
||||
meltingPoint: 45.0
|
||||
243
Resources/Prototypes/Reagents/toxins.yml
Normal file
243
Resources/Prototypes/Reagents/toxins.yml
Normal file
@@ -0,0 +1,243 @@
|
||||
- type: reagent
|
||||
id: Toxin
|
||||
name: toxin
|
||||
desc: A Toxic chemical.
|
||||
color: "#cf3600"
|
||||
physicalDesc: opaque
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -5
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 2
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#a1000b"
|
||||
boilingPoint: 78.2 # This isn't a real chemical...
|
||||
meltingPoint: -19.4
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 20
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: -4
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -8
|
||||
# TODO MIRROR acid! hurt people on contact
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Caustic: 2
|
||||
- !type:PopupMessage
|
||||
type: Local
|
||||
messages: [ "generic-reagent-effect-burning-insides" ]
|
||||
probability: 0.33
|
||||
|
||||
- type: reagent
|
||||
id: FluorosulfuricAcid
|
||||
name: fluorosulfuric acid
|
||||
desc: An extremely corrosive chemical substance.
|
||||
physicalDesc: strong-smelling
|
||||
color: "#5050ff"
|
||||
boilingPoint: 165
|
||||
meltingPoint: -87
|
||||
# TODO MIRROR acid! hurt people on contact
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Caustic: 2
|
||||
- !type:PopupMessage
|
||||
type: Local
|
||||
messages: [ "generic-reagent-effect-burning-insides" ]
|
||||
probability: 0.33
|
||||
|
||||
- type: reagent
|
||||
id: SulfuricAcid
|
||||
name: sulfuric acid
|
||||
desc: A highly corrosive, oily, colorless liquid.
|
||||
physicalDesc: oily
|
||||
color: "#BF8C00"
|
||||
boilingPoint: 337.0
|
||||
meltingPoint: 10.31
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
- !type:PlantAdjustWeeds
|
||||
amount: -2
|
||||
- !type:PlantAdjustHealth
|
||||
amount: -5
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 2
|
||||
- !type:PopupMessage
|
||||
type: Local
|
||||
messages: [ "generic-reagent-effect-burning-insides" ]
|
||||
probability: 0.33
|
||||
# TODO MIRROR acid!
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#7e009e"
|
||||
boilingPoint: -127.3 # Random values picked between the actual values for CO2 and O2
|
||||
meltingPoint: -186.4
|
||||
tileReactions:
|
||||
- !type:FlammableTileReaction
|
||||
temperatureMultiplier: 1.5
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Poison: 3
|
||||
- !type:RemoveReagent
|
||||
reagent: Inaprovaline
|
||||
amount: 2
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#00ff5f"
|
||||
boilingPoint: 340282300000000000000000000000000000000 # Ethidium bromide, which doesn't boil.
|
||||
meltingPoint: 261.0
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustMutationLevel
|
||||
amount: 1
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Radiation: 3
|
||||
|
||||
- type: reagent
|
||||
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
|
||||
color: "#5f959c"
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
types:
|
||||
Asphyxiation: 4
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
|
||||
- type: reagent
|
||||
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"
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
damage:
|
||||
groups:
|
||||
Airloss: 7
|
||||
|
||||
- type: reagent
|
||||
id: MindbreakerToxin
|
||||
name: mindbreaker toxin
|
||||
desc: A potent hallucinogenic compound that is illegal under space law. Formerly known as LSD.
|
||||
physicalDesc: opaque
|
||||
color: "#77b58e"
|
||||
plantMetabolism:
|
||||
- !type:PlantAdjustToxins
|
||||
amount: 10
|
||||
# TODO hallucinations
|
||||
|
||||
- type: reagent
|
||||
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"
|
||||
# TODO sleeping
|
||||
|
||||
- type: reagent
|
||||
id: Histamine
|
||||
name: histamine
|
||||
desc: Histamine's effects become more dangerous depending on the dosage amount. They range from mildly annoying to incredibly lethal.
|
||||
physicalDesc: abrasive
|
||||
color: "#FA6464"
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
probability: 0.1
|
||||
damage:
|
||||
groups:
|
||||
Brute: 2
|
||||
# todo: cough, sneeze
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 30
|
||||
damage:
|
||||
groups:
|
||||
Brute: 2
|
||||
Toxin: 2
|
||||
Airloss: 2
|
||||
- !type:PopupMessage
|
||||
type: Local
|
||||
messages: [ "histamine-effect-light-itchiness" ]
|
||||
probability: 0.1
|
||||
- !type:PopupMessage
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 30
|
||||
type: Local
|
||||
messages: [ "histamine-effect-heavy-itchiness" ]
|
||||
probability: 0.2
|
||||
|
||||
- type: reagent
|
||||
id: Theobromine
|
||||
name: theobromine
|
||||
desc: Theobromine is a bitter alkaloid of the cacao plant found in chocolate, and some other foods.
|
||||
physicalDesc: grainy
|
||||
color: "#f5f5f5"
|
||||
meltingPoint: 351
|
||||
boilingPoint: 554 # I'm not a chemist, but it boils at 295, lower than melting point, idk how it works so I gave it higher value
|
||||
metabolisms:
|
||||
Poison:
|
||||
effects:
|
||||
- !type:HealthChange
|
||||
conditions:
|
||||
- !type:ReagentThreshold
|
||||
min: 1
|
||||
- !type:OrganType
|
||||
type: Animal # Applying damage to the mobs with lower metabolism capabilities
|
||||
damage:
|
||||
types:
|
||||
Poison: 4
|
||||
Reference in New Issue
Block a user