mbunch_kascope 2 лет назад
Родитель
Сommit
3995ea5f0e
1 измененных файлов с 8 добавлено и 4 удалено
  1. 8 4
      Assets/CardEffect/LM/Purple/Gyuukimon_LM_018.cs

+ 8 - 4
Assets/CardEffect/LM/Purple/Gyuukimon_LM_018.cs

@@ -23,14 +23,18 @@ namespace DCGO.CardEffects.LM
 
                 bool CanSelectPermanentCondition(Permanent permanent)
                 {
-                    if (permanent.IsDigimon)
+                    if (CardEffectCommons.IsPermanentExistsOnBattleArea(permanent))
                     {
-                        if (permanent.Level <= 4)
+                        if (permanent.IsDigimon)
                         {
-                            return true;
+                            if (permanent.Level <= 4)
+                            {
+                                return true;
+                            }
                         }
                     }
-                    return false;
+                        
+                   return false;
                 }
 
                 bool CanUseCondition(Hashtable hashtable)