Artifact container (#7822)

Co-authored-by: Kara <lunarautomaton6@gmail.com>
This commit is contained in:
Alex Evgrashin
2022-04-29 01:03:39 +03:00
committed by GitHub
parent 6dbc37a690
commit 2d34ded94d
20 changed files with 226 additions and 42 deletions

View File

@@ -28,5 +28,12 @@ public sealed class ArtifactComponent : Component
[ViewVariables(VVAccess.ReadWrite)]
public double CooldownTime = 10;
/// <summary>
/// Is this artifact under some suppression device?
/// If true, will ignore all trigger activations attempts.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public bool IsSuppressed;
public TimeSpan LastActivationTime;
}