* Commit * ploop * borger --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
11 lines
409 B
C#
11 lines
409 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("entity-condition-guidebook-breathing", ("isBreathing", !Inverted));
|
|
}
|