namespace PkmnLib.Plugin.Gen7.Scripts.Moves; [Script(ScriptCategory.Move, "stomping_tantrum")] public class StompingTantrum : Script, IScriptChangeBasePower { /// public void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower) { var lastMoveChoice = move.Battle.PreviousTurnChoices.Reverse().Skip(1).SelectMany(x => x.Reverse()) .OfType().FirstOrDefault(x => x.User == move.User); if (lastMoveChoice is { HasFailed: true }) { basePower = basePower.MultiplyOrMax(2); } } }