From 647ef22e70309e05e99b19b964f5a15adcd7d419 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:50:13 +0100 Subject: [PATCH] Make tracker implants purchaseable from operations (#22066) Inspired by a recent rev round where there was not enough of them, now it is possible to order the trackers. I'm not too sure if the price is good or not though, but we'll see. --------- Signed-off-by: Casper3667 <8396443+Casper3667@users.noreply.github.com> Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> --- code/modules/cargo/items/security.dm | 14 ++++++++++++++ html/changelogs/TrackingPurchase.yml | 6 ++++++ 2 files changed, 20 insertions(+) create mode 100644 html/changelogs/TrackingPurchase.yml diff --git a/code/modules/cargo/items/security.dm b/code/modules/cargo/items/security.dm index a44c04195e4..92310291237 100644 --- a/code/modules/cargo/items/security.dm +++ b/code/modules/cargo/items/security.dm @@ -56,6 +56,20 @@ groupable = TRUE spawn_amount = 1 +/singleton/cargo_item/implant_tracker + category = "security" + name = "box of tracking implants" + supplier = "nanotrasen" + description = "A full implant kit with tracker implants to keep check on prisoners." + price = 600 + items = list( + /obj/item/storage/box/tactical/trackimp + ) + access = ACCESS_SECURITY + container_type = "crate" + groupable = TRUE + spawn_amount = 1 + /singleton/cargo_item/maglight category = "security" name = "maglight" diff --git a/html/changelogs/TrackingPurchase.yml b/html/changelogs/TrackingPurchase.yml new file mode 100644 index 00000000000..a0b3fc3bffa --- /dev/null +++ b/html/changelogs/TrackingPurchase.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Tracking implants can now be ordered from operations under the security category."