More move scripts
This commit is contained in:
17
Plugins/PkmnLib.Plugin.Gen7/Scripts/Side/LunarDanceEffect.cs
Normal file
17
Plugins/PkmnLib.Plugin.Gen7/Scripts/Side/LunarDanceEffect.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Side;
|
||||
|
||||
[Script(ScriptCategory.Side, "lunar_dance")]
|
||||
public class LunarDanceEffect(byte position) : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnSwitchIn(IPokemon pokemon, byte position1)
|
||||
{
|
||||
if (position != position1)
|
||||
return;
|
||||
|
||||
pokemon.Heal(pokemon.MaxHealth);
|
||||
pokemon.RestoreAllPP();
|
||||
pokemon.ClearStatus();
|
||||
RemoveSelf();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user