mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 22:18:27 +01:00
* 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>
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
/datum/disease/gbs
|
|
name = "GBS"
|
|
max_stages = 5
|
|
spread_text = "On contact"
|
|
spread_flags = DISEASE_SPREAD_CONTACT | DISEASE_SPREAD_BLOOD | DISEASE_SPREAD_FLUIDS
|
|
cure_text = REAGENT_ADRANOL + " & " + REAGENT_SULFUR
|
|
cures = list(REAGENT_ID_ADRANOL, REAGENT_ID_SULFUR)
|
|
cure_chance = 15
|
|
agent = "Gravitokinetic Bipotential SADS+"
|
|
viable_mobtypes = list(/mob/living/carbon/human)
|
|
danger = DISEASE_PANDEMIC
|
|
disease_flags = CAN_NOT_POPULATE
|
|
|
|
/datum/disease/gbs/stage_act()
|
|
if(!..())
|
|
return FALSE
|
|
switch(stage)
|
|
if(2)
|
|
if(prob(45))
|
|
affected_mob.adjustToxLoss(5)
|
|
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")
|
|
affected_mob.adjustToxLoss(5)
|
|
if(5)
|
|
to_chat(affected_mob, span_danger("Your body feels as if it's trying to rip itself open..."))
|
|
if(prob(50))
|
|
affected_mob.delayed_gib()
|
|
else
|
|
return
|
|
|
|
/datum/disease/gbs/curable
|
|
name = "Non-Contagious GBS"
|
|
stage_prob = 5
|
|
spread_text = "Non-contagious"
|
|
spread_flags = DISEASE_SPREAD_NON_CONTAGIOUS
|
|
cure_text = REAGENT_CRYOXADONE
|
|
cures = list(REAGENT_ID_CRYOXADONE)
|
|
cure_chance = 10
|
|
agent = "gibbis"
|
|
disease_flags = CURABLE|CAN_NOT_POPULATE
|