12 lines
416 B
C#
12 lines
416 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
/// <summary>
|
|
/// Parental Bond is an ability that allows the Pokémon to hit twice with most moves.
|
|
///
|
|
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Parental_Bond_(Ability)">Bulbapedia - Parental Bond</see>
|
|
/// </summary>
|
|
[Script(ScriptCategory.Ability, "parental_bond")]
|
|
public class ParentalBond : Script
|
|
{
|
|
// TODO: Implement Parental Bond effect.
|
|
} |