From db3a941652bd3803249ad76a9e6b103e2eeca4bf Mon Sep 17 00:00:00 2001 From: killer653 Date: Sun, 10 Sep 2017 19:21:21 -0400 Subject: [PATCH 1/9] Adds numbing bite --- .../carbon/human/human_attackhand_vr.dm | 1 + .../carbon/human/species/species_attack_vr.dm | 46 +++++++++++++++++++ .../living/carbon/human/species/species_vr.dm | 13 +++++- .../Chemistry-Reagents-Medicine_vr.dm | 2 + .../vore/fluffstuff/custom_items_vr.dm | 31 +++++++++---- vorestation.dme | 1 + 6 files changed, 85 insertions(+), 9 deletions(-) create mode 100644 code/modules/mob/living/carbon/human/species/species_attack_vr.dm diff --git a/code/modules/mob/living/carbon/human/human_attackhand_vr.dm b/code/modules/mob/living/carbon/human/human_attackhand_vr.dm index 9ca5b2991b..fa8c84c22c 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand_vr.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand_vr.dm @@ -60,3 +60,4 @@ claws/attack_name = "claws" claws/strong/attack_name = "strong claws" slime_glomp/attack_name = "glomp" + bite/sharp/numbing/attack_name = "numbing bite" \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm new file mode 100644 index 0000000000..f7e1e43e31 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm @@ -0,0 +1,46 @@ +/datum/unarmed_attack/bite/sharp/numbing //Is using this against someone you are truly trying to fight a bad idea? Yes. Yes it is. + attack_verb = list("bit") + attack_noun = list("fangs") + attack_sound = 'sound/weapons/bite.ogg' + shredding = 0 + sharp = 1 + edge = 1 + +/datum/unarmed_attack/bite/sharp/numbing/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage) + var/obj/item/organ/external/affecting = target.get_organ(zone) + + attack_damage = Clamp(attack_damage, 1, 5) + if(target == user) + user.visible_message("[user] [pick(attack_verb)] \himself in the [affecting.name]!") + return 0 //No venom for you. + switch(zone) + if(BP_HEAD, O_MOUTH, O_EYES) + // ----- HEAD ----- // + switch(attack_damage) + if(1 to 2) + user.visible_message("[user]'s fangs scrape across [target]'s cheek!") + to_chat(target, "Your face feels tingly!") + target.bloodstr.add_reagent("numbenzyme",attack_damage) //Have to add this here, otherwise the swtich fails. + if(3 to 4) + user.visible_message("[user]'s fangs pierce into [target]'s neck at an odd, awkward angle!") + to_chat(target, "Your neck feels like it's on fire before going numb!") + target.bloodstr.add_reagent("numbenzyme",attack_damage) + if(5) + user.visible_message("[user] sinks \his [pick(attack_noun)] deep into [target]'s neck, causing the vein to bulge outwards at some type of chemical is pumped into it!") + to_chat(target, "Your neck feels like it's going to burst! Moments later, you simply can't feel your neck any longer, the numbness beginning to spread throughout your body!") + target.bloodstr.add_reagent("numbenzyme",attack_damage) + else + // ----- BODY ----- // + switch(attack_damage) + if(1 to 2) + user.visible_message("[user]'s fangs scrape across [target]'s [affecting.name]!") + to_chat(target, "Your [affecting.name] feels tingly!") + target.bloodstr.add_reagent("numbenzyme",attack_damage) + if(3 to 4) + user.visible_message("[user]'s fangs pierce [pick("", "", "the side of")] [target]'s [affecting.name]!") + to_chat(target, "Your [affecting.name] feels like it's on fire before going numb!") + target.bloodstr.add_reagent("numbenzyme",attack_damage) + if(5) + user.visible_message("[user]'s fangs sink deep into [target]'s [affecting.name], one of their veins bulging outwards from the sudden fluid pumped into it!") + to_chat(target, "Your [affecting.name] feels like it's going to burst! Moments later, you simply can't feel your [affecting.name] any longer, the numbness slowly spreading throughout your body!") + target.bloodstr.add_reagent("numbenzyme",attack_damage) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species_vr.dm b/code/modules/mob/living/carbon/human/species/species_vr.dm index 7e330ad2af..228d2d9c31 100644 --- a/code/modules/mob/living/carbon/human/species/species_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_vr.dm @@ -15,4 +15,15 @@ var/wing_hair var/wing var/wing_animation - var/icobase_wing \ No newline at end of file + var/icobase_wing + +/datum/species/proc/update_attack_types() + unarmed_attacks = list() + for(var/u_type in unarmed_types) + unarmed_attacks += new u_type() + +/datum/species/proc/give_numbing_bite() //Holy SHIT this is hacky, but it works. Updating a mob's attacks mid game is insane. + unarmed_attacks = list() + unarmed_types += /datum/unarmed_attack/bite/sharp/numbing + for(var/u_type in unarmed_types) + unarmed_attacks += new u_type() \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index bebbb91325..2788c85aa6 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -26,6 +26,8 @@ color = "#800080" metabolism = 0.02 mrate_static = TRUE + overdose = 20 //High OD. This is to make numbing bites have somewhat of a downside if you get bit too much. Have to go to medical for dialysis. + scannable = 0 //Let's not have medical mechs able to make an extremely strong organic painkiller /datum/reagent/numbing_enzyme/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.add_chemical_effect(CE_PAINKILLER, 200) diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 306bad2094..a4b1007a4d 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1377,17 +1377,18 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie age = 39 blood_type = "O-" sex = "Female" -/obj/item/weapon/fluff/kitchi_injector - name = "Kitchi Monkey Injector" - desc = "Allows the user (Kitchi) to transform into a monkey. Single use." + +/obj/item/weapon/fluff/injector //Injectors. Custom item used to explain wild changes in a mob's body or chemistry. + name = "Injector" + desc = "Some type of injector." icon = 'icons/obj/items.dmi' icon_state = "dnainjector" -/obj/item/weapon/fluff/kitchi_injector/attack(mob/living/M, mob/living/user) +/obj/item/weapon/fluff/injector/monkey + name = "Lesser Form Injector" + desc = "Turn the user into their lesser, more primal form." - if(M.ckey != "Ketrai") - user << "Something compels you to not use this injector." - return +/obj/item/weapon/fluff/injector/monkey/attack(mob/living/M, mob/living/user) if(usr == M) //Is the person using it on theirself? if(ishuman(M)) //If so, monkify them. @@ -1395,4 +1396,18 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie H.monkeyize() qdel(src) //One time use. else //If not, do nothing. - to_chat(user," You are unable to inject other people.") + to_chat(user,"You are unable to inject other people.") + +/obj/item/weapon/fluff/injector/numb_bite + name = "Numbing Venom Injector" + desc = "Injects the user with a high dose of some type of chemical, causing any chemical glands they have to kick into overdrive and create the production of a numbing enzyme that is injected via bites.." + +/obj/item/weapon/fluff/injector/numb_bite/attack(mob/living/M, mob/living/user) + + if(usr == M) //Is the person using it on theirself? + if(ishuman(M)) //Give them numbing bites. + var/mob/living/carbon/human/H = user + H.species.give_numbing_bite() //This was annoying, but this is the easiest way of performing it. + qdel(src) //One time use. + else //If not, do nothing. + to_chat(user,"You are unable to inject other people.") \ No newline at end of file diff --git a/vorestation.dme b/vorestation.dme index f5838a9928..bd08428ed2 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1818,6 +1818,7 @@ #include "code\modules\mob\living\carbon\human\update_icons_vr.dm" #include "code\modules\mob\living\carbon\human\species\species.dm" #include "code\modules\mob\living\carbon\human\species\species_attack.dm" +#include "code\modules\mob\living\carbon\human\species\species_attack_vr.dm" #include "code\modules\mob\living\carbon\human\species\species_getters.dm" #include "code\modules\mob\living\carbon\human\species\species_getters_vr.dm" #include "code\modules\mob\living\carbon\human\species\species_helpers.dm" From b0049c7f0ce4db11c1128c79bf0c334243c91f17 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sun, 10 Sep 2017 22:07:29 -0400 Subject: [PATCH 2/9] Adds OD effects --- .../Chemistry-Reagents-Medicine_vr.dm | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index 2788c85aa6..bd3c984bb0 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -24,10 +24,37 @@ taste_description = "sourness" reagent_state = LIQUID color = "#800080" - metabolism = 0.02 + metabolism = 0.1 //Lasts up to 200 seconds if you give 20u which is OD. mrate_static = TRUE overdose = 20 //High OD. This is to make numbing bites have somewhat of a downside if you get bit too much. Have to go to medical for dialysis. scannable = 0 //Let's not have medical mechs able to make an extremely strong organic painkiller /datum/reagent/numbing_enzyme/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.add_chemical_effect(CE_PAINKILLER, 200) + if(prob(1)) + to_chat(H,"Your body feels numb, a light, tingly sensation spreading throughout it.") + +/datum/reagent/numbing_enzyme/overdose(var/mob/living/carbon/M, var/alien) + //..() //Add this if you want it to do toxin damage. Personally, let's allow them to have the horrid effects below without toxin damage. + if(ishuman(M)) + var/mob/living/carbon/human/H = M + if(prob(1) + to_chat(H,"Your entire body feels numb and the sensation of pins and needles continually assaults you. You blink and the next thing you know, your legs give out momentarily!") + H.AdjustWeakened(5) //Fall onto the floor for a few moments. + H.Confuse(15) //Be unable to walk for a bit longer. + if(prob(1) + if(H.losebreath <= 1 && H.oxyloss <= 20) //Let's not suffocate them to the point that they pass out. + to_chat(H,"You feel a sharp stabbing pain in your chest and quickly realize that your lungs have stopped functioning!") //Let's scare them a bit. + H.losebreath = 10 + H.adjustOxyLoss(5) + if(prob(2) + to_chat(H,"You feel a dull pain behind your eyes and at thee back of your head...") + H.hallucination += 20 //It messes with your mind for some reason. + H.eye_blurry += 20 //Groggy vision for a small bit. + if(prob(3)) + to_chat(H,"You shiver, your body continually being assaulted by the sensation of pens and needles.") + H.emote("shiver") + H.make_jittery(10) + if(prob(3)) + to_chat(H,"Your tongue feels numb and unresponsive.") + H.stuttering += 20 From 4befc0dedebb3dd935edee210f03202a10362593 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sun, 10 Sep 2017 22:13:34 -0400 Subject: [PATCH 3/9] ))))))))))))))))))))))))))))))))))))))))))))))) --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index bd3c984bb0..51ab3e9714 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -38,16 +38,16 @@ //..() //Add this if you want it to do toxin damage. Personally, let's allow them to have the horrid effects below without toxin damage. if(ishuman(M)) var/mob/living/carbon/human/H = M - if(prob(1) + if(prob(1)) to_chat(H,"Your entire body feels numb and the sensation of pins and needles continually assaults you. You blink and the next thing you know, your legs give out momentarily!") H.AdjustWeakened(5) //Fall onto the floor for a few moments. H.Confuse(15) //Be unable to walk for a bit longer. - if(prob(1) + if(prob(1)) if(H.losebreath <= 1 && H.oxyloss <= 20) //Let's not suffocate them to the point that they pass out. to_chat(H,"You feel a sharp stabbing pain in your chest and quickly realize that your lungs have stopped functioning!") //Let's scare them a bit. H.losebreath = 10 H.adjustOxyLoss(5) - if(prob(2) + if(prob(2)) to_chat(H,"You feel a dull pain behind your eyes and at thee back of your head...") H.hallucination += 20 //It messes with your mind for some reason. H.eye_blurry += 20 //Groggy vision for a small bit. From 92e5a196031e8a0559f936d02bc8e75256ccdd88 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sun, 10 Sep 2017 22:37:54 -0400 Subject: [PATCH 4/9] Update Chemistry-Reagents-Medicine_vr.dm --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index 51ab3e9714..a23ed4293a 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -32,7 +32,7 @@ /datum/reagent/numbing_enzyme/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.add_chemical_effect(CE_PAINKILLER, 200) if(prob(1)) - to_chat(H,"Your body feels numb, a light, tingly sensation spreading throughout it.") + to_chat(M,"Your body feels numb, a light, tingly sensation spreading throughout it.") /datum/reagent/numbing_enzyme/overdose(var/mob/living/carbon/M, var/alien) //..() //Add this if you want it to do toxin damage. Personally, let's allow them to have the horrid effects below without toxin damage. From ce1a10eea16169630ad25801ca7ffdd86ab81568 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sun, 10 Sep 2017 22:38:36 -0400 Subject: [PATCH 5/9] Update Chemistry-Reagents-Medicine_vr.dm --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index a23ed4293a..2abf7ca1fe 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -32,7 +32,7 @@ /datum/reagent/numbing_enzyme/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.add_chemical_effect(CE_PAINKILLER, 200) if(prob(1)) - to_chat(M,"Your body feels numb, a light, tingly sensation spreading throughout it.") + to_chat(M,"Your body feels numb as a light, tingly sensation spreads throughout it.") /datum/reagent/numbing_enzyme/overdose(var/mob/living/carbon/M, var/alien) //..() //Add this if you want it to do toxin damage. Personally, let's allow them to have the horrid effects below without toxin damage. @@ -41,7 +41,7 @@ if(prob(1)) to_chat(H,"Your entire body feels numb and the sensation of pins and needles continually assaults you. You blink and the next thing you know, your legs give out momentarily!") H.AdjustWeakened(5) //Fall onto the floor for a few moments. - H.Confuse(15) //Be unable to walk for a bit longer. + H.Confuse(15) //Be unable to walk correctly for a bit longer. if(prob(1)) if(H.losebreath <= 1 && H.oxyloss <= 20) //Let's not suffocate them to the point that they pass out. to_chat(H,"You feel a sharp stabbing pain in your chest and quickly realize that your lungs have stopped functioning!") //Let's scare them a bit. From 9e4502a09beacfd3c67a5dc8f9ef0fa30ffcd03b Mon Sep 17 00:00:00 2001 From: killer653 Date: Thu, 14 Sep 2017 15:33:58 -0400 Subject: [PATCH 6/9] Adds numbing fangs as a trait --- .../carbon/human/species/station/traits_vr/positive.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm index 984f886acb..85d1ceab37 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm @@ -62,6 +62,11 @@ cost = 1 var_changes = list("unarmed_types" = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws, /datum/unarmed_attack/bite/sharp)) +/datum/trait/melee_attack_fangs + name = "Sharp Melee & Numbing Fangs" + cost = 2 + var_changes = list("unarmed_types" = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws, /datum/unarmed_attack/bite/sharp, /datum/unarmed_attack/bite/sharp/numbing)) + /datum/trait/brute_resist name = "Brute Resist" desc = "Adds some resistance to brute damage sources." From e0eed41f8334bf769483298e8128afd85c4b5fb1 Mon Sep 17 00:00:00 2001 From: killer653 Date: Thu, 14 Sep 2017 15:34:22 -0400 Subject: [PATCH 7/9] Why didn't this save AHHH --- .../living/carbon/human/species/station/traits_vr/positive.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm index 85d1ceab37..cdcc3fd321 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm @@ -64,6 +64,7 @@ /datum/trait/melee_attack_fangs name = "Sharp Melee & Numbing Fangs" + desc = "Provides sharp melee attacks that do slightly more damage, along with fangs that makes the person bit unable to feel their body or pain." cost = 2 var_changes = list("unarmed_types" = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws, /datum/unarmed_attack/bite/sharp, /datum/unarmed_attack/bite/sharp/numbing)) From 37dbb666ab4039221a899e0960d3c8498c37e0c8 Mon Sep 17 00:00:00 2001 From: killer653 Date: Thu, 14 Sep 2017 15:57:32 -0400 Subject: [PATCH 8/9] Adds a slowdown. Definitely noticable, not deliberating. --- .../modules/mob/living/carbon/human/human_movement.dm | 2 ++ .../Chemistry-Reagents-Medicine_vr.dm | 11 ++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index ca82ecd345..eee61c819b 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -34,6 +34,8 @@ if (feral >= 10) //crazy feral animals give less and less of a shit about pain and hunger as they get crazier tally = max(species.slowdown, species.slowdown+((tally-species.slowdown)/(feral/10))) // As feral scales to damage, this amounts to an effective +1 slowdown cap if(shock_stage >= 10) tally -= 1.5 //this gets a +3 later, feral critters take reduced penalty + if(reagents.has_reagent("numbenzyme")) + tally += 1.5 //A tad bit of slowdown. //VOREstation end if(istype(buckled, /obj/structure/bed/chair/wheelchair)) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index 94f8d2c7b5..87a8e053d9 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -31,24 +31,25 @@ /datum/reagent/numbing_enzyme/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.add_chemical_effect(CE_PAINKILLER, 200) - if(prob(1)) - to_chat(M,"Your body feels numb as a light, tingly sensation spreads throughout it.") + if(prob(0.01)) //1 in 10000 chance per tick. Extremely rare. + to_chat(M,"Your body feels numb as a light, tingly sensation spreads throughout it, like some odd warmth.") + //Not noted here, but a movement debuff of 1.5 is handed out in human_movement.dm when numbing_enzyme is in a person's bloodstream! /datum/reagent/numbing_enzyme/overdose(var/mob/living/carbon/M, var/alien) //..() //Add this if you want it to do toxin damage. Personally, let's allow them to have the horrid effects below without toxin damage. if(ishuman(M)) var/mob/living/carbon/human/H = M if(prob(1)) - to_chat(H,"Your entire body feels numb and the sensation of pins and needles continually assaults you. You blink and the next thing you know, your legs give out momentarily!") + to_chat(H,"Your entire body feels numb and the sensation of pins and needles continually assaults you. You blink and the next thing you know, your legs give out momentarily!") H.AdjustWeakened(5) //Fall onto the floor for a few moments. H.Confuse(15) //Be unable to walk correctly for a bit longer. if(prob(1)) if(H.losebreath <= 1 && H.oxyloss <= 20) //Let's not suffocate them to the point that they pass out. - to_chat(H,"You feel a sharp stabbing pain in your chest and quickly realize that your lungs have stopped functioning!") //Let's scare them a bit. + to_chat(H,"You feel a sharp stabbing pain in your chest and quickly realize that your lungs have stopped functioning!") //Let's scare them a bit. H.losebreath = 10 H.adjustOxyLoss(5) if(prob(2)) - to_chat(H,"You feel a dull pain behind your eyes and at thee back of your head...") + to_chat(H,"You feel a dull pain behind your eyes and at thee back of your head...") H.hallucination += 20 //It messes with your mind for some reason. H.eye_blurry += 20 //Groggy vision for a small bit. if(prob(3)) From b44c380c1323302c952305de48b0e1105f277a01 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Thu, 14 Sep 2017 18:13:35 -0400 Subject: [PATCH 9/9] Pens and needles. Ouch. --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm index 87a8e053d9..c7db86d821 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine_vr.dm @@ -5,7 +5,6 @@ taste_description = "milk" reagent_state = SOLID color = "#d5e2e5" - overdose = REAGENTS_OVERDOSE /datum/reagent/adranol/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_DIONA) @@ -53,7 +52,7 @@ H.hallucination += 20 //It messes with your mind for some reason. H.eye_blurry += 20 //Groggy vision for a small bit. if(prob(3)) - to_chat(H,"You shiver, your body continually being assaulted by the sensation of pens and needles.") + to_chat(H,"You shiver, your body continually being assaulted by the sensation of pins and needles.") H.emote("shiver") H.make_jittery(10) if(prob(3))