Bladeren bron

Initial Script Creation

mbunch_kascope 1 jaar geleden
bovenliggende
commit
71d2ca17ec

+ 64 - 0
Assets/CardEffect/EX9/Blue/EX9_019.cs

@@ -0,0 +1,64 @@
+using System.Collections;
+using System.Collections.Generic;
+
+//WereGarurumon: Sagittarius Mode
+namespace DCGO.CardEffects.EX9
+{
+    public class EX9_019 : CEntity_Effect
+    {
+        public override List<ICardEffect> CardEffects(EffectTiming timing, CardSource card)
+        {
+            List<ICardEffect> cardEffects = new List<ICardEffect>();
+
+            #region Alternate Digivolution Requirement
+
+            #endregion
+
+            #region On Play
+
+            #endregion
+
+            #region When Digivolving
+
+            #endregion
+
+            #region Your Turn
+
+            #endregion
+
+            #region When Attacking - ESS
+
+            #endregion
+
+            if (timing == EffectTiming.None)
+            {
+                ActivateClass activateClass = new ActivateClass();
+                activateClass.SetUpICardEffect("", CanUseCondition, card);
+                activateClass.SetUpActivateClass(CanActivateCondition, ActivateCoroutine, -1, true, EffectDiscription());
+                cardEffects.Add(activateClass);
+
+                string EffectDiscription()
+                {
+                    return "";
+                }
+
+                bool CanUseCondition(Hashtable hashtable)
+                {
+                    return true;
+                }
+
+                bool CanActivateCondition(Hashtable hashtable)
+                {
+                    return true;
+                }
+
+                IEnumerator ActivateCoroutine(Hashtable hashtable)
+                {
+                    yield return null;
+                }
+            }
+
+            return cardEffects;
+        }
+    }
+}

+ 11 - 0
Assets/CardEffect/EX9/Blue/EX9_019.cs.meta

@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: b60adf9420b40c2448414919a242b5ac
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 72 - 0
Assets/CardEffect/EX9/Blue/EX9_020.cs

@@ -0,0 +1,72 @@
+using System.Collections;
+using System.Collections.Generic;
+
+//CresGarurumon
+namespace DCGO.CardEffects.EX9
+{
+    public class EX9_020 : CEntity_Effect
+    {
+        public override List<ICardEffect> CardEffects(EffectTiming timing, CardSource card)
+        {
+            List<ICardEffect> cardEffects = new List<ICardEffect>();
+
+            #region Alternate Digivolution Requirement
+
+            #endregion
+
+            #region Blast Digivolve
+
+            #endregion
+
+            #region Alliance/Sec Atk +1/Blocker
+
+            #endregion
+
+            #region On Play
+
+            #endregion
+
+            #region When Digivolving
+
+            #endregion
+
+            #region All Turns
+
+            #endregion
+
+            #region Your Turn - ESS
+
+            #endregion
+
+            if (timing == EffectTiming.None)
+            {
+                ActivateClass activateClass = new ActivateClass();
+                activateClass.SetUpICardEffect("", CanUseCondition, card);
+                activateClass.SetUpActivateClass(CanActivateCondition, ActivateCoroutine, -1, true, EffectDiscription());
+                cardEffects.Add(activateClass);
+
+                string EffectDiscription()
+                {
+                    return "";
+                }
+
+                bool CanUseCondition(Hashtable hashtable)
+                {
+                    return true;
+                }
+
+                bool CanActivateCondition(Hashtable hashtable)
+                {
+                    return true;
+                }
+
+                IEnumerator ActivateCoroutine(Hashtable hashtable)
+                {
+                    yield return null;
+                }
+            }
+
+            return cardEffects;
+        }
+    }
+}

+ 11 - 0
Assets/CardEffect/EX9/Blue/EX9_020.cs.meta

@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: fb9886944992c584aa81c03838e62d10
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: