diff --git a/code/modules/mob/living/carbon/human/species/skeleton.dm b/code/modules/mob/living/carbon/human/species/skeleton.dm index 16ae7862906..d827abab1c1 100644 --- a/code/modules/mob/living/carbon/human/species/skeleton.dm +++ b/code/modules/mob/living/carbon/human/species/skeleton.dm @@ -34,4 +34,24 @@ has_organ = list( "brain" = /obj/item/organ/brain/golem, - ) \ No newline at end of file + ) + +/datum/species/skeleton/handle_reagents(var/mob/living/carbon/human/H, var/datum/reagent/R) + // Crazylemon is still silly + if(R.id == "milk") + H.heal_overall_damage(4,4) + if(prob(5)) // 5% chance per proc to find a random limb, and mend it + var/list/our_organs = H.organs.Copy() + shuffle(our_organs) + for(var/obj/item/organ/external/L in our_organs) + if(istype(L)) + if(L.brute_dam < L.min_broken_damage) + L.status &= ~ORGAN_BROKEN + L.status &= ~ORGAN_SPLINTED + L.perma_injury = 0 + break // We're only checking one limb here, bucko + if(prob(3)) + H.say(pick("Thanks Mr Skeltal", "Thank for strong bones", "Doot doot!")) + return 1 + + return ..() \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/station.dm b/code/modules/mob/living/carbon/human/species/station.dm index c0e7aac4277..982cad4e31b 100644 --- a/code/modules/mob/living/carbon/human/species/station.dm +++ b/code/modules/mob/living/carbon/human/species/station.dm @@ -139,7 +139,7 @@ /datum/species/vulpkanin/handle_death(var/mob/living/carbon/human/H) H.stop_tail_wagging(1) -/datum/species/handle_reagents(var/mob/living/carbon/human/H, var/datum/reagent/R) +/datum/species/vulpkanin/handle_reagents(var/mob/living/carbon/human/H, var/datum/reagent/R) if(R.id in list("coco", "hot_coco", "chocolate_milk", "chocolate")) // I have no idea if chocolate is THIS bad for dogs, but I guess this should get the point across if(prob(20)) diff --git a/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm b/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm index 42c76ebaafa..dc43ffb54b4 100644 --- a/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm +++ b/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm @@ -148,24 +148,6 @@ if(M.getBruteLoss() && prob(20)) M.heal_organ_damage(1,0) if(holder.has_reagent("capsaicin")) holder.remove_reagent("capsaicin", 2) - - // Sometimes Crazylemon feels very silly - if(istype(M, /mob/living/carbon/human) && id == "milk") // This is only for the purest of milk - var/mob/living/carbon/human/H = M - if(H.species.name in list("Skeleton")) - H.heal_overall_damage(4,4) - if(prob(5)) // 5% chance per proc to find a random limb, and mend it - var/list/our_organs = H.organs.Copy() - shuffle(our_organs) - for(var/obj/item/organ/external/L in our_organs) - if(istype(L)) - if(L.brute_dam < L.min_broken_damage) - L.status &= ~ORGAN_BROKEN - L.status &= ~ORGAN_SPLINTED - L.perma_injury = 0 - break // We're only checking one limb here, bucko - if(prob(3)) - H.say(pick("Thanks Mr Skeltal", "Thank for strong bones", "Doot doot!")) ..() return