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
|
/// Shock time multiplier for HV electrocution
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField, AutoNetworkedField]
|
[DataField, AutoNetworkedField]
|
||||||
public float HighVoltageTimeMultiplier = 1.5f;
|
public float HighVoltageTimeMultiplier = 2f;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Damage multiplier for MV electrocution
|
/// Damage multiplier for MV electrocution
|
||||||
@@ -94,7 +94,7 @@ public sealed partial class ElectrifiedComponent : Component
|
|||||||
/// Shock time multiplier for MV electrocution
|
/// Shock time multiplier for MV electrocution
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField, AutoNetworkedField]
|
[DataField, AutoNetworkedField]
|
||||||
public float MediumVoltageTimeMultiplier = 1.25f;
|
public float MediumVoltageTimeMultiplier = 1.5f;
|
||||||
|
|
||||||
[DataField, AutoNetworkedField]
|
[DataField, AutoNetworkedField]
|
||||||
public float ShockDamage = 7.5f;
|
public float ShockDamage = 7.5f;
|
||||||
@@ -103,7 +103,7 @@ public sealed partial class ElectrifiedComponent : Component
|
|||||||
/// Shock time, in seconds.
|
/// Shock time, in seconds.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField, AutoNetworkedField]
|
[DataField, AutoNetworkedField]
|
||||||
public float ShockTime = 8f;
|
public float ShockTime = 5f;
|
||||||
|
|
||||||
[DataField, AutoNetworkedField]
|
[DataField, AutoNetworkedField]
|
||||||
public float SiemensCoefficient = 1f;
|
public float SiemensCoefficient = 1f;
|
||||||
|
|||||||
Reference in New Issue
Block a user