namespace Content.Server.Power; [RegisterComponent] public sealed partial class BatteryDrinkerComponent : Component { /// /// Is this drinker allowed to drink batteries not tagged as ? /// [DataField] public bool DrinkAll; /// /// How long it takes to drink from a battery, in seconds. /// Is multiplied by the source. /// [DataField] public float DrinkSpeed = 1.5f; /// /// The multiplier for the amount of power to attempt to drink. /// Default amount is 1000 /// [DataField] public float DrinkMultiplier = 5f; /// /// The multiplier for how long it takes to drink a non-source battery, if is true. /// [DataField] public float DrinkAllMultiplier = 2.5f; }