* - 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.
9 lines
224 B
C#
9 lines
224 B
C#
namespace Content.Server._White.Other.RandomDamageSystem;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class RandomDamageComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public float Max = 50f;
|
|
}
|