xui znaet
This commit is contained in:
@@ -44,7 +44,7 @@ public sealed partial class AnomalyGeneratorComponent : Component
|
||||
/// The amount of material needed to generate a single anomaly
|
||||
/// </summary>
|
||||
[DataField("materialPerAnomaly"), ViewVariables(VVAccess.ReadWrite)]
|
||||
public int MaterialPerAnomaly = 1000; // a bit less than a stack of plasma
|
||||
public int MaterialPerAnomaly = 1500; // a bit less than a stack of plasma
|
||||
|
||||
/// <summary>
|
||||
/// The random anomaly spawner entity
|
||||
|
||||
@@ -24,7 +24,7 @@ public sealed partial class AnomalyVesselComponent : Component
|
||||
/// A multiplier applied to the amount of points generated.
|
||||
/// </summary>
|
||||
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
||||
public float PointMultiplier = 2;
|
||||
public float PointMultiplier = 1
|
||||
|
||||
/// <summary>
|
||||
/// The maximum time between each beep
|
||||
|
||||
@@ -58,13 +58,13 @@ public sealed partial class ArtifactComponent : Component
|
||||
/// to determine the monetary value of the artifact
|
||||
/// </summary>
|
||||
[DataField("priceMultiplier"), ViewVariables(VVAccess.ReadWrite)]
|
||||
public float PriceMultiplier = 1.05f;
|
||||
public float PriceMultiplier = 0.05f;
|
||||
|
||||
/// <summary>
|
||||
/// The base amount of research points for each artifact node.
|
||||
/// </summary>
|
||||
[DataField("pointsPerNode"), ViewVariables(VVAccess.ReadWrite)]
|
||||
public int PointsPerNode = 10000;
|
||||
public int PointsPerNode = 6500;
|
||||
|
||||
/// <summary>
|
||||
/// Research points which have been "consumed" from the theoretical max value of the artifact.
|
||||
|
||||
@@ -185,14 +185,14 @@ public sealed partial class AnomalyComponent : Component
|
||||
/// The minimum amount of research points generated per second
|
||||
/// </summary>
|
||||
[DataField("minPointsPerSecond")]
|
||||
public int MinPointsPerSecond = 65;
|
||||
public int MinPointsPerSecond = 10;
|
||||
|
||||
/// <summary>
|
||||
/// The maximum amount of research points generated per second
|
||||
/// This doesn't include the point bonus for being unstable.
|
||||
/// </summary>
|
||||
[DataField("maxPointsPerSecond")]
|
||||
public int MaxPointsPerSecond = 150;
|
||||
public int MaxPointsPerSecond = 80;
|
||||
|
||||
/// <summary>
|
||||
/// The multiplier applied to the point value for the
|
||||
|
||||
Reference in New Issue
Block a user