From f24d464abc2a4e4a397b8bb285c72c66d6ddbe18 Mon Sep 17 00:00:00 2001 From: LT3 <83487515+lessthnthree@users.noreply.github.com> Date: Wed, 3 Dec 2025 02:25:11 -0800 Subject: [PATCH] Updates silent jaws of recovery (#94082) --- code/datums/components/crafting/tools.dm | 3 ++- code/game/objects/items/kitchen.dm | 2 +- code/game/objects/items/tools/crowbar.dm | 7 ++++--- code/game/objects/items/tools/screwdriver.dm | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/code/datums/components/crafting/tools.dm b/code/datums/components/crafting/tools.dm index dec2d685c11..640b6fdfede 100644 --- a/code/datums/components/crafting/tools.dm +++ b/code/datums/components/crafting/tools.dm @@ -120,7 +120,8 @@ category = CAT_TOOLS /datum/crafting_recipe/jaws_of_recovery - name = "Modified Jaws of Life" + name = "Modified Jaws of Recovery" + desc = "This one acts like regular jaws of life, letting you pry any door and doesn't announce doors you're prying open." time = 10 SECONDS tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_WELDER) result = /obj/item/crowbar/power/paramedic/silent diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index bf6b715d2b3..95412ef4088 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -131,7 +131,7 @@ /obj/item/knife/kitchen/silicon/examine() . = ..() - . += " It's fitted with a [tool_behaviour] head." + . += "It's fitted with a [tool_behaviour] head." /obj/item/knife/kitchen/silicon/attack_self(mob/user) playsound(get_turf(user), 'sound/items/tools/change_drill.ogg', 50, TRUE) diff --git a/code/game/objects/items/tools/crowbar.dm b/code/game/objects/items/tools/crowbar.dm index 04cb4cc1c5a..bd7ccaca3aa 100644 --- a/code/game/objects/items/tools/crowbar.dm +++ b/code/game/objects/items/tools/crowbar.dm @@ -175,7 +175,7 @@ /obj/item/crowbar/power/examine() . = ..() - . += " It's fitted with a [tool_behaviour == first_tool_behavior ? inactive_text : active_text] head." + . += "It's fitted with a [tool_behaviour == first_tool_behavior ? inactive_text : active_text] head." /* * Signal proc for [COMSIG_TRANSFORMING_ON_TRANSFORM]. @@ -333,8 +333,9 @@ ) /obj/item/crowbar/power/paramedic/silent - name = "modified jaws of recovery" - desc = "Modified version for jaws of life, made to act like jaws of recovery. This one doesn't announce doors you're prying open and lets you pry any door, acting like regular jaws of life" + desc = "A specialized version of the jaws of life, primarily to be used by paramedics to recover the injured and the recently deceased. Rather than a cutting arm, this tool has a bonesetting apparatus. \ + This one looks upgraded." + w_class = WEIGHT_CLASS_NORMAL // it's a modified, normal jaws limit_jaws_access = FALSE radio_alert = FALSE diff --git a/code/game/objects/items/tools/screwdriver.dm b/code/game/objects/items/tools/screwdriver.dm index e1b644a08cc..c05a5048646 100644 --- a/code/game/objects/items/tools/screwdriver.dm +++ b/code/game/objects/items/tools/screwdriver.dm @@ -143,7 +143,7 @@ /obj/item/screwdriver/power/examine() . = ..() - . += " It's fitted with a [tool_behaviour == TOOL_SCREWDRIVER ? "screw" : "bolt"] bit." + . += "It's fitted with a [tool_behaviour == TOOL_SCREWDRIVER ? "screw" : "bolt"] bit." /obj/item/screwdriver/power/suicide_act(mob/living/user) if(tool_behaviour == TOOL_SCREWDRIVER)