Delta-v/Content.Server/_Goobstation/Devil/GameTicking/Rules/DevilRuleComponent.cs

28 lines
985 B
C#

// SPDX-FileCopyrightText: 2025 GoobBot <uristmchands@proton.me>
// SPDX-FileCopyrightText: 2025 Solstice <solsticeofthewinter@gmail.com>
// SPDX-FileCopyrightText: 2025 SolsticeOfTheWinter <solsticeofthewinter@gmail.com>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
using Content.Shared.NPC.Prototypes;
using Robust.Shared.Audio;
using Robust.Shared.Prototypes;
namespace Content.Server._Goobstation.Devil.GameTicking.Rules;
[RegisterComponent, Access(typeof(DevilRuleSystem))]
public sealed partial class DevilRuleComponent : Component
{
[DataField]
public SoundPathSpecifier BriefingSound = new("/Audio/_Goobstation/Ambience/Antag/devil_start.ogg");
[DataField]
public ProtoId<NpcFactionPrototype> DevilFaction = "DevilFaction"; // DeltaV - Don't use literals.
[DataField]
public ProtoId<NpcFactionPrototype> NanotrasenFaction = "NanoTrasen"; // DeltaV - Don't use literals.
[DataField]
public EntProtoId DevilMindRole = "DevilMindRole";
}