13 lines
526 B
C#
13 lines
526 B
C#
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
|
|
} |