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