More moves implemented
This commit is contained in:
18
Plugins/PkmnLib.Plugin.Gen7/Scripts/Pokemon/KingsShield.cs
Normal file
18
Plugins/PkmnLib.Plugin.Gen7/Scripts/Pokemon/KingsShield.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using PkmnLib.Static;
|
||||
using PkmnLib.Static.Moves;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
|
||||
[Script(ScriptCategory.Pokemon, "kings_shield")]
|
||||
public class KingsShield : ProtectionEffectScript
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void BlockIncomingHit(IExecutingMove executingMove, IPokemon target, byte hitIndex, ref bool block)
|
||||
{
|
||||
base.BlockIncomingHit(executingMove, target, hitIndex, ref block);
|
||||
if (executingMove.UseMove.Category != MoveCategory.Status && executingMove.UseMove.HasFlag("contact"))
|
||||
{
|
||||
executingMove.User.ChangeStatBoost(Statistic.Accuracy, -2, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user