mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 12:20:09 +01:00
640cab345e
* Base stuff * Thresholds * Cockroaches, adjustments * Extrapolator + TGUI Update * Adjustments * Updoot * Revert "Updoot" This reverts commit8c27a2525e. * Gwuh * test * heals * Genetic * Holder and vomit * Indents * Compilable :) * Various fixes * Updates Symptoms * Genevirus * Neutered Symptoms * Adjustments * rads * Extra symptoms * Extra extra symptoms * Adjustments, fixes, more symptoms * Powder that makes the linter green * Finishing touches? * Fixup maps in TGM format5041170ae1: maps/expedition_vr/beach/submaps/quarantineshuttle.dmm Automatically commited by: tools\mapmerge2\fixup.py * Last bits * Defines * Oxy heal * I crave the green check * fix * Maps * Macrophages to turf * Fimxes * Fixes :) * Vomit * Preset * Fire desc * SPELLING MISTAKE * Extra stuffs * types Allows infecting children of a type * feet paws? * fix * Fixes * Update * Flags * Update _disease.dm * Infinite blood glitch (100% real) * virus data properly carries over * GODSPEED, KELENIUS YOUR 10 YEAR TODO IS FINALLY DONE * define * U2 * Implicit * Damn it Fleming * oops linter is kill * Update _reagents.dm * Extra check * . * ough * fixes * Small changes --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
/datum/disease/cold9
|
|
name = "The Cold"
|
|
medical_name = "ICE9 Cold"
|
|
max_stages = 3
|
|
spread_text = "On contact"
|
|
spread_flags = DISEASE_SPREAD_CONTACT | DISEASE_SPREAD_BLOOD | DISEASE_SPREAD_FLUIDS
|
|
cure_text = REAGENT_SPACEACILLIN
|
|
cures = list(REAGENT_ID_SPACEACILLIN)
|
|
agent = "ICE9-rhinovirus"
|
|
viable_mobtypes = list(/mob/living/carbon/human)
|
|
desc = "If left untreated the subject will slow, as if partly frozen."
|
|
danger = DISEASE_HARMFUL
|
|
|
|
/datum/disease/cold9/stage_act()
|
|
..()
|
|
switch(stage)
|
|
if(1)
|
|
if(prob(1))
|
|
affected_mob.emote("sniff")
|
|
if(2)
|
|
if(prob(10))
|
|
affected_mob.bodytemperature -= 2
|
|
if(prob(1) && prob(10))
|
|
to_chat(affected_mob, span_notice("You feel better."))
|
|
cure()
|
|
return
|
|
if(prob(1))
|
|
affected_mob.emote("sneeze")
|
|
if(prob(1))
|
|
affected_mob.emote("cough")
|
|
if(prob(1))
|
|
to_chat(affected_mob, span_danger("Your throat feels sore."))
|
|
if(prob(5))
|
|
to_chat(affected_mob, span_danger("You feel stiff."))
|
|
if(3)
|
|
if(prob(10))
|
|
affected_mob.bodytemperature -= 5
|
|
if(prob(1))
|
|
affected_mob.emote("sneeze")
|
|
if(prob(1))
|
|
affected_mob.emote("cough")
|
|
if(prob(1))
|
|
to_chat(affected_mob, span_danger("Your throat feels sore."))
|
|
if(prob(10))
|
|
to_chat(affected_mob, span_danger("You feel stiff."))
|