// SPDX-FileCopyrightText: 2025 GoobBot // SPDX-FileCopyrightText: 2025 Roudenn // // SPDX-License-Identifier: AGPL-3.0-or-later namespace Content.Shared._Goobstation.Fishing.Components; /// /// The fish itself! /// [RegisterComponent] public sealed partial class FishComponent : Component { public const float DefaultDifficulty = 0.021f; [DataField("difficulty")] public float FishDifficulty = DefaultDifficulty; }