Adds more abilities
This commit is contained in:
13
Plugins/PkmnLib.Plugin.Gen7/Scripts/Abilities/Dancer.cs
Normal file
13
Plugins/PkmnLib.Plugin.Gen7/Scripts/Abilities/Dancer.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user