namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Stall is an ability that makes the Pokémon move last in its priority bracket.
///
/// Bulbapedia - Stall
///
[Script(ScriptCategory.Ability, "stall")]
public class Stall : Script
{
///
public override void ChangeSpeed(ITurnChoice choice, ref uint speed)
{
speed = 0;
}
}