diff --git a/code/WorkInProgress/Cib/MedicalSideEffects.dm b/code/WorkInProgress/Cib/MedicalSideEffects.dm index 721c7bf5669..c886a8abe91 100644 --- a/code/WorkInProgress/Cib/MedicalSideEffects.dm +++ b/code/WorkInProgress/Cib/MedicalSideEffects.dm @@ -51,29 +51,6 @@ // Effect slowly growing stronger M.strength+=0.08 -// HEADACHE -// ======== -/datum/medical_effect/headache/name = "Headache" -/datum/medical_effect/headache/on_life(mob/living/carbon/human/H, strength) - switch(strength) - if(1 to 10) - H.custom_pain("You feel a light pain in your head.",0) - if(11 to 30) - H.custom_pain("You feel a throbbing pain in your head!",1) - if(31 to 99) - H.custom_pain("You feel an excrutiating pain in your head!",1) - H.adjustBrainLoss(1) - if(99 to INFINITY) - H.custom_pain("It feels like your head is about to split open!",1) - H.adjustBrainLoss(3) - var/datum/organ/external/O = H.organs_by_name["head"] - O.take_damage(0, 1, 0, "Headache") - -/datum/medical_effect/headache/cure(mob/living/carbon/human/H) - if(H.reagents.has_reagent("alkysine")) - return 1 - return 0 - // HEADACHE // ======== /datum/medical_effect/headache/name = "Headache"