mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
15 lines
430 B
C#
15 lines
430 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._Shitmed.StatusEffects;
|
|
|
|
/// <summary>
|
|
/// For use as a status effect. Spawns slimes.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class SpawnSlimesComponent : SpawnEntityEffectComponent
|
|
{
|
|
public override string EntityPrototype { get; set; } = "MobAdultSlimesBlueAngry";
|
|
|
|
public override bool IsFriendly { get; set; } = true;
|
|
}
|