五张牌!

This commit is contained in:
SoulliesOfficial
2025-10-30 04:21:28 -04:00
parent 2906206f0c
commit 4c7e5c397b
171 changed files with 2168 additions and 41 deletions

View File

@@ -38,7 +38,7 @@ namespace Continentis.MainGame.Character
{
public void RoundStart()
{
buffList.For(buff => buff.combatRoundTimeSubmodule?.Update());
buffList.For(buff => buff.roundCountSubmodule?.Update());
buffList.For(buff => buff.eventSubmodule?.onRoundStart?.Invoke());
}
@@ -49,6 +49,11 @@ namespace Continentis.MainGame.Character
public void ActionStart()
{
if (owner.actionCountThisRound == 0)
{
buffList.For(buff => buff.roundFirstActionCountSubmodule?.Update());
}
buffList.For(buff => buff.actionCountSubmodule?.Update());
buffList.For(buff => buff.eventSubmodule?.onActionStart?.Invoke());
}