2024-02-14 01:12:32 +03:00
|
|
|
using Content.Shared.Damage;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Flash.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, Access(typeof(DamagedByFlashingSystem))]
|
|
|
|
|
public sealed partial class DamagedByFlashingComponent : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// damage from flashing
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField(required: true), ViewVariables(VVAccess.ReadWrite)]
|
2024-06-02 06:17:53 +02:00
|
|
|
public DamageSpecifier FlashDamage = new();
|
2024-02-14 01:12:32 +03:00
|
|
|
}
|