Implements a bunch more moves
This commit is contained in:
18
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/HyperspaceFury.cs
Normal file
18
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/HyperspaceFury.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Linq;
|
||||
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "hyperspace_fury")]
|
||||
public class HyperspaceFury : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||||
{
|
||||
var protectionScripts = target.Volatile.Select(x => x.Script).OfType<ProtectionEffectScript>();
|
||||
foreach (var protectionScript in protectionScripts.ToList())
|
||||
{
|
||||
target.Volatile.Remove(protectionScript.Name);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user