Deukhoofd 4326794611
All checks were successful
Build / Build (push) Successful in 49s
More abilities
2025-06-09 18:16:29 +02:00

16 lines
456 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// Light Metal is an ability that halves the Pokémon's weight.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Light_Metal_(Ability)">Bulbapedia - Light Metal</see>
/// </summary>
[Script(ScriptCategory.Ability, "light_metal")]
public class LightMetal : Script
{
/// <inheritdoc />
public override void ModifyWeight(ref float weight)
{
weight *= 0.5f;
}
}