This commit is contained in:
SoulliesOfficial
2025-10-23 00:49:44 -04:00
parent 9b1b5ca93f
commit 61a397dd4c
9846 changed files with 2618439 additions and 793547 deletions

View File

@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using SoulliesFramework.General;
using Continentis.MainGame.Card;
using SLSFramework.General;
using UnityEngine;
namespace Continentis.MainGame.Character
@@ -32,24 +33,24 @@ namespace Continentis.MainGame.Character
{
public void RoundStart()
{
buffList.For(buff => buff.combatRoundTimeSubmodule?.UpdateModule());
buffList.For(buff => buff.OnRoundStart());
buffList.For(buff => buff.combatRoundTimeSubmodule?.Update());
buffList.For(buff => buff.eventSubmodule?.onRoundStart?.Invoke());
}
public void RoundEnd()
{
buffList.For(buff => buff.OnRoundEnd());
buffList.For(buff => buff.eventSubmodule?.onRoundEnd?.Invoke());
}
public void ActionStart()
{
buffList.For(buff => buff.combatActionTimeSubmodule?.UpdateModule());
buffList.For(buff => buff.OnActionStart());
buffList.For(buff => buff.actionCountSubmodule?.Update());
buffList.For(buff => buff.eventSubmodule?.onActionStart?.Invoke());
}
public void ActionEnd()
{
buffList.For(buff => buff.OnActionEnd());
buffList.For(buff => buff.eventSubmodule?.onActionEnd?.Invoke());
}
}