mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
it is genuinely so bad
🆑
- remove: Remove mana.
(cherry picked from commit 89e8de3b6006ca6d4551546bf8a22c7ed7244aba)
15 lines
693 B
C#
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();
|