namespace Content.Shared.Traits.Assorted.Components; /// /// Used for the lightweight trait. LightweightDrunkSystem will multiply the effects of ethanol being metabolized /// [RegisterComponent] public sealed partial class LightweightDrunkComponent : Component { [DataField("boozeStrengthMultiplier"), ViewVariables(VVAccess.ReadWrite)] public float BoozeStrengthMultiplier = 4f; }