mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
/datum/disease/gbs
|
|
name = "GBS"
|
|
desc = "An extremely rare and dangerous disease that has been researched little due to its potentially apocalyptic nature."
|
|
max_stages = 4
|
|
spread_text = "Skin contact"
|
|
spread_flags = DISEASE_SPREAD_BLOOD | DISEASE_SPREAD_CONTACT_SKIN | DISEASE_SPREAD_CONTACT_FLUIDS
|
|
cure_text = /datum/reagent/medicine/synaptizine::name + " & " + /datum/reagent/sulfur::name
|
|
cures = list(/datum/reagent/medicine/synaptizine,/datum/reagent/sulfur)
|
|
cure_chance = 7.5 //higher chance to cure, since two reagents are required
|
|
agent = "Gravitokinetic Bipotential SADS+"
|
|
viable_mobtypes = list(/mob/living/carbon/human)
|
|
disease_flags = CAN_CARRY|CAN_RESIST|CURABLE
|
|
spreading_modifier = 1
|
|
severity = DISEASE_SEVERITY_BIOHAZARD
|
|
bypasses_immunity = TRUE
|
|
|
|
/datum/disease/gbs/stage_act(seconds_per_tick)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
switch(stage)
|
|
if(2)
|
|
if(SPT_PROB(2.5, seconds_per_tick))
|
|
affected_mob.emote("cough")
|
|
if(3)
|
|
if(SPT_PROB(2.5, seconds_per_tick))
|
|
affected_mob.emote("gasp")
|
|
if(SPT_PROB(5, seconds_per_tick))
|
|
to_chat(affected_mob, span_danger("Your body hurts all over!"))
|
|
if(4)
|
|
to_chat(affected_mob, span_userdanger("Your body feels as if it's trying to rip itself apart!"))
|
|
if(SPT_PROB(30, seconds_per_tick))
|
|
affected_mob.investigate_log("has been gibbed by GBS.", INVESTIGATE_DEATHS)
|
|
affected_mob.gib(DROP_ALL_REMAINS)
|
|
return FALSE
|
|
|
|
/datum/disease/gbs/no_transmission
|
|
name = "Non-Transmissible GBS"
|
|
spread_text = "Skin contact"
|
|
spread_flags = DISEASE_SPREAD_NON_CONTAGIOUS
|
|
spreading_modifier = 0
|