Files
OldThink/Content.Server/_White/Wizard/WizardSpawnerComponent.cs
Aviu00 dccd8aab1a Magic 8 (#376)
* - add: Flash protection for wiz hardsuit helmet.

* - tweak: Cheaper wiz melee weapons.

* - add: Rework alt lightning.

* - fix: Timestop fixes.

* - add: Don't end round on midround wizard death.

* - tweak: Better shield.

* - fix: Some fixes.

* - fix: Fix wizard teleport pulling.

* - add: Improve arc.

* - add: Update knock.

* - add: Update knock desc.

* - add: Arcane Barrage.
2024-06-22 15:55:50 +03:00

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";
}