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

@@ -2,6 +2,15 @@ using PkmnLib.Static.Utils;
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// PreventStatLowering is a generic ability that prevents the user's stats from being lowered by opposing Pokémon.
/// This ability can be configured to prevent lowering of a specific stat or all stats.
/// This ability is used by abilities like Clear Body, White Smoke, and Full Metal Body.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Clear_Body_(Ability)">Bulbapedia - Clear Body</see>
/// <see href="https://bulbapedia.bulbagarden.net/wiki/White_Smoke_(Ability)">Bulbapedia - White Smoke</see>
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Full_Metal_Body_(Ability)">Bulbapedia - Full Metal Body</see>
/// </summary>
[Script(ScriptCategory.Ability, "prevent_stat_lowering")]
public class PreventStatLowering : Script
{