From 1c20675fe7314bb4f28e15759d760d30d6f6ec9c Mon Sep 17 00:00:00 2001 From: Paxilmaniac Date: Fri, 29 Nov 2024 02:38:37 -0600 Subject: [PATCH 1/2] push it, push it --- modular_doppler/human_health_maximum/code/to_the_limit.dm | 3 +++ tgstation.dme | 1 + 2 files changed, 4 insertions(+) create mode 100644 modular_doppler/human_health_maximum/code/to_the_limit.dm diff --git a/modular_doppler/human_health_maximum/code/to_the_limit.dm b/modular_doppler/human_health_maximum/code/to_the_limit.dm new file mode 100644 index 0000000000000..a353811b1f7c9 --- /dev/null +++ b/modular_doppler/human_health_maximum/code/to_the_limit.dm @@ -0,0 +1,3 @@ +/mob/living/carbon/human + maxHealth = 150 + health = 150 diff --git a/tgstation.dme b/tgstation.dme index 4d047136317d3..b97ba82ae51cd 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -6710,6 +6710,7 @@ #include "modular_doppler\hearthkin\tribal_extended\code\weapons\sword.dm" #include "modular_doppler\height_scaling\code\icons.dm" #include "modular_doppler\height_scaling\code\preferences.dm" +#include "modular_doppler\human_health_maximum\code\to_the_limit.dm" #include "modular_doppler\icspawn\cconsultant_items.dm" #include "modular_doppler\icspawn\observer_spawn.dm" #include "modular_doppler\icspawn\spell.dm" From e2aff8f0f7614194a37a6558457b421c5002b072 Mon Sep 17 00:00:00 2001 From: Paxilmaniac Date: Fri, 29 Nov 2024 14:32:12 -0600 Subject: [PATCH 2/2] raises stamina cap so you can actually get stamcrit --- modular_doppler/human_health_maximum/code/to_the_limit.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/modular_doppler/human_health_maximum/code/to_the_limit.dm b/modular_doppler/human_health_maximum/code/to_the_limit.dm index a353811b1f7c9..1aac5502898c3 100644 --- a/modular_doppler/human_health_maximum/code/to_the_limit.dm +++ b/modular_doppler/human_health_maximum/code/to_the_limit.dm @@ -1,3 +1,4 @@ /mob/living/carbon/human + max_stamina = 170 maxHealth = 150 health = 150