Browse Source

Update BT25_053.cs

x89rt2 1 tháng trước cách đây
mục cha
commit
4f793682e2
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      Assets/Scripts/CardEffect/BT25/Green/BT25_053.cs

+ 5 - 1
Assets/Scripts/CardEffect/BT25/Green/BT25_053.cs

@@ -96,7 +96,11 @@ namespace DCGO.CardEffects.BT25
                     if (selectedPermanent != null)
                     {
                         #region Suspend and Freeze
-                        yield return ContinuousController.instance.StartCoroutine(new SuspendPermanentsClass(new List<Permanent>() { selectedPermanent }, hashtable).Tap());
+                        if (!selectedPermanent.TopCard.CanNotBeAffected(activateClass))
+                        {
+                            yield return ContinuousController.instance.StartCoroutine(new SuspendPermanentsClass(new List<Permanent>() { selectedPermanent }, hashtable).Tap());
+                        }
+
                         yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.GainCanNotUnsuspend(selectedPermanent, EffectDuration.UntilOpponentTurnEnd, activateClass, null, "Can not unsuspend"));
                         #endregion
                     }