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