* telegraphy effects * shadow step spell backend * add component spell * predict sharpening * Update ring.yml * locale sync * Update entities.ftl * icon shadow step
17 lines
331 B
C#
17 lines
331 B
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Shared._CP14.MeleeWeapon.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CP14MeleeSelfDamageComponent : Component
|
|
{
|
|
[DataField]
|
|
public DamageSpecifier DamageToSelf = new()
|
|
{
|
|
DamageDict = new()
|
|
{
|
|
{ "Blunt", 1 },
|
|
}
|
|
};
|
|
}
|