Slimes and their habitats (#15379)

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
Nim
2023-05-01 11:21:39 +03:00
committed by GitHub
parent 9e9d9c1a4a
commit 78f56a4369
20 changed files with 452 additions and 50 deletions

View File

@@ -1,9 +0,0 @@
using Content.Server.StationEvents.Events;
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(SpiderSpawnRule))]
public sealed class SpiderSpawnRuleComponent : Component
{
}

View File

@@ -1,15 +1,11 @@
using Content.Server.StationEvents.Events;
using Content.Shared.Storage;
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(VentCrittersRule))]
public sealed class VentCrittersRuleComponent : Component
{
[DataField("spawnedPrototypeChoices")]
public List<string> SpawnedPrototypeChoices = new()
{
"MobMouse",
"MobMouse1",
"MobMouse2"
};
[DataField("entries")]
public List<EntitySpawnEntry> Entries = new();
}