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