Better Parapens (#7428)

This commit is contained in:
Kaedwuff
2019-12-03 12:42:05 -06:00
committed by Werner
parent 5655eadd69
commit 9b75bfa022
7 changed files with 842 additions and 757 deletions

View File

@@ -55,6 +55,7 @@
#define CE_SPEEDBOOST "gofast" // Hyperzine
#define CE_BERSERK "berserk"
#define CE_PACIFIED "pacified"
#define CE_UNDEXTROUS "undextrous" // arms no work right
// Chemistry lists.
var/list/tachycardics = list("coffee", "inaprovaline", "hyperzine", "nitroglycerin", "thirteenloko", "nicotine") // Increase heart rate.

View File

@@ -20,7 +20,7 @@
list("mindbreaker" = 10, "space_drugs" = 20) = 3,
list("carpotoxin" = 15) = 2,
list("impedrezene" = 15) = 2,
list("zombiepowder" = 10) = 1)
list("dextrotoxin" = 10) = 1)
/obj/item/reagent_containers/glass/beaker/vial/random/Initialize()
. = ..()

File diff suppressed because it is too large Load Diff

View File

@@ -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
*/

View File

@@ -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 ..()

View File

@@ -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"