Derelict Borg Revival (#33433)

* Derelictn'tn't Borg!

* Clean *sparkles*

* Removed "S: Awaiting Changes"
This commit is contained in:
ScarKy0
2024-12-06 07:22:38 +01:00
committed by GitHub
parent 38c8ffb9b5
commit 274c3ab0b9
16 changed files with 209 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
using Content.Shared.Roles;
using Robust.Shared.Prototypes;
namespace Content.Shared.Silicons.Laws.Components;
/// <summary>
/// Applies law altering ion storms on a specific entity IonStormAmount times when the entity is spawned.
/// </summary>
[RegisterComponent]
public sealed partial class StartIonStormedComponent : Component
{
/// <summary>
/// Amount of times that the ion storm will be run on the entity on spawn.
/// </summary>
[DataField]
public int IonStormAmount = 1;
}