mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-11 15:14:27 +01:00
desnowflakes el memerinnos
This commit is contained in:
@@ -34,4 +34,24 @@
|
||||
|
||||
has_organ = list(
|
||||
"brain" = /obj/item/organ/brain/golem,
|
||||
)
|
||||
)
|
||||
|
||||
/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 ..()
|
||||
@@ -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))
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user