Implements pledge moves
All checks were successful
Build / Build (push) Successful in 48s

This commit is contained in:
2025-06-22 12:17:08 +02:00
parent 6d448e4e8d
commit 43813c1c1c
10 changed files with 237 additions and 4 deletions

View File

@@ -11,6 +11,10 @@ public class Incinerate : Script
move.GetHitData(target, hit).Fail();
return;
}
// TODO: Add message for item incineration
move.Battle.EventHook.Invoke(new DialogEvent("item_incinerated", new Dictionary<string, object>
{
{ "pokemon", target },
{ "item", target.HeldItem },
}));
}
}