Files
wwdpublic/Content.Shared/Psionics/PsionicEvents.cs
sleepyyapril d6e00dabad Kill Mana (#1623)
it is genuinely so bad

🆑
- remove: Remove mana.

(cherry picked from commit 89e8de3b6006ca6d4551546bf8a22c7ed7244aba)
2025-01-23 08:02:50 +03:00

15 lines
693 B
C#

namespace Content.Shared.Psionics;
/// <summary>
/// This event is raised whenever a psionic entity sets their casting stats(Amplification and Dampening), allowing other systems to modify the end result
/// of casting stat math. Useful if for example you want a species to have 5% higher Amplification overall. Or a drug inhibits total Dampening, etc.
/// </summary>
/// <param name="receiver"></param>
/// <param name="amplificationChangedAmount"></param>
/// <param name="dampeningChangedAmount"></param>
[ByRefEvent]
public record struct OnSetPsionicStatsEvent(float AmplificationChangedAmount, float DampeningChangedAmount);
[ByRefEvent]
public record struct OnMindbreakEvent();