From e964d26445b5ac7f2bb4ff9af3bcf103ec1d9c3c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 2 Feb 2023 17:14:00 +0100 Subject: [PATCH] [MIRROR] Clarifies that TRAC bullets are not teleporter compatible [MDB IGNORE] (#19116) * Clarifies that TRAC bullets are not teleporter compatible (#73141) ## About The Pull Request The detective's TRAC bullets embeds tracking implants into people. This implants works similarly to the injectable tracking implant, such as with the Prisoner Console or the Bluespace Locator. However, it has `allow_teleport` set to false, preventing it from being used on the teleporter. This has not been communicated in game, unless if you take out the implant from whoever you shot, and stuck it inside the implanter pad to read its in detail description. This PR updates the ammo box and the design datum's description, to make this clearer. ## Why It's Good For The Game Closes #73121 , if a future detective examines the box, they will know not to walk into the teleporter room to set up an ambush. ## Changelog :cl: spellcheck: Clarifies that TRAC bullets are not teleporter compatible /:cl: * Clarifies that TRAC bullets are not teleporter compatible --------- Co-authored-by: Profakos --- code/modules/projectiles/boxes_magazines/ammo_boxes.dm | 2 +- code/modules/research/designs/weapon_designs.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/boxes_magazines/ammo_boxes.dm b/code/modules/projectiles/boxes_magazines/ammo_boxes.dm index 60f898148da..8e412addfe6 100644 --- a/code/modules/projectiles/boxes_magazines/ammo_boxes.dm +++ b/code/modules/projectiles/boxes_magazines/ammo_boxes.dm @@ -23,7 +23,7 @@ /obj/item/ammo_box/c38/trac name = "speed loader (.38 TRAC)" - desc = "Designed to quickly reload revolvers. TRAC bullets embed a tracking implant within the target's body." + desc = "Designed to quickly reload revolvers. TRAC bullets embed a tracking implant within the target's body. The implant's signal is incompatible with teleporters." ammo_type = /obj/item/ammo_casing/c38/trac /obj/item/ammo_box/c38/match diff --git a/code/modules/research/designs/weapon_designs.dm b/code/modules/research/designs/weapon_designs.dm index 54041a848da..d5c3023f461 100644 --- a/code/modules/research/designs/weapon_designs.dm +++ b/code/modules/research/designs/weapon_designs.dm @@ -13,7 +13,7 @@ /datum/design/c38_trac name = "Speed Loader (.38 TRAC)" - desc = "Designed to quickly reload revolvers. TRAC bullets embed a tracking implant within the target's body." + desc = "Designed to quickly reload revolvers. TRAC bullets embed a tracking implant within the target's body. The implant's signal is incompatible with teleporters." id = "c38_trac" build_type = PROTOLATHE | AWAY_LATHE materials = list(/datum/material/iron = 20000, /datum/material/silver = 5000, /datum/material/gold = 1000)