mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-08 16:32:54 +00:00
Lowers the downsides to hyper, changes them for stimm, makes fuel more lethal
This commit is contained in:
@@ -162,7 +162,7 @@
|
||||
|
||||
/datum/reagent/fuel/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
if(issmall(M)) removed *= 2
|
||||
M.adjustToxLoss(2 * removed)
|
||||
M.adjustToxLoss(4 * removed)
|
||||
|
||||
/datum/reagent/fuel/touch_mob(var/mob/living/L, var/amount)
|
||||
if(istype(L))
|
||||
|
||||
@@ -92,7 +92,6 @@
|
||||
..()
|
||||
if(prob(5))
|
||||
M.emote(pick("twitch", "blink_r", "shiver"))
|
||||
M.take_organ_damage(3 * removed, 0)
|
||||
M.add_chemical_effect(CE_SPEEDBOOST, 1)
|
||||
|
||||
/datum/reagent/toxin/stimm //Homemade Hyperzine
|
||||
@@ -106,10 +105,11 @@
|
||||
|
||||
/datum/reagent/toxin/stimm/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
..()
|
||||
if(prob(20))
|
||||
if(prob(15))
|
||||
M.emote(pick("twitch", "blink_r", "shiver"))
|
||||
if(prob(5))
|
||||
M.take_organ_damage(6 * removed, 0)
|
||||
if(prob(15))
|
||||
M.visible_message("[M] shudders violently.", "You shudder uncontrollably, it hurts.")
|
||||
M.take_organ_damage(6 * removed, 0)
|
||||
M.add_chemical_effect(CE_SPEEDBOOST, 1)
|
||||
|
||||
/datum/reagent/toxin/potassium_chloride
|
||||
|
||||
Reference in New Issue
Block a user