From 28aed7b22fe755c27a1d0d96a24620c530e6f5f6 Mon Sep 17 00:00:00 2001
From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com>
Date: Sun, 1 Jun 2025 06:28:13 +0200
Subject: [PATCH] Further Mail Balancing (#37986)
---
Content.Shared/Delivery/DeliveryBombComponent.cs | 4 ++--
Content.Shared/Delivery/DeliveryPriorityComponent.cs | 4 ++--
.../Prototypes/Entities/Objects/Deliveries/deliveries.yml | 6 +++---
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Content.Shared/Delivery/DeliveryBombComponent.cs b/Content.Shared/Delivery/DeliveryBombComponent.cs
index a51bb839ee..eed2a9b6ad 100644
--- a/Content.Shared/Delivery/DeliveryBombComponent.cs
+++ b/Content.Shared/Delivery/DeliveryBombComponent.cs
@@ -16,7 +16,7 @@ public sealed partial class DeliveryBombComponent : Component
/// How often will this bomb retry to explode.
///
[DataField]
- public TimeSpan ExplosionRetryDelay = TimeSpan.FromSeconds(5);
+ public TimeSpan ExplosionRetryDelay = TimeSpan.FromSeconds(3);
///
/// The time at which the next retry will happen
@@ -28,7 +28,7 @@ public sealed partial class DeliveryBombComponent : Component
/// The chance this bomb explodes each time it attempts to do so.
///
[DataField, AutoNetworkedField]
- public float ExplosionChance = 0.01f;
+ public float ExplosionChance = 0.05f;
///
/// How much should the chance of explosion increase each failed retry?
diff --git a/Content.Shared/Delivery/DeliveryPriorityComponent.cs b/Content.Shared/Delivery/DeliveryPriorityComponent.cs
index 835d1c9c00..d06ce021a7 100644
--- a/Content.Shared/Delivery/DeliveryPriorityComponent.cs
+++ b/Content.Shared/Delivery/DeliveryPriorityComponent.cs
@@ -15,13 +15,13 @@ public sealed partial class DeliveryPriorityComponent : Component
/// The multiplier to apply when delivered in time.
///
[DataField]
- public float InTimeMultiplierOffset = 0.2f;
+ public float InTimeMultiplierOffset = 0.25f;
///
/// The multiplier to apply when delivered late.
///
[DataField]
- public float ExpiredMultiplierOffset = -0.1f;
+ public float ExpiredMultiplierOffset = -0.15f;
///
/// Whether this delivery was delivered on time.
diff --git a/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml b/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml
index acf88fc8b3..0c33f53881 100644
--- a/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml
+++ b/Resources/Prototypes/Entities/Objects/Deliveries/deliveries.yml
@@ -216,7 +216,7 @@
path: /Audio/Effects/lightburn.ogg
- type: Explosive
explosionType: MicroBomb
- totalIntensity: 120
- intensitySlope: 4
- maxIntensity: 30
+ totalIntensity: 150
+ intensitySlope: 5
+ maxIntensity: 15
canCreateVacuum: false
--
2.51.2