namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
///
/// Light Metal is an ability that halves the Pokémon's weight.
///
/// Bulbapedia - Light Metal
///
[Script(ScriptCategory.Ability, "light_metal")]
public class LightMetal : Script, IScriptModifyWeight
{
///
public void ModifyWeight(ref float weight)
{
weight *= 0.5f;
}
}