From e0da7d43b1ca6d0d8e07b477fa78508374db89fe Mon Sep 17 00:00:00 2001 From: Roxy <94389951+SapphoQueer@users.noreply.github.com> Date: Sat, 23 Aug 2025 19:38:26 +0200 Subject: [PATCH] Restores traitor to 20tc instead of 25tc because i died to it once (#4402) ## About The Pull Request puts traitor back at 20tc ## Why It's Good For The Game Traitor, on bubber/skyrat, has had 25tc for quite some time. In part this was due to our lack of progtot (which our upstream has since gotten rid of and restored to the flat 20), and in other parts due to traitor being quite weak compared to security at its prime. But truth be told, 5tc/25% is a LOT more than it seems. This inflated amount of currency allows for quite a few combos which are less than fun to fight against. The many scarp + (something else) combos are some of the major examples. Whilst it's a major problem player in the economy, it is not worth being the sole balancing factor for cost.Discounts DO impact this, if you get lucky, you can snowball even further due to this, however, it's a mere symptom of the problem, as opposed to the root cause. The raised cost cap does allow for more nonsense. For example, if you get an esword + ebow + noslips, that's 18tc. Under normal, no-discount scenarios, this would prevent you from also getting armor. However, with the raised amount of TC we have, this allows for you also get an infiltrator mod. A full 50% damage reduction. This SIGNIFICANTLY increases your survivability. While yes, in theory, you could balance the costs of EVERY single item to work with the raised limit, this would be quite the effort to actively maintain, especially with how our upstream does regularly change/add stuff that is within the realm of traitor's gear. This change will prevent some of the more ridiculous goings-on, traitor has plenty good stuff even without that extra 5. Also skyrat guns are confirmed to be going when maintainers review the PR so both sides lose power. ## Proof Of Testing
Screenshots/Videos
## Changelog :cl: balance: Sets traitor and loneinf's TC count to 20 as opposed to the 25 they had before. /:cl: --- code/__DEFINES/antagonists.dm | 2 +- .../modules/opposing_force/code/equipment/antagonist_powers.dm | 2 +- modular_zubbers/code/modules/uplink/uplink_devices.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm index 71b05eadd2f..a2e11d368d3 100644 --- a/code/__DEFINES/antagonists.dm +++ b/code/__DEFINES/antagonists.dm @@ -338,7 +338,7 @@ GLOBAL_LIST_INIT(human_invader_antagonists, list( #define JOB_PROB 40 /// How many telecrystals a normal traitor starts with -#define TELECRYSTALS_DEFAULT 25 // BUBBER EDIT - GIMMICK TRAITOR +#define TELECRYSTALS_DEFAULT 20 /// How many telecrystals mapper/admin only "precharged" uplink implant #define TELECRYSTALS_PRELOADED_IMPLANT 10 /// The normal cost of an uplink implant; used for calcuating how many diff --git a/modular_zubbers/code/modules/opposing_force/code/equipment/antagonist_powers.dm b/modular_zubbers/code/modules/opposing_force/code/equipment/antagonist_powers.dm index b69c686d6fb..0e49ac093bb 100644 --- a/modular_zubbers/code/modules/opposing_force/code/equipment/antagonist_powers.dm +++ b/modular_zubbers/code/modules/opposing_force/code/equipment/antagonist_powers.dm @@ -6,7 +6,7 @@ item_type = /obj/item/uplink/standard name = "Standard Syndicate Uplink" description = "A mass-produced and cheap Syndicate uplink without a password and a balance of 25 telecrystals. It doesn't get more standard than this." - admin_note = "Traitor uplink with 25 telecrystals." // LIES. LIES. LIES!!! ITS NOT EMPTY, IT HAD 20 TC BEFORE! No more. + admin_note = "Traitor uplink with 20 telecrystals." // LIES. LIES. LIES!!! ITS NOT EMPTY, IT HAD 20 TC BEFORE! No more. /datum/opposing_force_equipment/antagonist_powers/tc1 item_type = /obj/item/stack/telecrystal diff --git a/modular_zubbers/code/modules/uplink/uplink_devices.dm b/modular_zubbers/code/modules/uplink/uplink_devices.dm index 81ee42201e0..52aab639a7c 100644 --- a/modular_zubbers/code/modules/uplink/uplink_devices.dm +++ b/modular_zubbers/code/modules/uplink/uplink_devices.dm @@ -1,4 +1,4 @@ /obj/item/uplink/standard -/obj/item/uplink/standard/Initialize(mapload, owner, tc_amount = 25, datum/uplink_handler/uplink_handler_override = null) +/obj/item/uplink/standard/Initialize(mapload, owner, tc_amount = 20, datum/uplink_handler/uplink_handler_override = null) . = ..()