From dc3f5e35646ade3f507c4daa8956c897d877e254 Mon Sep 17 00:00:00 2001 From: CraftyRenter Date: Fri, 26 Sep 2025 15:04:32 -0500 Subject: [PATCH] Make Closets Less Tanky Than Gun Safes (#35671) * Reduce ClosetBase's DamageTrigger to 50 from 150. * Increased LockerBase's DamageTrigger to 75, doubled LockerBaseSecure's DamageTrigger This and the previous commit aim to improve health scaling of storage closets with their intended level of security. The damage scale is as follows: Inheritors of ClosetBase: 50 (old 150) Inheritors of LockerBase: 75 (old 50) Inheritors of LockerBaseSecure: 150 (old 75) I left suit lockers alone because visually they look the tankiest of the lockers, though it may make sense to have them in between secure lockers and regular lockers. * COMMIT --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Closets/Lockers/base_structurelockers.yml | 18 +++++++++++++++++- .../Storage/Closets/base_structureclosets.yml | 8 ++++---- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml index a30ae00e96..27d29fb3d0 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/base_structurelockers.yml @@ -69,7 +69,23 @@ thresholds: - trigger: !type:DamageTrigger - damage: 75 + damage: 300 behaviors: - !type:DoActsBehavior acts: ["Destruction"] + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + params: + volume: -6 + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 2 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index ba1ecfd749..181321d280 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -71,13 +71,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 100 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 150 + damage: 50 behaviors: - !type:DoActsBehavior acts: ["Destruction"] @@ -167,13 +167,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 100 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 150 + damage: 50 behaviors: - !type:DoActsBehavior acts: ["Destruction"] -- 2.51.2