This commit is contained in:
19
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Telekinesis.cs
Normal file
19
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Telekinesis.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "telekinesis")]
|
||||
public class Telekinesis : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||||
{
|
||||
if (move.Battle.Volatile.Contains<Battle.Gravity>())
|
||||
{
|
||||
move.GetHitData(target, hit).Fail();
|
||||
return;
|
||||
}
|
||||
|
||||
target.Volatile.Add(new TelekinesisEffect());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user