From 43a4b964b19ed55ab87febbe71b307b532c5fca6 Mon Sep 17 00:00:00 2001 From: plsleavemealon <106043510+plsleavemealon@users.noreply.github.com> Date: Tue, 1 Apr 2025 21:35:04 -0500 Subject: [PATCH] Ethereal Powercell Bugfix (#3420) ## About The Pull Request Fixes ethereal powercells from 20kj back to 220kj which is what they used to be. ## Why It's Good For The Game It is what it used to be, and with the present vanilla values you have to recharge yourself once every ~5 minutes or so or suffer a huge mood debuff. And if you are entombed, you will suffer death after ~10 minutes if you do not recharge. ## Proof Of Testing ## Changelog :cl: fix: fixed ethereals powercell back to bubbers values /:cl: --- code/__DEFINES/mobs.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index 8de8628ee31..0498301ec54 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -325,12 +325,12 @@ #define STANDARD_ETHEREAL_CHARGE (1 * STANDARD_CELL_CHARGE) // Charge levels for Ethereals, in joules. #define ETHEREAL_CHARGE_NONE 0 -#define ETHEREAL_CHARGE_LOWPOWER (0.4 * STANDARD_ETHEREAL_CHARGE) -#define ETHEREAL_CHARGE_NORMAL (1 * STANDARD_ETHEREAL_CHARGE) -#define ETHEREAL_CHARGE_ALMOSTFULL (1.5 * STANDARD_ETHEREAL_CHARGE) -#define ETHEREAL_CHARGE_FULL (2 * STANDARD_ETHEREAL_CHARGE) -#define ETHEREAL_CHARGE_OVERLOAD (2.5 * STANDARD_ETHEREAL_CHARGE) -#define ETHEREAL_CHARGE_DANGEROUS (3 * STANDARD_ETHEREAL_CHARGE) +#define ETHEREAL_CHARGE_LOWPOWER (2 * STANDARD_ETHEREAL_CHARGE) //BUBBER EDIT OG = 0.4 +#define ETHEREAL_CHARGE_NORMAL (5 * STANDARD_ETHEREAL_CHARGE) //BUBBER EDIT OG = 1 +#define ETHEREAL_CHARGE_ALMOSTFULL (7.5 * STANDARD_ETHEREAL_CHARGE) //BUBBER EDIT OG = 1.5 +#define ETHEREAL_CHARGE_FULL (11 * STANDARD_ETHEREAL_CHARGE) //BUBBER EDIT OG = 2 +#define ETHEREAL_CHARGE_OVERLOAD (11.5 * STANDARD_ETHEREAL_CHARGE) //BUBBER EDIT OG = 2.5 +#define ETHEREAL_CHARGE_DANGEROUS (12 * STANDARD_ETHEREAL_CHARGE) //BUBBER EDIT OG = 3 #define CRYSTALIZE_COOLDOWN_LENGTH (120 SECONDS)