Implements a bunch more moves

This commit is contained in:
2025-03-08 14:39:50 +01:00
parent 8f262cb4a6
commit 77f1ab243b
33 changed files with 935 additions and 57 deletions

View File

@@ -0,0 +1,23 @@
namespace PkmnLib.Plugin.Gen7.Scripts.Side;
[Script(ScriptCategory.Side, "healing_wish")]
public class HealingWishEffect : Script
{
private readonly byte _position;
public HealingWishEffect(byte position)
{
_position = position;
}
/// <inheritdoc />
public override void OnSwitchIn(IPokemon pokemon, byte position)
{
if (position == _position)
{
pokemon.Heal(pokemon.BoostedStats.Hp);
pokemon.ClearStatus();
RemoveSelf();
}
}
}