Adds doccomments to all abilities
All checks were successful
Build / Build (push) Successful in 50s

This commit is contained in:
2025-06-07 11:20:35 +02:00
parent b2ba3d96ba
commit 273d26057a
20 changed files with 133 additions and 0 deletions

View File

@@ -1,5 +1,11 @@
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// Cheek Pouch is an ability that heals the user for 1/3 of its maximum HP after consuming a berry.
/// This effect applies to any berry item consumed by the Pokémon.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Cheek_Pouch_(Ability)">Bulbapedia - Cheek Pouch</see>
/// </summary>
[Script(ScriptCategory.Ability, "cheek_pouch")]
public class CheekPouch : Script
{