Files
OldThink/Content.Shared/_White/Chaplain/NullRodComponent.cs
Aviu00 03fed0caa7 Chaplain stuff (#98)
* - add: Null rod.

* - add: Only chaplain can use holy weapons.

* - add: Chaplain is cult immune.

* - fix: Fix component granting.

* - add: Only chaplain can use null rod.

* - add: Armaments beacon.

* - add: Chaplain playtime requirement.
2024-02-20 10:28:44 +00:00

11 lines
218 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared._White.Chaplain;
[RegisterComponent]
public sealed partial class NullRodComponent : Component
{
[DataField]
public List<EntProtoId> Weapons = new();
}