From 1b00ade33f2451166112910be207c8809954fe34 Mon Sep 17 00:00:00 2001 From: archbtw <230859540+archbtw0@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:50:49 +0000 Subject: [PATCH] (2) Reduce repair bot health (#94360) ## About The Pull Request Previous PR - https://github.com/tgstation/tgstation/pull/94300 100 -> 35 ## Why It's Good For The Game 100 hp is inconsistently tanky compared to other bots going off a cleanbot's hp (25) - add 10 extra hp for leeway due to repairbots working in work hazards ## Changelog :cl: ArchBTW balance: repairbot hp 100 -> 35 /:cl: --------- Co-authored-by: glue0000 <230859540+glue0000@users.noreply.github.com> --- code/modules/mob/living/basic/bots/repairbot/repairbot.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/basic/bots/repairbot/repairbot.dm b/code/modules/mob/living/basic/bots/repairbot/repairbot.dm index ac42cc45916..8cc3a90a336 100644 --- a/code/modules/mob/living/basic/bots/repairbot/repairbot.dm +++ b/code/modules/mob/living/basic/bots/repairbot/repairbot.dm @@ -8,9 +8,9 @@ pass_flags = parent_type::pass_flags | PASSTABLE layer = BELOW_MOB_LAYER anchored = FALSE - health = 100 + health = 35 can_be_held = TRUE - maxHealth = 100 + maxHealth = 35 custom_materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT * 1.3, /datum/material/glass = SMALL_MATERIAL_AMOUNT * 2) path_image_color = "#80dae7" bot_ui = "RepairBot"