Add EventHook parameter to item use scripts
All checks were successful
Build / Build (push) Successful in 47s

Items can be used on Pokemon outside of battle, and we want the user of the library to be able to check for what changed. This allows for example a heal event to be sent back to the user of the library after using an item.
This commit is contained in:
2025-06-15 11:59:17 +02:00
parent f5d18d7186
commit defb1349ca
7 changed files with 21 additions and 17 deletions

View File

@@ -34,8 +34,8 @@ public class HealingItem : ItemScript
public override bool IsTargetValid(IPokemon target) => !target.IsFainted;
/// <inheritdoc />
public override void OnUseWithTarget(IPokemon target)
public override void OnUseWithTarget(IPokemon target, EventHook eventHook)
{
target.Heal(_healAmount);
target.Heal(_healAmount, customEventHook: eventHook);
}
}

View File

@@ -20,6 +20,6 @@ public class BugBite : Script
}
_ = target.SetHeldItem(null);
targetHeldItem.RunItemScript(battleData.Battle.Library.ScriptResolver, user);
targetHeldItem.RunItemScript(battleData.Battle.Library.ScriptResolver, user, move.Battle.EventHook);
}
}