From e03b1ac2cfe8f39c844946ec6df7ac62f62a4114 Mon Sep 17 00:00:00 2001 From: Cark <44718209+neeshacark@users.noreply.github.com> Date: Sun, 12 May 2024 18:51:21 -0700 Subject: [PATCH] lets you dig out shrapnel with the throwing knife (+ screwdriver) (#6259) # About the pull request does what it says on the tin, found this to be mildly irritating that you couldn't do it # Explain why it's good for the game mostly a convenience thing, lets marines eschew the normal bayonet boot knife for a throwable if they prefer without having to carry the bayonet in their webbing or rip the one off their gun every time. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: add: you can now remove shrapnel from your body with the M11 Throwing Knife and screwdrivers /:cl: --- code/game/objects/items/tools/maintenance_tools.dm | 1 + code/game/objects/items/weapons/blades.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/game/objects/items/tools/maintenance_tools.dm b/code/game/objects/items/tools/maintenance_tools.dm index de85ad682731..fa0998c1a1c6 100644 --- a/code/game/objects/items/tools/maintenance_tools.dm +++ b/code/game/objects/items/tools/maintenance_tools.dm @@ -50,6 +50,7 @@ throw_range = 5 matter = list("metal" = 75) attack_verb = list("stabbed") + flags_item = CAN_DIG_SHRAPNEL inherent_traits = list(TRAIT_TOOL_SCREWDRIVER) diff --git a/code/game/objects/items/weapons/blades.dm b/code/game/objects/items/weapons/blades.dm index a2a4aa8db75d..9dd1ba6481b4 100644 --- a/code/game/objects/items/weapons/blades.dm +++ b/code/game/objects/items/weapons/blades.dm @@ -125,6 +125,7 @@ attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") flags_equip_slot = SLOT_STORE|SLOT_FACE flags_armor_protection = SLOT_FACE + flags_item = CAN_DIG_SHRAPNEL /obj/item/weapon/unathiknife name = "duelling knife"