mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-04 19:01:17 +01:00
b0463d3c83
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
29 lines
881 B
Plaintext
29 lines
881 B
Plaintext
/datum/disease/fluspanish
|
|
name = "Spanish Inquisition Flu"
|
|
max_stages = 3
|
|
spread_text = "Airborne"
|
|
cure_text = "Spaceacillin"
|
|
cures = list("spaceacillin")
|
|
cure_chance = 10
|
|
agent = "1nqu1s1t10n flu virion"
|
|
viable_mobtypes = list(/mob/living/carbon/human)
|
|
permeability_mod = 0.75
|
|
desc = "If left untreated the subject will burn to death for being a heretic."
|
|
severity = VIRUS_HARMFUL
|
|
|
|
/datum/disease/fluspanish/stage_act()
|
|
if(!..())
|
|
return FALSE
|
|
if(stage < 2)
|
|
return
|
|
|
|
var/stage_factor = stage - 1
|
|
affected_mob.bodytemperature += 10 * stage_factor // Enough to consistently cook certain species alive at stage 3
|
|
if(prob(3 * stage_factor))
|
|
affected_mob.emote("sneeze")
|
|
if(prob(3 * stage_factor))
|
|
affected_mob.emote("cough")
|
|
if(prob(2.5 * stage_factor))
|
|
to_chat(affected_mob, SPAN_DANGER("You're burning in your own skin!"))
|
|
affected_mob.adjustFireLoss(5)
|