From b59291be3fe2229719777c5d3fda4ff17c7169a5 Mon Sep 17 00:00:00 2001 From: milimoe Date: Thu, 3 Jul 2025 22:37:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=98=93=E4=BC=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library/Constant/ConstantSet.cs | 3 +++ Library/Constant/TypeEnum.cs | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Library/Constant/ConstantSet.cs b/Library/Constant/ConstantSet.cs index 9ca1889..a0a4c1f 100644 --- a/Library/Constant/ConstantSet.cs +++ b/Library/Constant/ConstantSet.cs @@ -720,6 +720,7 @@ namespace Milimoe.FunGame.Core.Library.Constant EffectType.WeakDispelling => "持续性弱驱散", EffectType.StrongDispelling => "持续性强驱散", EffectType.Recovery => "恢复", + EffectType.Vulnerable => "易伤", _ => "未知效果" }; } @@ -778,6 +779,7 @@ namespace Milimoe.FunGame.Core.Library.Constant EffectType.GrievousWound => DispelledType.Weak, EffectType.WeakDispelling => DispelledType.Weak, EffectType.Recovery => DispelledType.Weak, + EffectType.Vulnerable => DispelledType.Weak, _ => DispelledType.Weak }; } @@ -836,6 +838,7 @@ namespace Milimoe.FunGame.Core.Library.Constant EffectType.WeakDispelling => false, EffectType.StrongDispelling => false, EffectType.Recovery => false, + EffectType.Vulnerable => true, _ => false }; } diff --git a/Library/Constant/TypeEnum.cs b/Library/Constant/TypeEnum.cs index d15a3b1..89fb7ea 100644 --- a/Library/Constant/TypeEnum.cs +++ b/Library/Constant/TypeEnum.cs @@ -484,7 +484,12 @@ namespace Milimoe.FunGame.Core.Library.Constant /// /// 恢复 /// - Recovery + Recovery, + + /// + /// 易伤 + /// + Vulnerable } public enum ItemType