2021-09-17 07:16:11 -07:00
|
|
|
|
using Content.Shared.Damage;
|
|
|
|
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
|
|
|
|
using Robust.Shared.Analyzers;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Wieldable.Components
|
|
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent, Friend(typeof(WieldableSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class IncreaseDamageOnWieldComponent : Component
|
2021-09-17 07:16:11 -07:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("modifiers", required: true)]
|
|
|
|
|
|
public DamageModifierSet Modifiers = default!;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|