mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
it is genuinely so bad
🆑
- remove: Remove mana.
(cherry picked from commit 89e8de3b6006ca6d4551546bf8a22c7ed7244aba)
49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Actions.Events;
|
|
|
|
public sealed partial class SummonPsionicFamiliarActionEvent : InstantActionEvent
|
|
{
|
|
/// <summary>
|
|
/// The entity to be spawned by this power.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntProtoId? FamiliarProto;
|
|
|
|
/// <summary>
|
|
/// The name of this power, used for logging purposes.
|
|
/// </summary>
|
|
[DataField]
|
|
public string PowerName;
|
|
|
|
/// <summary>
|
|
/// Whether this power checks if the wearer is psionically insulated.
|
|
/// </summary>
|
|
[DataField]
|
|
public bool CheckInsulation;
|
|
|
|
/// <summary>
|
|
/// Whether this power generates glimmer when used.
|
|
/// </summary>
|
|
[DataField]
|
|
public bool DoGlimmerEffects;
|
|
|
|
/// <summary>
|
|
/// Whether the summoned entity will follow the one who summoned it.
|
|
/// </summary>
|
|
[DataField]
|
|
public bool FollowMaster;
|
|
|
|
/// <summary>
|
|
/// The minimum amount of glimmer generated by this power.
|
|
/// </summary>
|
|
[DataField]
|
|
public int MinGlimmer;
|
|
|
|
/// <summary>
|
|
/// The maximum amount of glimmer generated by this power.
|
|
/// </summary>
|
|
[DataField]
|
|
public int MaxGlimmer;
|
|
}
|