/// How often will this bomb retry to explode.
/// </summary>
[DataField]
- public TimeSpan ExplosionRetryDelay = TimeSpan.FromSeconds(5);
+ public TimeSpan ExplosionRetryDelay = TimeSpan.FromSeconds(3);
/// <summary>
/// The time at which the next retry will happen
/// The chance this bomb explodes each time it attempts to do so.
/// </summary>
[DataField, AutoNetworkedField]
- public float ExplosionChance = 0.01f;
+ public float ExplosionChance = 0.05f;
/// <summary>
/// How much should the chance of explosion increase each failed retry?
/// The multiplier to apply when delivered in time.
/// </summary>
[DataField]
- public float InTimeMultiplierOffset = 0.2f;
+ public float InTimeMultiplierOffset = 0.25f;
/// <summary>
/// The multiplier to apply when delivered late.
/// </summary>
[DataField]
- public float ExpiredMultiplierOffset = -0.1f;
+ public float ExpiredMultiplierOffset = -0.15f;
/// <summary>
/// Whether this delivery was delivered on time.