mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-23 21:16:16 +01:00
42 lines
1020 B
Plaintext
42 lines
1020 B
Plaintext
/*
|
|
//////////////////////////////////////
|
|
Facial Hypertrichosis
|
|
|
|
No change to stealth.
|
|
Increases resistance.
|
|
Increases speed.
|
|
Slighlty increases transmittability
|
|
Intense Level.
|
|
|
|
BONUS
|
|
Makes the mob grow a massive beard, regardless of gender.
|
|
|
|
//////////////////////////////////////
|
|
*/
|
|
|
|
/datum/symptom/beard
|
|
|
|
name = "Facial Hypertrichosis"
|
|
desc = "The virus increases hair production significantly, causing rapid beard growth. Or it would, but now it just gives people socks. Who knows."
|
|
stealth = 0
|
|
resistance = 3
|
|
stage_speed = 2
|
|
transmittable = 1
|
|
level = 4
|
|
severity = 1
|
|
symptom_delay_min = 18
|
|
symptom_delay_max = 36
|
|
|
|
/datum/symptom/beard/Activate(datum/disease/advance/A)
|
|
if(!..())
|
|
return
|
|
var/mob/living/M = A.affected_mob
|
|
if(ishuman(M))
|
|
var/mob/living/carbon/human/H = M
|
|
switch(A.stage)
|
|
if(5)
|
|
if(H.socks != "Stockings - Programmer")
|
|
H.socks = "Stockings - Programmer"
|
|
H.update_body(0)
|
|
to_chat(H,"<span class='notice'>You suddenly feel that you're wearing socks.</span>")
|