卡牌更新

This commit is contained in:
SoulliesOfficial
2026-04-08 04:48:35 -04:00
parent c3b1561375
commit dd2657573a
242 changed files with 1950 additions and 926 deletions

View File

@@ -54,9 +54,9 @@ namespace Continentis.MainGame
{
private static string GetAttribute(CardInstance card, string attributeName, bool higherIsBetter, bool inPercent)
{
string displayName = "Display" + attributeName;
string baseName = "Base" + attributeName;
string baseOffsetName = "Base" + attributeName + "Offset";
string displayName = "Display_" + attributeName;
string baseName = "Base_" + attributeName;
string baseOffsetName = "Base_" + attributeName + "_Offset";
if (!inPercent)
{
@@ -74,7 +74,7 @@ namespace Continentis.MainGame
private static string GetAttribute(CardInstance card, string attributeName, bool inPercent)
{
string displayName = "Display" + attributeName;
string displayName = "Display_" + attributeName;
int displayValue = card.GetAttribute(displayName);
return DynamicTextInterpreter.GetValue(displayValue, inPercent);
}