6
2026-01-24 12:49:55 +03:00

11 lines
408 B
C#

using Content.Shared.Mind.Components;
using Robust.Shared.Prototypes;
namespace Content.Shared.EntityEffects.Effects;
public sealed partial class MakeSentient : EventEntityEffect<MakeSentient>
{
protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys)
=> Loc.GetString("reagent-effect-guidebook-make-sentient", ("chance", Probability));
}