// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Aviu00 <93730715+Aviu00@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Misandry // SPDX-FileCopyrightText: 2025 gus // // SPDX-License-Identifier: AGPL-3.0-or-later using Content.Shared.Damage; using Robust.Shared.Audio; using Robust.Shared.Prototypes; namespace Content.Shared._Shitcode.Wizard.Spellblade; [RegisterComponent] public sealed partial class TemporalSlashComponent : Component { [DataField] public DamageSpecifier Damage = new(); [DataField] public int HitsLeft = 2; [DataField] public float HitDelay = 0.5f; [ViewVariables(VVAccess.ReadWrite)] public float Accumulator; [DataField] public EntProtoId Effect = "WeaponArcTempSlash"; [DataField] public SoundSpecifier? HitSound = new SoundPathSpecifier("/Audio/Weapons/bladeslice.ogg"); }