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,14 @@ using PkmnLib.Static.Utils;
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// SpeedModifierInWeather is a generic ability that modifies the user's speed in a specific weather condition.
/// This ability is used by abilities like Swift Swim, Chlorophyll, and Sand Rush.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Swift_Swim_(Ability)">Bulbapedia - Swift Swim</see>
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Chlorophyll_(Ability)">Bulbapedia - Chlorophyll</see>
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Sand_Rush_(Ability)">Bulbapedia - Sand Rush</see>
/// </summary>
[Script(ScriptCategory.Ability, "speed_modifier_in_weather")]
public class SpeedModifierInWeather : Script
{