using Robust.Shared.Prototypes;
namespace Content.Shared.Damage.Prototypes;
///
/// Prototype for examinable damage messages.
///
[Prototype]
public sealed partial class ExaminableDamagePrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
///
/// List of damage messages IDs sorted by severity.
/// First one describes fully intact entity.
/// Last one describes almost destroyed.
///
[DataField("messages")]
public string[] Messages = {};
}