From 6ab147b3f43565a8d6d91df34e66ea29aada4432 Mon Sep 17 00:00:00 2001 From: xianyi Date: Tue, 26 Aug 2025 11:40:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=80=E6=9C=89=E4=BC=A4=E5=AE=B3=E9=83=BD?= =?UTF-8?q?=E5=87=8F=E5=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs b/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs index ca0688b..41f5b82 100644 --- a/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs +++ b/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs @@ -911,7 +911,8 @@ namespace TcgEngine.Gameplay } //Armor - if (!spell_damage && target.HasStatus(StatusType.Armor)) + // if (!spell_damage && target.HasStatus(StatusType.Armor)) + if (target.HasStatus(StatusType.Armor)) // 所有伤害都减免 value = Mathf.Max(value - target.GetStatusValue(StatusType.Armor), 0); //Damage