From a5afbc4342610ad506f09ee0832ba7bd0661eda5 Mon Sep 17 00:00:00 2001 From: Eugeny Date: Fri, 8 Mar 2024 04:22:55 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BB=D0=BE=D1=85=D0=BE=D0=B9=20=D0=B4?= =?UTF-8?q?=D1=80=D0=B0=D0=BA=D0=BE=D0=BD=20=D1=84=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Dragon/Components/DragonComponent.cs | 45 +------------------ 1 file changed, 1 insertion(+), 44 deletions(-) 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 { } }