2023-04-20 10:43:13 +10:00
|
|
|
using Content.Shared.Parallax.Biomes;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Procedural.Loot;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds a biome template layer for dungeon loot.
|
|
|
|
|
/// </summary>
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class BiomeTemplateLoot : IDungeonLoot
|
2023-04-20 10:43:13 +10:00
|
|
|
{
|
|
|
|
|
[DataField("proto", required: true, customTypeSerializer:typeof(PrototypeIdSerializer<BiomeTemplatePrototype>))]
|
|
|
|
|
public string Prototype = string.Empty;
|
|
|
|
|
}
|