* Тюрьма (#150) * Prison Init * Новая карта для планетарных тюрем * Готовая планетарная тюрьма * Незначительное изменение тайлов --------- Co-authored-by: Vigers Ray <60344369+VigersRay@users.noreply.github.com> * Космическая тюрьма и всё остальное говно * фиксы * фикс PrisonlDoctor * фикс PrisonDoctor * день длится 20 минут --------- Co-authored-by: SplikZerys <136282037+SplikZerys@users.noreply.github.com>
19 lines
715 B
C#
19 lines
715 B
C#
using Robust.Shared.Audio;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server._Sunrise.Fugitive
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class FugitiveSpawnerComponent : Component
|
|
{
|
|
[DataField("spawnSound")]
|
|
public SoundSpecifier SpawnSoundPath = new SoundPathSpecifier("/Audio/Effects/clang.ogg");
|
|
|
|
[ViewVariables(VVAccess.ReadWrite),
|
|
DataField("prototype", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
public string Prototype = "MobHumanFugitive";
|
|
|
|
public List<string> Implants = new() { "UplinkImplant", "FreedomImplant"};
|
|
}
|
|
}
|