Skip to content

Commit

Permalink
Minor inaprovaline lore change + buff to bleeding reduction.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 committed Feb 6, 2017
1 parent cec6597 commit 3f672bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions code/modules/organs/internal/heart.dm
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ var/const/BLOOD_VOLUME_SURVIVE = 40
if(PULSE_2FAST)
blood_max *= 1.5

if(CE_STABLE in owner.chem_effects) // inaprovaline
blood_max *= 0.5

if(world.time >= next_blood_squirt && istype(owner.loc, /turf) && do_spray.len)
owner.visible_message("<span class='danger'>Blood squirts from \the [src]'s [pick(do_spray)]!</span>")
// It becomes very spammy otherwise. Arterial bleeding will still happen outside of this block, just not the squirt effect.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/datum/reagent/inaprovaline
name = "Inaprovaline"
id = "inaprovaline"
description = "Inaprovaline is a synaptic stimulant and cardiostimulant. Commonly used to stabilize patients."
description = "Inaprovaline is a multipurpose neurostimulant and cardioregulator. Commonly used to slow bleeding and stabilize patients."
taste_description = "bitterness"
reagent_state = LIQUID
color = "#00BFFF"
Expand All @@ -16,7 +16,7 @@
if(alien != IS_DIONA)
M.add_chemical_effect(CE_STABLE)
M.add_chemical_effect(CE_PAINKILLER, 10)
M.add_chemical_effect(CE_PULSE, 1)
M.add_chemical_effect(CE_PULSE, -1)

/datum/reagent/bicaridine
name = "Bicaridine"
Expand Down

0 comments on commit 3f672bf

Please sign in to comment.