Selaa lähdekoodia

sheepmon collision update,

mbunch_kascope 2 vuotta sitten
vanhempi
sitoutus
1d6b07707b

+ 1 - 1
Assets/CardEffect/BT16/Yellow/Sheepmon_BT16_032.cs

@@ -14,7 +14,7 @@ namespace DCGO.CardEffects.BT16
 
             if (timing == EffectTiming.OnAllyAttack)
             {
-                cardEffects.Add(CardEffectFactory.CollisionStaticEffect(isInheritedEffect: false, card: card));
+                cardEffects.Add(CardEffectFactory.CollisionSelfStaticEffect(isInheritedEffect: false, card: card, condition: null));
             }
 
             if (timing == EffectTiming.WhenPermanentWouldBeDeleted)

+ 2 - 1
Assets/Scripts/CardEffectCommons/KeyWordEffects/Collision.cs

@@ -17,13 +17,14 @@ public partial class CardEffectCommons
                 {
                     return true;
                 }
+            }
         }
 
         return false;
     }
     #endregion
 
-    #region Effect process of [Blitz]
+    #region Effect process of [Collision]
     public static IEnumerator CollisionProcess(CardSource cardSource, ICardEffect activateClass, Func<IEnumerator> beforeOnAttackCoroutine = null)
     {
         if (CanActivateCollision(cardSource))