14 lines
394 B
C#
14 lines
394 B
C#
using System.Collections.Generic;
|
|
|
|
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);
|
|
}
|
|
} |