2022-06-28 10:41:08 -04:00
|
|
|
namespace Content.Server.Research.Disk
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ResearchDiskComponent : Component
|
2022-06-28 10:41:08 -04:00
|
|
|
{
|
2022-12-19 22:36:08 -05:00
|
|
|
[DataField("points"), ViewVariables(VVAccess.ReadWrite)]
|
2022-06-28 10:41:08 -04:00
|
|
|
public int Points = 1000;
|
2022-12-19 22:36:08 -05:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// If true, the value of this disk will be set to the sum
|
|
|
|
|
/// of all the technologies in the game.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// This is for debug purposes only.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
[DataField("unlockAllTech")]
|
|
|
|
|
public bool UnlockAllTech = false;
|
2022-06-28 10:41:08 -04:00
|
|
|
}
|
|
|
|
|
}
|