12 lines
406 B
C#
12 lines
406 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
/// <summary>
|
|
/// Wimp Out is an ability that causes the Pokémon to switch out when its HP falls below half.
|
|
///
|
|
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Wimp_Out_(Ability)">Bulbapedia - Wimp Out</see>
|
|
/// </summary>
|
|
[Script(ScriptCategory.Ability, "wimp_out")]
|
|
public class WimpOut : Script
|
|
{
|
|
// TODO: Implement Wimp Out ability logic
|
|
} |