More moves implemented
This commit is contained in:
22
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/SpectralThief.cs
Normal file
22
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/SpectralThief.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Linq;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "spectral_thief")]
|
||||
public class SpectralThief : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnBeforeHit(IExecutingMove move, IPokemon target, byte hitIndex)
|
||||
{
|
||||
var positiveStats = target.StatBoost.Where(x => x.value > 0).ToArray();
|
||||
if (positiveStats.Length > 0)
|
||||
{
|
||||
EventBatchId batchId = new();
|
||||
foreach (var positiveStat in positiveStats)
|
||||
{
|
||||
move.User.ChangeStatBoost(positiveStat.statistic, positiveStat.value, true, batchId);
|
||||
target.ChangeStatBoost(positiveStat.statistic, (sbyte)-positiveStat.value, true, batchId);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user