2025-06-15 13:20:58 +02:00

12 lines
395 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// Unnerve is an ability that prevents opposing Pokémon from using their held Berries.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Unnerve_(Ability)">Bulbapedia - Unnerve</see>
/// </summary>
[Script(ScriptCategory.Ability, "unnerve")]
public class Unnerve : Script
{
// TODO: Implement Unnerve ability logic
}