More events (#6894)

* Implements bureaucratic error and random sentience.

* Adds the Vent Critters event.

* bug moment

* forgot ignores.

* undo something i included in the PR by mistake.

* address review
This commit is contained in:
Moony
2022-02-25 23:10:09 -06:00
committed by GitHub
parent df5f38c778
commit 0898c8a837
18 changed files with 242 additions and 13 deletions

View File

@@ -0,0 +1,8 @@
namespace Content.Server.StationEvents.Components;
[RegisterComponent]
public sealed class SentienceTargetComponent : Component
{
[DataField("flavorKind", required: true)]
public string FlavorKind = default!;
}

View File

@@ -0,0 +1,7 @@
namespace Content.Server.StationEvents.Components;
[RegisterComponent]
public sealed class VentCritterSpawnLocationComponent : Component
{
}