Deukhoofd 4326794611
All checks were successful
Build / Build (push) Successful in 49s
More abilities
2025-06-09 18:16:29 +02:00

16 lines
480 B
C#

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