SpawnSpiderEggsComponent.cs 691 B

123456789101112131415161718
  1. // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
  2. // SPDX-FileCopyrightText: 2025 Piras314 <p1r4s@proton.me>
  3. // SPDX-FileCopyrightText: 2025 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
  4. //
  5. // SPDX-License-Identifier: AGPL-3.0-or-later
  6. using Robust.Shared.GameStates;
  7. namespace Content.Shared._Shitmed.StatusEffects;
  8. /// <summary>
  9. /// For use as a status effect. Spawns spider eggs that will hatch into spiders.
  10. /// </summary>
  11. [RegisterComponent, NetworkedComponent]
  12. public sealed partial class SpawnSpiderEggsComponent : SpawnEntityEffectComponent
  13. {
  14. public override string EntityPrototype { get; set; } = "EggSpiderFertilized";
  15. }