This commit is contained in:
Atermonera
2019-05-06 10:15:23 -08:00
committed by VirgoBot
parent 3ec181dace
commit 90ee680dd5
23 changed files with 837 additions and 3 deletions
@@ -92,6 +92,12 @@
taste_description = "egg"
color = "#FFFFAA"
/datum/reagent/nutriment/protein/murk
name = "murkfin protein"
id = "murk_protein"
taste_description = "mud"
color = "#664330"
/datum/reagent/nutriment/honey
name = "Honey"
id = "honey"
@@ -50,6 +50,25 @@
color = "#003333"
strength = 10
/datum/reagent/toxin/neurotoxic_protein
name = "toxic protein"
id = "neurotoxic_protein"
description = "A weak neurotoxic chemical commonly found in Sivian fish meat."
taste_description = "fish"
reagent_state = LIQUID
color = "#005555"
strength = 8
/datum/reagent/toxin/neurotoxic_protein/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
..()
if(alien != IS_DIONA)
if(M.canmove && !M.restrained() && istype(M.loc, /turf/space))
step(M, pick(cardinal))
if(prob(5))
M.emote(pick("twitch", "drool", "moan"))
if(prob(20))
M.adjustBrainLoss(0.1)
//R-UST port
// Produced during deuterium synthesis. Super poisonous, SUPER flammable (doesn't need oxygen to burn).
/datum/reagent/toxin/hydrophoron
@@ -2378,4 +2378,17 @@
id = "biomass"
result = "biomass"
required_reagents = list("protein" = 1, "sugar" = 1, "phoron" = 1)
<<<<<<< HEAD
result_amount = 6 // Roughly 120u per phoron sheet //VOREStation Edit
=======
result_amount = 1 // Roughly 20u per phoron sheet
// Neutralization.
/datum/chemical_reaction/neutralize_neurotoxic_protein
name = "Neutralize Toxic Proteins"
id = "neurotoxic_protein_neutral"
result = "protein"
required_reagents = list("anti_toxin" = 1, "neurotoxic_protein" = 2)
result_amount = 2
>>>>>>> a033ac4... Merge pull request #6113 from Mechoid/FishingFtWorldServer