12 lines
359 B
C#
12 lines
359 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "moongeist_beam")]
|
|
public class MoongeistBeam : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void OnBeforeAnyHookInvoked(ref List<ScriptCategory>? suppressedCategories)
|
|
{
|
|
suppressedCategories ??= [];
|
|
suppressedCategories.Add(ScriptCategory.Ability);
|
|
}
|
|
} |