27 lines
811 B
C#
27 lines
811 B
C#
using Content.Server.Interfaces.Chat;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Localization;
|
|
|
|
namespace Content.Server.Mobs.Roles.Traitor
|
|
{
|
|
public class TraitorRole : Role
|
|
{
|
|
public TraitorRole(Mind mind) : base(mind)
|
|
{
|
|
}
|
|
|
|
public override string Name => "Syndicate Agent";
|
|
public override bool Antagonist => true;
|
|
|
|
public void GreetTraitor(string[] codewords)
|
|
{
|
|
if (Mind.TryGetSession(out var session))
|
|
{
|
|
var chatMgr = IoCManager.Resolve<IChatManager>();
|
|
chatMgr.DispatchServerMessage(session, Loc.GetString("Hello Agent!"));
|
|
chatMgr.DispatchServerMessage(session, Loc.GetString("Your codewords are: {0}", string.Join(", ",codewords)));
|
|
}
|
|
}
|
|
}
|
|
}
|