6
2025-12-13 13:46:17 +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));
}