Modifies bloodsucker subtle bleedless mode to NOT leave bloodsplatter

* Leaving a bunch of blood where you're standing might draw undue attention
* You still leave blood when loud, or if subtle & bleeding
This commit is contained in:
Runa Dacino
2023-06-03 15:16:16 +02:00
parent e3a5b6b09e
commit 02703fb7cb
@@ -492,12 +492,17 @@
else
B.apply_damage(5, BRUTE, BP_HEAD) //You're getting fangs pushed into your neck. What do you expect????
B.drip(80) //Remove enough blood to make them a bit woozy, but not take oxyloss.
adjust_nutrition(400)
sleep(50)
B.drip(1)
sleep(50)
B.drip(1)
if(!noise && !bleed) //If we're quiet and careful, there should be no blood to serve as evidence
B.remove_blood(82) //Removing in one go since we dont want splatter
adjust_nutrition(410) //We drink it all, not letting any go to waste!
else //Otherwise, we're letting blood drop to the floor
B.drip(80) //Remove enough blood to make them a bit woozy, but not take oxyloss.
adjust_nutrition(400)
sleep(50)
B.drip(1)
sleep(50)
B.drip(1)
//Welcome to the adapted changeling absorb code.