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