From d57468525d2d9497ce0ba49bce2e421d5c4967ff Mon Sep 17 00:00:00 2001 From: KateAnbolho <141269115+KateAnbolho@users.noreply.github.com> Date: Sun, 14 Sep 2025 03:28:40 -0700 Subject: [PATCH] Re-Buffs the Paddy a bit + Nerfs the Exosuit Disabler (#4263) ## About The Pull Request TG decided to take the paddy out back and break it's knees after a CERTAIN INCIDENT. This puts the speed in between the 1 and 2 chassis for better balance, and ensures we don't have any low pressure lightspeed tomfoolery anymore. This also drops the exosuit disabler to 4 bolts with variance instead of 5. ## Why It's Good For The Game The paddy was unrightfully nerfed into the fucking ground, but at the same time the disabler was really strong with 5 bolts. ## Proof Of Testing worked on my machine ## Changelog :cl: balance: Upped the paddy's speed to sit between the mk1 and mk2 balance: Nerfed the exosuit disabler to 4 projectiles instead of 5 /:cl: --- .../code/modules/vehicles/mecha/equipment/weapons.dm | 2 ++ modular_zubbers/code/modules/vehicles/mecha/ripley.dm | 3 +++ tgstation.dme | 2 ++ 3 files changed, 7 insertions(+) create mode 100644 modular_zubbers/code/modules/vehicles/mecha/equipment/weapons.dm create mode 100644 modular_zubbers/code/modules/vehicles/mecha/ripley.dm diff --git a/modular_zubbers/code/modules/vehicles/mecha/equipment/weapons.dm b/modular_zubbers/code/modules/vehicles/mecha/equipment/weapons.dm new file mode 100644 index 00000000000..93319cee181 --- /dev/null +++ b/modular_zubbers/code/modules/vehicles/mecha/equipment/weapons.dm @@ -0,0 +1,2 @@ +/obj/item/mecha_parts/mecha_equipment/weapon/energy/disabler + projectiles_per_shot = 4 diff --git a/modular_zubbers/code/modules/vehicles/mecha/ripley.dm b/modular_zubbers/code/modules/vehicles/mecha/ripley.dm new file mode 100644 index 00000000000..e68f45e4218 --- /dev/null +++ b/modular_zubbers/code/modules/vehicles/mecha/ripley.dm @@ -0,0 +1,3 @@ +/obj/vehicle/sealed/mecha/ripley/paddy + slow_pressure_step_in = 2.75 + fast_pressure_step_in = 1.75 diff --git a/tgstation.dme b/tgstation.dme index 5764c47961e..52c6b3fbca6 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -9751,6 +9751,8 @@ #include "modular_zubbers\code\modules\uplink\uplink_items\badass.dm" #include "modular_zubbers\code\modules\uplink\uplink_items\job.dm" #include "modular_zubbers\code\modules\vehicles\mech_fabricator.dm" +#include "modular_zubbers\code\modules\vehicles\mecha\ripley.dm" +#include "modular_zubbers\code\modules\vehicles\mecha\equipment\weapons.dm" #include "modular_zubbers\code\modules\vending\armadyne.dm" #include "modular_zubbers\code\modules\vending\clothmate.dm" #include "modular_zubbers\code\modules\vending\cola.dm"