This commit is contained in:
18
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/VenomDrench.cs
Normal file
18
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/VenomDrench.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user