mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-08-28 07:06:19 +01:00
33 lines
746 B
Plaintext
33 lines
746 B
Plaintext
/datum/disease/fake_gbs
|
|
name = "GBS"
|
|
max_stages = 5
|
|
spread = "On contact"
|
|
spread_type = CONTACT_GENERAL
|
|
cure = "Synaptizine & Sulfur"
|
|
cure_id = list("synaptizine","sulfur")
|
|
agent = "Gravitokinetic Bipotential SADS-"
|
|
affected_species = list("Human", "Monkey")
|
|
desc = "If left untreated death will occur."
|
|
severity = "Major"
|
|
|
|
/datum/disease/fake_gbs/stage_act()
|
|
..()
|
|
switch(stage)
|
|
if(2)
|
|
if(prob(1))
|
|
affected_mob.emote("sneeze")
|
|
if(3)
|
|
if(prob(5))
|
|
affected_mob.emote("cough")
|
|
else if(prob(5))
|
|
affected_mob.emote("gasp")
|
|
if(prob(10))
|
|
affected_mob << "\red You're starting to feel very weak..."
|
|
if(4)
|
|
if(prob(10))
|
|
affected_mob.emote("cough")
|
|
|
|
if(5)
|
|
if(prob(10))
|
|
affected_mob.emote("cough")
|