namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Levitate is an ability that gives full immunity to all Ground-type moves.
///
/// Bulbapedia - Levitate
///
[Script(ScriptCategory.Ability, "levitate")]
public class Levitate : Script
{
///
public override void IsFloating(IPokemon pokemon, ref bool isFloating)
{
isFloating = true;
}
}