buffs the syndicate mask, makes it cost 2 tc (#7147)

This commit is contained in:
deathride58
2018-07-20 03:39:54 -07:00
committed by kevinz000
parent b159b2f1b1
commit 77c2970b49
4 changed files with 73 additions and 5 deletions
@@ -5,3 +5,37 @@
if(O)
O.remove_atom_colour(WASHABLE_COLOUR_PRIORITY)
SEND_SIGNAL(O, COMSIG_COMPONENT_CLEAN_ACT, CLEAN_STRENGTH_BLOOD)
/datum/reagent/syndicateadrenals
name = "Syndicate Adrenaline"
id = "syndicateadrenals"
description = "Regenerates your stamina and increases your reaction time."
color = "#E62111"
overdose_threshold = 6
/datum/reagent/syndicateadrenals/on_mob_life(mob/living/M)
M.adjustStaminaLoss(-5*REM)
. = ..()
/datum/reagent/syndicateadrenals/on_mob_add(mob/living/M)
. = ..()
if(istype(M))
M.next_move_modifier *= 0.5
to_chat(M, "<span class='notice'>You feel an intense surge of energy rushing through your veins.</span>")
/datum/reagent/syndicateadrenals/on_mob_delete(mob/living/M)
. = ..()
if(istype(M))
M.next_move_modifier *= 2
to_chat(M, "<span class='notice'>You feel as though the world around you is going faster.</span>")
/datum/reagent/syndicateadrenals/overdose_start(mob/living/M)
to_chat(M, "<span class='danger'>You feel an intense pain in your chest...</span>")
return
/datum/reagent/syndicateadrenals/overdose_process(mob/living/M)
if(iscarbon(M))
var/mob/living/carbon/C = M
if(!C.undergoing_cardiac_arrest())
C.set_heartattack(TRUE)
return