mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
Conflicts: code/ATMOSPHERICS/pipe/pipe_dispenser.dm code/game/machinery/computer/HolodeckControl.dm code/game/machinery/embedded_controller/embedded_controller_base.dm code/modules/mining/money_bag.dm code/modules/mob/living/carbon/carbon.dm code/modules/mob/living/silicon/mommi/mommi.dm code/modules/mob/living/simple_animal/friendly/farm_animals.dm code/modules/research/destructive_analyzer.dm code/modules/research/rdconsole.dm code/modules/research/xenoarchaeology/machinery/analysis_base.dm code/modules/research/xenoarchaeology/machinery/artifact_harvester.dm code/modules/research/xenoarchaeology/tools/ano_device_battery.dm
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
/datum/disease/fluspanish
|
|
name = "Spanish inquisition Flu"
|
|
max_stages = 3
|
|
spread = "Airborne"
|
|
cure = "Spaceacillin & Anti-bodies to the common flu"
|
|
cure_id = "spaceacillin"
|
|
cure_chance = 10
|
|
agent = "1nqu1s1t10n flu virion"
|
|
affected_species = list("Human")
|
|
permeability_mod = 0.75
|
|
desc = "If left untreated the subject will burn to death for being a heretic."
|
|
severity = "Serious"
|
|
|
|
/datum/disease/inquisition/stage_act()
|
|
..()
|
|
switch(stage)
|
|
if(2)
|
|
affected_mob.bodytemperature += 10
|
|
if(prob(5))
|
|
affected_mob.emote("sneeze")
|
|
if(prob(5))
|
|
affected_mob.emote("cough")
|
|
if(prob(1))
|
|
affected_mob << "<span class='warning'>You're burning in your own skin!</span>"
|
|
affected_mob.take_organ_damage(0,5)
|
|
|
|
if(3)
|
|
affected_mob.bodytemperature += 20
|
|
if(prob(5))
|
|
affected_mob.emote("sneeze")
|
|
if(prob(5))
|
|
affected_mob.emote("cough")
|
|
if(prob(5))
|
|
affected_mob << "<span class='warning'>You're burning in your own skin!</span>"
|
|
affected_mob.take_organ_damage(0,5)
|
|
return
|