Reduce base electrocution stun time from 8 to 5 seconds (#34578)
* reduce shock time from 8 to 3 seconds * shocktime 5 second, 1.25 mv time multiplier, 1.5 hv time mulitplier
This commit is contained in:
@@ -82,7 +82,7 @@ public sealed partial class ElectrifiedComponent : Component
|
||||
/// Shock time multiplier for HV electrocution
|
||||
/// </summary>
|
||||
[DataField, AutoNetworkedField]
|
||||
public float HighVoltageTimeMultiplier = 1.5f;
|
||||
public float HighVoltageTimeMultiplier = 2f;
|
||||
|
||||
/// <summary>
|
||||
/// Damage multiplier for MV electrocution
|
||||
@@ -94,7 +94,7 @@ public sealed partial class ElectrifiedComponent : Component
|
||||
/// Shock time multiplier for MV electrocution
|
||||
/// </summary>
|
||||
[DataField, AutoNetworkedField]
|
||||
public float MediumVoltageTimeMultiplier = 1.25f;
|
||||
public float MediumVoltageTimeMultiplier = 1.5f;
|
||||
|
||||
[DataField, AutoNetworkedField]
|
||||
public float ShockDamage = 7.5f;
|
||||
@@ -103,7 +103,7 @@ public sealed partial class ElectrifiedComponent : Component
|
||||
/// Shock time, in seconds.
|
||||
/// </summary>
|
||||
[DataField, AutoNetworkedField]
|
||||
public float ShockTime = 8f;
|
||||
public float ShockTime = 5f;
|
||||
|
||||
[DataField, AutoNetworkedField]
|
||||
public float SiemensCoefficient = 1f;
|
||||
|
||||
Reference in New Issue
Block a user