Predicted armor (#20560)
This commit is contained in:
25
Content.Shared/Armor/ArmorComponent.cs
Normal file
25
Content.Shared/Armor/ArmorComponent.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Content.Shared.Damage;
|
||||
using Robust.Shared.GameStates;
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Shared.Armor;
|
||||
|
||||
/// <summary>
|
||||
/// Used for clothing that reduces damage when worn.
|
||||
/// </summary>
|
||||
[RegisterComponent, NetworkedComponent, Access(typeof(SharedArmorSystem))]
|
||||
public sealed partial class ArmorComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// The damage reduction
|
||||
/// </summary>
|
||||
[DataField(required: true)]
|
||||
public DamageModifierSet Modifiers = default!;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Event raised on an armor entity to get additional examine text relating to its armor.
|
||||
/// </summary>
|
||||
/// <param name="Msg"></param>
|
||||
[ByRefEvent]
|
||||
public record struct ArmorExamineEvent(FormattedMessage Msg);
|
||||
Reference in New Issue
Block a user