diff --git a/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/CardFunction.cs b/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/CardFunction.cs index 24c62c7f..aec49a9e 100644 --- a/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/CardFunction.cs +++ b/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/CardFunction.cs @@ -200,7 +200,7 @@ public static class CardFunction public static readonly HashSet BuffList = new() { bleed, vulnerable, downSpeed, ember, calm , agile - ,weak,bleedDamage,immunity,thorn,Invisible}; + ,weak,bleedDamage,immunity,thorn,Invisible,disable}; public static readonly HashSet ActList = new() { damagexy, cardDamage, cardShield, step,costRestore ,drawCard,drawDyeingCard,drawEffectCard}; diff --git a/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/Name.cs b/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/Name.cs index 0cde55f8..17e532fd 100644 --- a/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/Name.cs +++ b/ColorlessWorld-2024-4-2/Assets/Scripts/Tool/Name.cs @@ -449,6 +449,9 @@ public static class Name case CardFunction.ember: basicval = data.Ember; break; + case CardFunction.disable: + basicval = data.disable; + break; case CardFunction.costRestore: basicval = data.costRestore; break;