mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-21 19:19:12 +01:00
* Horror modifier adjusments Removes nutrition drain Makes it so your organs mutate every 200 seconds you've been under it instead of checking life ticks. Makes it so only 1-2 organs get replaced per 200 seconds instead of 2-3 Makes redspace injection chance much lower (3%->0.5%) Makes it so you won't repeatedly stab someone with fleshy spread if they already have it. Makes exiting battle stance while infected a bit better. Armor now lasts 1 minute. Lowers after 1 minute if health and the such is fixed. Allows using bruise/ointment on changeling flesh armor...it's flesh and an extension of them. Makes the fleshy virus chance of organ mutation from 5 to 0.5 Fixes GBS to be actually curable. Implements COMSIG_ITEM_ATTACK_ZONE and COMSIG_ITEM_ATTACK * Update redspace_corruption.dm * Update vorestation.dme * Update horror.dm
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
/datum/disease/gbs
|
|
name = "GBS"
|
|
medical_name = "Guillain-Barré Syndrome"
|
|
desc = "If left untreated death will occur."
|
|
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 = CURABLE | 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"
|
|
medical_name = "Non-Contagious Guillain-Barré Syndrome"
|
|
desc = "If left untreated death will occur."
|
|
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
|