12 lines
395 B
C#
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
|
|
} |