2023-06-27 19:17:42 +10:00
|
|
|
using Content.Shared.Storage;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Spawns entities inside corners.
|
|
|
|
|
/// </summary>
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class CornerClutterPostGen : IPostDunGen
|
2023-06-27 19:17:42 +10:00
|
|
|
{
|
|
|
|
|
[DataField("chance")]
|
|
|
|
|
public float Chance = 0.50f;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The default starting bulbs
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("contents", required: true)]
|
|
|
|
|
public List<EntitySpawnEntry> Contents = new();
|
|
|
|
|
}
|