Bunch more moves, changes in how additional information for items works.
This commit is contained in:
14
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/MoongeistBeam.cs
Normal file
14
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/MoongeistBeam.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user