Deukhoofd a17cb92c5a
Some checks failed
continuous-integration/drone/push Build is failing
Implements a bunch more moves
2025-05-17 17:44:15 +02:00

18 lines
699 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "venom_drench")]
public class VenomDrench : Script
{
/// <inheritdoc />
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
{
if (!target.HasStatus(ScriptUtils.ResolveName<Status.Poisoned>()) &&
!target.HasStatus(ScriptUtils.ResolveName<Status.BadlyPoisoned>()))
return;
EventBatchId eventBatch = new();
target.ChangeStatBoost(Statistic.Attack, -1, false, eventBatch);
target.ChangeStatBoost(Statistic.SpecialAttack, -1, false, eventBatch);
target.ChangeStatBoost(Statistic.Speed, -1, false, eventBatch);
}
}