adds in nanites in a less ridiculous form

This commit is contained in:
Akke
2016-09-28 01:56:22 +01:00
parent 4fb739bc7c
commit 520fa0c02d
2 changed files with 31 additions and 4 deletions
@@ -1058,6 +1058,33 @@ datum/reagent/medicine/syndicate_nanites/on_mob_life(mob/living/M)
..()
. = 1
/datum/reagent/medicine/miningnanites
name = "Nanites"
id = "miningnanites"
description = "It's mining magic. We don't have to explain it."
color = "#C8A5DC" // rgb: 200, 165, 220
overdose_threshold = 3 //To prevent people stacking massive amounts of a very strong healing reagent
can_synth = 0
/datum/reagent/medicine/miningnanites/on_mob_life(mob/living/M)
if(M.getBruteLoss() > 50)
M.adjustBruteLoss(-5.5*REM, 0)
else
M.adjustBruteLoss(-2.5*REM, 0)
if(M.getFireLoss() > 50)
M.adjustFireLoss(-5.5*REM, 0)
else
M.adjustFireLoss(-2.5*REM, 0)
..()
. = 1
/datum/reagent/medicine/miningnanites/overdose_process(mob/living/M)
M.adjustBruteLoss(3*REM, 0)
M.adjustFireLoss(3*REM, 0)
M.adjustToxLoss(3*REM, 0)
..()
. = 1
//used for changeling's adrenaline power
/datum/reagent/medicine/changelingAdrenaline
name = "Adrenaline"
@@ -128,11 +128,11 @@
/obj/item/weapon/reagent_containers/hypospray/medipen/survival
name = "survival medipen"
desc = "A medipen for surviving in the harshest of environments, heals and protects from environmental hazards. "
desc = "A medipen for surviving in the harshest of environments, heals and protects from environmental hazards. WARNING: Do not inject more than one pen in quick succession."
icon_state = "stimpen"
volume = 55
amount_per_transfer_from_this = 55
list_reagents = list("salbutamol" = 10, "leporazine" = 15, "tricordrazine" = 20, "epinephrine" = 10)
volume = 52
amount_per_transfer_from_this = 52
list_reagents = list("salbutamol" = 10, "leporazine" = 15, "tricordrazine" = 15, "epinephrine" = 10, "miningnanites" = 2)
/obj/item/weapon/reagent_containers/hypospray/medipen/species_mutator
name = "species mutator medipen"