19 lines
635 B
C#
19 lines
635 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
|
|
{
|
|
/// <inheritdoc />
|
|
public override void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower)
|
|
{
|
|
if (move.GetHitData(target, hit).Type?.Name == "fire")
|
|
{
|
|
basePower = (ushort)(basePower / 2);
|
|
}
|
|
}
|
|
} |