More abilities, refactor stealing held items
All checks were successful
Build / Build (push) Successful in 50s
All checks were successful
Build / Build (push) Successful in 50s
This commit is contained in:
@@ -11,10 +11,10 @@ public class Pickpocket : Script
|
||||
/// <inheritdoc />
|
||||
public override void OnIncomingHit(IExecutingMove move, IPokemon target, byte hit)
|
||||
{
|
||||
if (move.GetHitData(target, hit).IsContact && target.HeldItem is null && move.User.HeldItem is not null)
|
||||
{
|
||||
move.Battle.EventHook.Invoke(new AbilityTriggerEvent(target));
|
||||
_ = target.SetHeldItem(move.User.RemoveHeldItemForBattle());
|
||||
}
|
||||
if (!move.GetHitData(target, hit).IsContact || target.HeldItem is not null ||
|
||||
!move.User.TryStealHeldItem(out var item))
|
||||
return;
|
||||
move.Battle.EventHook.Invoke(new AbilityTriggerEvent(target));
|
||||
_ = target.SetHeldItem(item);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user