From 3b34f81360ab688648f64b2dc487fe190bc8c8ae Mon Sep 17 00:00:00 2001 From: Holoo <38228316+Holoo-1@users.noreply.github.com> Date: Fri, 18 Apr 2025 09:18:01 +0300 Subject: [PATCH] Emp flashlight cost reduction (#90430) ## About The Pull Request 4 tc -> 2 tc Since radio jammer now costs 1 tc I don't see a reason why emp flashlight should cost this much. Also I would like to see it used more. ## Why It's Good For The Game Present traitors with a dilemma to solve: how to render their target unable to scream for help. Right now the obvious choices are radio jammer (1 tc), emp kit (2 tc) or sleepy pen (4 tc). Lowering costs presents a new option for stealth traitors. ## Changelog :cl: balance: emp flashlight costs 4 -> 2 tc /:cl: --- code/modules/uplink/uplink_items/stealthy_tools.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/uplink/uplink_items/stealthy_tools.dm b/code/modules/uplink/uplink_items/stealthy_tools.dm index 549d2be26d5..cde35d1fd22 100644 --- a/code/modules/uplink/uplink_items/stealthy_tools.dm +++ b/code/modules/uplink/uplink_items/stealthy_tools.dm @@ -62,7 +62,7 @@ Useful for disrupting headsets, cameras, doors, lockers and borgs during stealth operations. \ Attacking a target with this flashlight will direct an EM pulse at it and consumes a charge." item = /obj/item/flashlight/emp - cost = 4 + cost = 2 surplus = 30 /datum/uplink_item/stealthy_tools/emplight/New()