Nerf ninja research stealing (#26421)

* nerf ninja steal objective

* fubar
This commit is contained in:
Nemanja
2024-03-25 20:52:27 -04:00
committed by GitHub
parent 327a6e90d1
commit 3b9c5d43ec
4 changed files with 75 additions and 8 deletions

View File

@@ -14,4 +14,16 @@ public sealed partial class ResearchStealerComponent : Component
/// </summary>
[DataField("delay"), ViewVariables(VVAccess.ReadWrite)]
public TimeSpan Delay = TimeSpan.FromSeconds(20);
/// <summary>
/// The minimum number of technologies that will be stolen
/// </summary>
[DataField]
public int MinToSteal = 4;
/// <summary>
/// The maximum number of technologies that will be stolen
/// </summary>
[DataField]
public int MaxToSteal = 8;
}