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>
/// Anger Point is an ability that maximizes the user's Attack stat when it is hit by a critical hit.
/// The user's Attack stat is raised to +6 stages immediately after taking a critical hit.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Anger_Point_(Ability)">Bulbapedia - Anger Point</see>
/// </summary>
[Script(ScriptCategory.Ability, "anger_point")]
public class AngerPoint : Script
{