Skip to content

Commit

Permalink
Removes miasma sickness (#4952)
Browse files Browse the repository at this point in the history
* Removes miasma sickness

* Makes it a code block rather than a complete removal
  • Loading branch information
Gw0sty authored Jan 18, 2025
1 parent 8636941 commit 90e56f6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/modules/surgery/organs/lungs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -483,13 +483,15 @@
/obj/item/organ/internal/lungs/proc/too_much_miasma(mob/living/carbon/breather, datum/gas_mixture/breath, miasma_pp, old_miasma_pp)
// Inhale Miasma. Exhale nothing.
breathe_gas_volume(breath, /datum/gas/miasma)
/* monkestation removal: Death to advance
// Miasma sickness
if(prob(0.5 * miasma_pp))
var/datum/disease/advance/miasma_disease = new /datum/disease/advance/random(max_symptoms = min(round(max(miasma_pp / 2, 1), 1), 6), max_level = min(round(max(miasma_pp, 1), 1), 8))
// tl;dr the first argument chooses the smaller of miasma_pp/2 or 6(typical max virus symptoms), the second chooses the smaller of miasma_pp or 8(max virus symptom level)
// Each argument has a minimum of 1 and rounds to the nearest value. Feel free to change the pp scaling I couldn't decide on good numbers for it.
miasma_disease.name = "Unknown"
miasma_disease.try_infect(breather)
*/
// Miasma side effects
switch(miasma_pp)
if(0.25 to 5)
Expand Down

0 comments on commit 90e56f6

Please sign in to comment.