17 lines
606 B
C#
17 lines
606 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
/// <summary>
|
|
/// Solid Rock is an ability that reduces damage from super-effective moves.
|
|
///
|
|
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Solid_Rock_(Ability)">Bulbapedia - Solid Rock</see>
|
|
/// </summary>
|
|
[Script(ScriptCategory.Ability, "solid_rock")]
|
|
public class SolidRock : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void ChangeIncomingMoveDamage(IExecutingMove move, IPokemon target, byte hit, ref uint damage)
|
|
{
|
|
if (move.GetHitData(target, hit).Effectiveness >= 2f)
|
|
damage = (uint)(damage * 0.75f);
|
|
}
|
|
} |