Many more tests and fixes
All checks were successful
Build / Build (push) Successful in 3m12s

This commit is contained in:
2026-08-27 17:11:12 +02:00
parent 32b3ef9c4a
commit d2a82b5fe3
204 changed files with 20255 additions and 242 deletions

View File

@@ -3,34 +3,73 @@ namespace PkmnLib.Plugin.Gen7.Scripts.Battle;
[Script(ScriptCategory.Battle, "future_sight")]
public class FutureSightEffect : Script, IScriptOnEndTurn
{
private int _turnsLeft = 3;
private readonly IMoveChoice _moveChoice;
private class PendingStrike
{
public IMoveChoice MoveChoice { get; }
public int Turns { get; set; }
public PendingStrike(IMoveChoice moveChoice)
{
MoveChoice = moveChoice;
Turns = 3;
}
}
private readonly List<PendingStrike> _strikes = new();
public FutureSightEffect(IMoveChoice moveChoice)
{
_moveChoice = moveChoice;
AddStrike(moveChoice);
}
public void AddStrike(IMoveChoice moveChoice)
{
_strikes.Add(new PendingStrike(moveChoice));
}
public bool HasStrikeAt(byte side, byte position)
{
return _strikes.Exists(x => x.MoveChoice.TargetSide == side && x.MoveChoice.TargetPosition == position);
}
/// <inheritdoc />
public void OnEndTurn(IScriptSource owner, IBattle battle)
{
_turnsLeft -= 1;
if (_turnsLeft <= 0)
var toRemove = new List<PendingStrike>();
foreach (var strike in _strikes)
{
var target = battle.GetPokemon(_moveChoice.TargetSide, _moveChoice.TargetPosition);
if (target is not { IsUsable: true })
strike.Turns--;
if (strike.Turns == 0)
{
battle.EventHook.Invoke(new DialogEvent("move_failed"));
return;
ExecuteStrike(battle, strike.MoveChoice);
toRemove.Add(strike);
}
var damageCalculator = battle.Library.DamageCalculator;
var executingMove = new ExecutingMoveImpl([target], 1, _moveChoice.ChosenMove,
_moveChoice.ChosenMove.MoveData, _moveChoice, battle);
var hitData = executingMove.GetHitData(target, 0);
var damage = damageCalculator.GetDamage(executingMove, executingMove.UseMove.Category, executingMove.User,
target, executingMove.TargetCount, 1, hitData);
target.Damage(damage, DamageSource.Misc);
}
foreach (var strike in toRemove)
{
_strikes.Remove(strike);
}
if (_strikes.Count == 0)
{
RemoveSelf();
}
}
private static void ExecuteStrike(IBattle battle, IMoveChoice moveChoice)
{
var target = battle.GetPokemon(moveChoice.TargetSide, moveChoice.TargetPosition);
if (target is not { IsUsable: true })
{
battle.EventHook.Invoke(new DialogEvent("move_failed"));
return;
}
var damageCalculator = battle.Library.DamageCalculator;
var executingMove = new ExecutingMoveImpl([target], 1, moveChoice.ChosenMove, moveChoice.ChosenMove.MoveData,
moveChoice, battle);
var hitData = executingMove.GetHitData(target, 0);
var damage = damageCalculator.GetDamage(executingMove, executingMove.UseMove.Category, executingMove.User,
target, executingMove.TargetCount, 1, hitData);
target.Damage(damage, DamageSource.Misc);
}
}