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>
/// Aftermath is an ability that causes the attacker to lose 1/4 of its maximum HP if it knocks out the user with a contact move.
/// This effect only triggers if the move that caused the faint was a contact move.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Aftermath_(Ability)">Bulbapedia - Aftermath</see>
/// </summary>
[Script(ScriptCategory.Ability, "aftermath")]
public class Aftermath : Script
{