diff --git a/Content.Server/Dragon/Components/DragonComponent.cs b/Content.Server/Dragon/Components/DragonComponent.cs index 518ea6f6632..f403979a007 100644 --- a/Content.Server/Dragon/Components/DragonComponent.cs +++ b/Content.Server/Dragon/Components/DragonComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Actions; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -9,35 +8,6 @@ namespace Content.Server.Dragon public sealed partial class DragonComponent : Component { - - /// - /// For deadless dragon's :) - /// - [ViewVariables(VVAccess.ReadWrite), DataField("heNeedsAlive")] - public bool HeNeedsAlive = false; - - - - /// - /// For Roar dragon's :) - /// - public bool HeRoars = false; - [ViewVariables(VVAccess.ReadWrite), DataField("RoarFrequency")] - public int RoarFrequency = 30; - private int _defaultRoarTimeDelay = 100; - [ViewVariables(VVAccess.ReadWrite), DataField("DefaultRoarTimeDelay[DEBUG]")] - public int DefaultRoarTimeDelay - { - get - { - return _defaultRoarTimeDelay; - } - set - { - _defaultRoarTimeDelay = value; - } - } - /// /// If we have active rifts. /// @@ -85,20 +55,7 @@ public int DefaultRoarTimeDelay public SoundSpecifier? SoundRoar = new SoundPathSpecifier("/Audio/Animals/space_dragon_roar.ogg") { - Params = AudioParams.Default.WithVolume(0.2f), - }; - - [ViewVariables(VVAccess.ReadWrite), DataField("soundAlterRoar")] - public SoundSpecifier? SoundAlterRoar = - new SoundPathSpecifier("/Audio/Animals/alternative_space_dragon_roar.ogg") - { - Params = AudioParams.Default.WithVolume(1f), + Params = AudioParams.Default.WithVolume(3f), }; } - - public sealed partial class DragonDevourActionEvent : EntityTargetActionEvent {} - - public sealed partial class DragonSpawnRiftActionEvent : InstantActionEvent {} - - public sealed partial class DragonRoarActionEvent : InstantActionEvent { } }