mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
Revert "Revert "Stethoscope vore shitpost""
This reverts commit 7c522fc0c4.
This commit is contained in:
@@ -155,7 +155,21 @@
|
|||||||
return 1
|
return 1
|
||||||
|
|
||||||
/obj/item/clothing/accessory/stethoscope/attack(mob/living/carbon/human/M, mob/living/user)
|
/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/message_holder2 //Hods the nutrition related 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.5)
|
||||||
|
beat_size = pick("quiet ", "hushed " ,"low " ,"hushed ")
|
||||||
|
message_holder = pick("You can hear disparate heartbeats as well.", "You can hear a different [beat_size]heartbeat too.", "It sounds like there is more than one heartbeat." ,"You can pick up a [beat_size]heatbeat along with everything else.")
|
||||||
|
if(M.nutrition > 900) //dead
|
||||||
|
message_holder2 = pick("Your listening is troubled by the occasional deep groan of their body.", "There is some moderate bubbling in the background.", "They seem to have a healthy metabolism as well.")
|
||||||
|
//Vorestation edit end
|
||||||
|
|
||||||
if(user.a_intent == I_HELP)
|
if(user.a_intent == I_HELP)
|
||||||
var/body_part = parse_zone(user.zone_sel.selecting)
|
var/body_part = parse_zone(user.zone_sel.selecting)
|
||||||
if(body_part)
|
if(body_part)
|
||||||
@@ -182,7 +196,7 @@
|
|||||||
if(heart.is_bruised() || M.getOxyLoss() > 50)
|
if(heart.is_bruised() || M.getOxyLoss() > 50)
|
||||||
sound = "[pick("odd noises in","weak")] heartbeat"
|
sound = "[pick("odd noises in","weak")] heartbeat"
|
||||||
else
|
else
|
||||||
sound = "healthy heartbeat"
|
sound = "a healthy heartbeat" //Vorestation edit
|
||||||
|
|
||||||
var/obj/item/organ/internal/heart/L = M.internal_organs_by_name[O_LUNGS]
|
var/obj/item/organ/internal/heart/L = M.internal_organs_by_name[O_LUNGS]
|
||||||
if(!L || M.losebreath)
|
if(!L || M.losebreath)
|
||||||
@@ -199,8 +213,9 @@
|
|||||||
sound_strength = "hear a weak"
|
sound_strength = "hear a weak"
|
||||||
sound = "pulse"
|
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].")
|
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][message_holder2]") //Vorestation edit. ([message holder] & [message_holder2])
|
||||||
return
|
return
|
||||||
|
|
||||||
return ..(M,user)
|
return ..(M,user)
|
||||||
|
|
||||||
//Medals
|
//Medals
|
||||||
|
|||||||
Reference in New Issue
Block a user