Move id and health examinable to shared (#27867)
* Move id and health examinable to shared * Make GetInfo public
This commit is contained in:
23
Content.Shared/HealthExaminable/HealthExaminableComponent.cs
Normal file
23
Content.Shared/HealthExaminable/HealthExaminableComponent.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Content.Shared.Damage.Prototypes;
|
||||
using Content.Shared.FixedPoint;
|
||||
using Robust.Shared.Prototypes;
|
||||
|
||||
namespace Content.Shared.HealthExaminable;
|
||||
|
||||
[RegisterComponent, Access(typeof(HealthExaminableSystem))]
|
||||
public sealed partial class HealthExaminableComponent : Component
|
||||
{
|
||||
public List<FixedPoint2> Thresholds = new()
|
||||
{ FixedPoint2.New(10), FixedPoint2.New(25), FixedPoint2.New(50), FixedPoint2.New(75) };
|
||||
|
||||
[DataField(required: true)]
|
||||
public HashSet<ProtoId<DamageTypePrototype>> ExaminableTypes = default!;
|
||||
|
||||
/// <summary>
|
||||
/// Health examine text is automatically generated through creating loc string IDs, in the form:
|
||||
/// `health-examine-[prefix]-[type]-[threshold]`
|
||||
/// This part determines the prefix.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public string LocPrefix = "carbon";
|
||||
}
|
||||
Reference in New Issue
Block a user