mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
* Adds the check components * Adds in trailing newlines * Converts all CRLF to LF * Post merge EOF * Post merge line endings * Final commit
35 lines
657 B
Plaintext
35 lines
657 B
Plaintext
/*
|
|
//////////////////////////////////////
|
|
|
|
Itching
|
|
|
|
Not noticable or unnoticable.
|
|
Resistant.
|
|
Increases stage speed.
|
|
Little transmittable.
|
|
Low Level.
|
|
|
|
BONUS
|
|
Displays an annoying message!
|
|
Should be used for buffing your disease.
|
|
|
|
//////////////////////////////////////
|
|
*/
|
|
|
|
/datum/symptom/itching
|
|
|
|
name = "Itching"
|
|
stealth = 0
|
|
resistance = 3
|
|
stage_speed = 3
|
|
transmittable = 1
|
|
level = 1
|
|
severity = 1
|
|
|
|
/datum/symptom/itching/Activate(datum/disease/advance/A)
|
|
..()
|
|
if(prob(SYMPTOM_ACTIVATION_PROB))
|
|
var/mob/living/M = A.affected_mob
|
|
to_chat(M, "<span class='warning'>Your [pick("back", "arm", "leg", "elbow", "head")] itches.</span>")
|
|
return
|