Фикс прожектора и открутка цифр (#697)

* Melochi

* Фикс хамелеона

* Переводы денег мне на карту
This commit is contained in:
BIGZi0348
2024-09-15 15:23:31 +03:00
committed by GitHub
parent ddc6dd3a9f
commit b454cd8606
4 changed files with 25 additions and 9 deletions

View File

@@ -26,25 +26,25 @@ public sealed partial class IonStormTargetComponent : Component
/// Chance to replace the lawset with a random one
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float RandomLawsetChance = 0.40f; // WD was 0.25f
public float RandomLawsetChance = 0.25f;
/// <summary>
/// Chance to remove a random law.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float RemoveChance = 0.15f; // WD was 0.20f
public float RemoveChance = 0.20f;
/// <summary>
/// Chance to replace a random law with the new one, rather than have it be a glitched-order law.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float ReplaceChance = 0.15f; // WD was 0.20f
public float ReplaceChance = 0.20f;
/// <summary>
/// Chance to shuffle laws after everything is done.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float ShuffleChance = 0.15f; // WD was 0.20f
public float ShuffleChance = 0.20f;
}
/// <summary>