Changes to effects:

fixed indentation in some cases.
added feedback message to disorientation effect.
changed mucus virus transfer to proper proc
This commit is contained in:
Chinsky
2013-06-16 11:30:47 +04:00
parent 5aa1170bd3
commit 6f45ff68c7

View File

@@ -239,6 +239,7 @@
name = "Topographical Cretinism" name = "Topographical Cretinism"
stage = 3 stage = 3
activate(var/mob/living/carbon/mob,var/multiplier) activate(var/mob/living/carbon/mob,var/multiplier)
mob << "<span class='notice'>You have trouble telling right and left apart all of a sudden.</span>"
mob.confused += 10 mob.confused += 10
/datum/disease2/effect/mutation /datum/disease2/effect/mutation
@@ -306,8 +307,8 @@
name = "Hair Loss" name = "Hair Loss"
stage = 2 stage = 2
activate(var/mob/living/carbon/mob,var/multiplier) activate(var/mob/living/carbon/mob,var/multiplier)
if(istype(M, /mob/living/carbon/human)) if(istype(mob, /mob/living/carbon/human))
var/mob/living/carbon/human/H = M var/mob/living/carbon/human/H = mob
if(!(H.h_style == "Bald") && !(H.h_style == "Balding Hair")) if(!(H.h_style == "Bald") && !(H.h_style == "Balding Hair"))
H << "<span class='danger'>Your hair starts to fall out in clumps...</span>" H << "<span class='danger'>Your hair starts to fall out in clumps...</span>"
spawn(50) spawn(50)
@@ -320,7 +321,7 @@
activate(var/mob/living/carbon/mob,var/multiplier) activate(var/mob/living/carbon/mob,var/multiplier)
mob << "<span class='notice'>You feel a rush of energy inside you!</span>" mob << "<span class='notice'>You feel a rush of energy inside you!</span>"
if (mob.reagents.get_reagent_amount("hyperzine") < 30) if (mob.reagents.get_reagent_amount("hyperzine") < 30)
+ mob.reagents.add_reagent("hyperzine", 10) mob.reagents.add_reagent("hyperzine", 10)
if (prob(30)) if (prob(30))
mob.jitteriness += 10 mob.jitteriness += 10
@@ -333,7 +334,7 @@
mob.say("*sneeze") mob.say("*sneeze")
if (prob(50)) if (prob(50))
var/obj/effect/decal/cleanable/mucus/M = new(get_turf(mob)) var/obj/effect/decal/cleanable/mucus/M = new(get_turf(mob))
M.virus2 = mob.virus2.Copy() M.virus2 = get_copy_viruses(mob.virus2)
/datum/disease2/effect/gunck /datum/disease2/effect/gunck
name = "Flemmingtons" name = "Flemmingtons"