19 lines
650 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
/// <summary>
/// Heatproof is an ability that halves the damage taken from Fire-type moves and burn.
///
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Heatproof_(Ability)">Bulbapedia - Heatproof</see>
/// </summary>
[Script(ScriptCategory.Ability, "heatproof")]
public class Heatproof : Script, IScriptChangeBasePower
{
/// <inheritdoc />
public void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower)
{
if (move.GetHitData(target, hit).Type?.Name == "fire")
{
basePower = (ushort)(basePower / 2);
}
}
}