mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-16 00:26:56 +01:00
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
34 lines
874 B
Plaintext
34 lines
874 B
Plaintext
/datum/disease/fake_gbs
|
|
name = "GBS"
|
|
max_stages = 5
|
|
spread_text = "On contact"
|
|
spread_flags = SPREAD_CONTACT_GENERAL
|
|
cure_text = "Diphenhydramine & Sulfur"
|
|
cures = list("diphenhydramine","sulfur")
|
|
agent = "Gravitokinetic Bipotential SADS-"
|
|
viable_mobtypes = list(/mob/living/carbon/human, /mob/living/carbon/human/monkey)
|
|
desc = "If left untreated death will occur."
|
|
severity = VIRUS_BIOHAZARD // Mimicking real GBS
|
|
|
|
/datum/disease/fake_gbs/stage_act()
|
|
if(!..())
|
|
return FALSE
|
|
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))
|
|
to_chat(affected_mob, SPAN_DANGER("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")
|