mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
Better Parapens (#7428)
This commit is contained in:
@@ -186,9 +186,7 @@
|
||||
|
||||
/obj/item/pen/reagent/paralysis/New()
|
||||
..()
|
||||
reagents.add_reagent("zombiepowder", 10)
|
||||
reagents.add_reagent("cryptobiolin", 15)
|
||||
|
||||
reagents.add_reagent("dextrotoxin", 10)
|
||||
/*
|
||||
* Chameleon pen
|
||||
*/
|
||||
|
||||
@@ -722,4 +722,34 @@
|
||||
H.revive()
|
||||
H.change_skin_color(r, g, b)
|
||||
playsound(H.loc, 'sound/hallucinations/far_noise.ogg', 50, 1)
|
||||
to_chat(H,"<font size='3'><span class='cult'>You return back to life as the undead, all that is left is the hunger to consume the living and the will to spread the infection.</font></span>")
|
||||
to_chat(H,"<font size='3'><span class='cult'>You return back to life as the undead, all that is left is the hunger to consume the living and the will to spread the infection.</font></span>")
|
||||
|
||||
|
||||
|
||||
/datum/reagent/toxin/dextrotoxin
|
||||
name = "Dextrotoxin"
|
||||
id = "dextrotoxin"
|
||||
description = "A complicated to make and highly illegal drug that cause paralysis mostly focused on the limbs."
|
||||
reagent_state = LIQUID
|
||||
color = "#002067"
|
||||
metabolism = REM * 0.2
|
||||
strength = 0
|
||||
taste_description = "danger"
|
||||
|
||||
/datum/reagent/toxin/dextrotoxin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
..()
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(istype(H) && (H.species.flags & NO_SCAN))
|
||||
return
|
||||
if (!(CE_UNDEXTROUS in M.chem_effects))
|
||||
to_chat(M, span("warning", "Your limbs start to feel numb and weak, and your legs wobble as it becomes hard to stand..."))
|
||||
M.confused = max(M.confused, 250)
|
||||
M.add_chemical_effect(CE_UNDEXTROUS, 1)
|
||||
if(dose > 0.2)
|
||||
M.Weaken(10)
|
||||
|
||||
/datum/reagent/toxin/dextrotoxin/Destroy()
|
||||
if(holder && holder.my_atom && ismob(holder.my_atom))
|
||||
var/mob/M = holder.my_atom
|
||||
to_chat(M, span("warning", "You can feel sensation creeping back into your limbs..."))
|
||||
return ..()
|
||||
|
||||
@@ -447,6 +447,13 @@
|
||||
required_reagents = list("carpotoxin" = 5, "stoxin" = 5, "copper" = 5)
|
||||
result_amount = 2
|
||||
|
||||
/datum/chemical_reaction/dextrotoxin
|
||||
name = "Dextrotoxin"
|
||||
id = "dextrotoxin"
|
||||
result = "dextrotoxin"
|
||||
required_reagents = list("carpotoxin" = 3, "stoxin" = 10, "phoron" = 5)
|
||||
result_amount = 5
|
||||
|
||||
/datum/chemical_reaction/mindbreaker
|
||||
name = "Mindbreaker Toxin"
|
||||
id = "mindbreaker"
|
||||
|
||||
Reference in New Issue
Block a user