Deukhoofd e305cfaef6
All checks were successful
Build / Build (push) Successful in 50s
Support for changing turn choice when executing
2025-06-15 14:23:28 +02:00

10 lines
293 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
public class TruantEffect(IPokemon owner) : Script
{
/// <inheritdoc />
public override void ForceTurnSelection(IBattle battle, byte sideIndex, byte position, ref ITurnChoice? choice)
{
choice = new PassChoice(owner);
}
}