mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 02:56:14 +01:00
Fishing!
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user