# Conflicts: # .github/CODEOWNERS # Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs # Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs # Content.Server/Chat/Systems/ChatSystem.cs # Content.Server/Explosion/EntitySystems/TriggerSystem.cs # Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs # Content.Shared/Lock/LockSystem.cs # Content.Shared/Nutrition/Components/FoodComponent.cs # Content.Shared/Speech/ListenEvent.cs # Resources/Prototypes/Entities/Effects/admin_triggers.yml
12 lines
382 B
C#
12 lines
382 B
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Shared.Wieldable.Components;
|
|
|
|
[RegisterComponent/*, Access(typeof(SharedWieldableSystem))*/] //CP14 public access
|
|
public sealed partial class IncreaseDamageOnWieldComponent : Component
|
|
{
|
|
[DataField("damage", required: true)]
|
|
[Access(Other = AccessPermissions.ReadExecute)]
|
|
public DamageSpecifier BonusDamage = default!;
|
|
}
|