五张牌!

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

@@ -21,12 +21,12 @@ namespace Continentis.Mods.Basic.Buffs
}
this.contentSubmodule = new ContentSubmodule(this)
.AddParameterGetter("Count", () => combatRoundTimeSubmodule.remainingCount.ToString())
.AddParameterGetter("Count", () => roundCountSubmodule.remainingCount.ToString())
.AddParameterGetter("Target", () => target.data.displayName);//TODO: 以后增加角色的ContentSubmodule
this.iconSubmodule = new IconSubmodule(this).SetTextFunctions("Count");
this.combatRoundTimeSubmodule = new CountSubmodule(this, actionCount);
this.roundCountSubmodule = new CountSubmodule(this, actionCount);
this.eventSubmodule = new EventSubmodule(this);
}