using Robust.Shared.Prototypes; using Content.Shared.Damage.Prototypes; namespace Content.Server.Radiation.Components; /// /// Exists for use as a status effect. /// Adds the DamageProtectionBuffComponent to the entity and adds the specified DamageModifierSet to its list of modifiers. /// [RegisterComponent] public sealed partial class RadiationProtectionComponent : Component { /// /// The radiation damage modifier for entities with this component. /// [DataField("modifier")] public ProtoId RadiationProtectionModifierSetId = "PotassiumIodide"; }