BarricadeComponent.cs 490 B

123456789101112131415161718
  1. using Robust.Shared.GameObjects;
  2. using Robust.Shared.Prototypes;
  3. using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
  4. using System.Collections.Generic;
  5. using Content.Shared.Tag;
  6. namespace Content.Shared.Barricade;
  7. [RegisterComponent]
  8. public sealed partial class BarricadeComponent : Component
  9. {
  10. /// <summary>
  11. /// % chance of blocking a projectile passing overhead
  12. /// </summary>
  13. [DataField("blocking")]
  14. public int Blocking = 66;
  15. }