11 lines
417 B
C#
11 lines
417 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.EntityConditions.Conditions.Body;
|
|
|
|
/// <inheritdoc cref="EntityCondition"/>
|
|
public sealed partial class BreathingCondition : EntityConditionBase<BreathingCondition>
|
|
{
|
|
public override string EntityConditionGuidebookText(IPrototypeManager prototype) =>
|
|
Loc.GetString("reagent-effect-condition-guidebook-breathing", ("isBreathing", !Inverted));
|
|
}
|