Adds more abilities

This commit is contained in:
2025-06-07 10:58:58 +02:00
parent 232b94b04c
commit b2ba3d96ba
25 changed files with 429 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// Dancer is an ability that allows the Pokémon to copy any dance move used by any Pokémon on the field.
/// When a dance move is used, the Pokémon with Dancer will immediately use the same move after the original user.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Dancer_(Ability)">Bulbapedia - Dancer</see>
/// </summary>
[Script(ScriptCategory.Ability, "dancer")]
public class Dancer : Script
{
// TODO: Implement Dancer ability logic
}