Please review

This commit is contained in:
lbnesquik
2018-10-13 09:28:27 +02:00
parent d1749b5981
commit cb501e395d
@@ -155,14 +155,14 @@
return 1
/obj/item/clothing/accessory/stethoscope/attack(mob/living/carbon/human/M, mob/living/user)
if(ishuman(M) && isliving(user))
if(isliving(user))
//Vorestation edit start
var/message_holder //Holds pervy message
var/beat_size = "" //Small prey = quiet
for(var/belly in M.vore_organs) //Pervy edit.
var/obj/belly/B = belly
for(var/mob/living/carbon/human/H in B)
if(H.size_multiplier < 0.49)
if(H.size_multiplier < 0.5)
beat_size = pick("quiet ", "hushed " ,"low " ,"hushed ")
if(H.stat == DEAD) //dead
message_holder = pick("Your listening is troubled by the occasional groaning of their body.", "There is some moderate burbling in the background.", "They seem to have a healthy metabolism as well.")
@@ -196,7 +196,7 @@
if(heart.is_bruised() || M.getOxyLoss() > 50)
sound = "[pick("odd noises in","weak")] heartbeat"
else
sound = "a healthy heartbeat" //Vorestation
sound = "a healthy heartbeat" //Vorestation edit
var/obj/item/organ/internal/heart/L = M.internal_organs_by_name[O_LUNGS]
if(!L || M.losebreath)
@@ -213,7 +213,7 @@
sound_strength = "hear a weak"
sound = "pulse"
user.visible_message("[user] places [src] against [M]'s [body_part] and listens attentively.", "You place [src] against [their] [body_part]. You [sound_strength] [sound]. [message_holder]") //Vorestation
user.visible_message("[user] places [src] against [M]'s [body_part] and listens attentively.", "You place [src] against [their] [body_part]. You [sound_strength] [sound]. [message_holder]") //Vorestation edit. ([message holder])
return
return ..(M,user)