Lewisaaronwelch 4 месяцев назад
Родитель
Сommit
e9a35756f2
1 измененных файлов с 2 добавлено и 5 удалено
  1. 2 5
      Assets/Scripts/CardEffect/BT25/Yellow/BT25_033.cs

+ 2 - 5
Assets/Scripts/CardEffect/BT25/Yellow/BT25_033.cs

@@ -18,7 +18,7 @@ namespace DCGO.CardEffects.BT25
                     return targetPermanent.TopCard.HasTSTraits;
                 }
 
-                cardEffects.Add(CardEffectFactory.AddSelfDigivolutionRequirementStaticEffect(PermanentCondition, 2, false, card, null, level: 2));
+                cardEffects.Add(CardEffectFactory.AddSelfDigivolutionRequirementStaticEffect(PermanentCondition, 2, false, card, null, level: 3));
             }
             #endregion
 
@@ -35,8 +35,6 @@ namespace DCGO.CardEffects.BT25
 
             string SharedEffectDescription(string tag) => $"[{tag}] By adding your top security card to the hand, 1 of your opponent's Digimon gets -5000 DP for the turn.";
 
-            bool SharedCanActivateCondition(Hashtable hashtable) => CardEffectCommons.IsExistOnBattleAreaDigimon(card);
-
             bool CanSelectEnemyDigimon(Permanent permanent) => CardEffectCommons.IsPermanentExistsOnOpponentBattleAreaDigimon(permanent, card);
 
             IEnumerator SharedActivateCoroutine(Hashtable hashtable, ActivateClass activateClass)
@@ -87,8 +85,7 @@ namespace DCGO.CardEffects.BT25
                         optional: true,
                         maxCountPerTurn: -1,
                         onPlay: true,
-                        whenDigivolving: true,
-                        additionalActivateCondition: SharedCanActivateCondition);
+                        whenDigivolving: true);
             #endregion
 
             #region Inherited