mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 22:19:30 +01:00
adds in nanites in a less ridiculous form
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user