x89rt2 2 месяцев назад
Родитель
Сommit
584463e4bc
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      Assets/Scripts/CardEffect/EX12/Black/EX12_003.cs

+ 2 - 1
Assets/Scripts/CardEffect/EX12/Black/EX12_003.cs

@@ -16,6 +16,7 @@ namespace DCGO.CardEffects.EX12
                 ActivateClass activateClass = new ActivateClass();
                 activateClass.SetUpICardEffect("May DNA 1 of the leaving Digimon and another Digimon into an [ME] in hand", CanUseCondition, card);
                 activateClass.SetUpActivateClass(CanActivateCondition, ActivateCoroutine, -1, false, EffectDescription());
+                activateClass.SetIsInheritedEffect(true);
                 activateClass.SetIsSkippable(true);
                 cardEffects.Add(activateClass);
 
@@ -206,7 +207,7 @@ namespace DCGO.CardEffects.EX12
                         && selectedPermanent2 != null
                         && selectedDNA.CanJogressFromTargetPermanent(selectedPermanent1, false))
                         {
-                            int[] jogressEvoRootsFrameIDs = {selectedPermanent1.PermanentFrame.FrameID, selectedPermanent2.PermanentFrame.FrameID};
+                            int[] jogressEvoRootsFrameIDs = { selectedPermanent1.PermanentFrame.FrameID, selectedPermanent2.PermanentFrame.FrameID };
 
                             PlayCardClass playCard = new PlayCardClass(
                                 cardSources: new List<CardSource>() { selectedDNA },