19 lines
455 B
C#
19 lines
455 B
C#
|
|
using Content.Shared.Roles;
|
||
|
|
using Robust.Shared.Prototypes;
|
||
|
|
|
||
|
|
namespace Content.Server._White.Wizard;
|
||
|
|
|
||
|
|
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed partial class WizardSpawnerComponent : Component
|
||
|
|
{
|
||
|
|
[DataField("name")]
|
||
|
|
public string Name = "Ololo The Balls' Twister";
|
||
|
|
|
||
|
|
[DataField("startingGear")]
|
||
|
|
public ProtoId<StartingGearPrototype> StartingGear = "WizardGear";
|
||
|
|
|
||
|
|
[DataField]
|
||
|
|
public ProtoId<AntagPrototype> WizardRoleProto = "WizardRole";
|
||
|
|
}
|