ソースを参照

Arts Digivolve should not be by effect

hooperk 3 ヶ月 前
コミット
f7abd0838b

+ 8 - 11
Assets/Scripts/Script/CardEffectFactory/KeyWordEffects/ArtsDigivolve.cs

@@ -49,17 +49,14 @@ public partial class CardEffectFactory
 
             IEnumerator SelectPermanentCoroutine(Permanent permanent)
             {
-                yield return ContinuousController.instance.StartCoroutine(CardEffectCommons.DigivolveIntoExcecutingAreaCard(
-                    permanent,
-                    null,
-                    false,
-                    null,
-                    null,
-                    -1,
-                    artsDigivolutionClass,
-                    null,
-                    ignoreSelection: true
-                ));
+                yield return ContinuousController.instance.StartCoroutine(new PlayCardClass(
+                    cardSources: new List<CardSource>() { card },
+                    hashtable: null,
+                    payCost: false,
+                    targetPermanent: permanent,
+                    isTapped: false,
+                    root: SelectCardEffect.Root.Execution,
+                    activateETB: true).PlayCard());
             }
         }
     }