mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
34 lines
677 B
Plaintext
34 lines
677 B
Plaintext
/*
|
|
//////////////////////////////////////
|
|
|
|
Headache
|
|
|
|
Noticable.
|
|
Highly resistant.
|
|
Increases stage speed.
|
|
Not transmittable.
|
|
Low Level.
|
|
|
|
BONUS
|
|
Displays an annoying message!
|
|
Should be used for buffing your disease.
|
|
|
|
//////////////////////////////////////
|
|
*/
|
|
|
|
/datum/symptom/headache
|
|
|
|
name = "Headache"
|
|
stealth = -1
|
|
resistance = 4
|
|
stage_speed = 2
|
|
transmittable = 0
|
|
level = 1
|
|
severity = 1
|
|
|
|
/datum/symptom/headache/Activate(datum/disease/advance/A)
|
|
..()
|
|
if(prob(SYMPTOM_ACTIVATION_PROB))
|
|
var/mob/living/M = A.affected_mob
|
|
to_chat(M, "<span class='warning'>[pick("Your head hurts.", "Your head starts pounding.")]</span>")
|
|
return |