Explorar o código

Fix Liberator 7s cannot warp in breeding

hooperk hai 5 meses
pai
achega
5b941ccda2

+ 1 - 2
Assets/Scripts/CardEffect/BT22/Blue/BT22_028.cs

@@ -45,8 +45,7 @@ namespace DCGO.CardEffects.BT22
 
                 bool PermanentCondition(Permanent targetPermanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(targetPermanent, card)
-                        && targetPermanent.TopCard.EqualsCardName("MarineBullmon");
+                    return targetPermanent.TopCard.EqualsCardName("MarineBullmon");
                 }
 
                 cardEffects.Add(CardEffectFactory.AddSelfDigivolutionRequirementStaticEffect(

+ 1 - 2
Assets/Scripts/CardEffect/BT23/Purple/BT23_071.cs

@@ -27,8 +27,7 @@ namespace DCGO.CardEffects.BT23
 
                 bool PermanentCondition(Permanent targetPermanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(targetPermanent, card)
-                        && targetPermanent.TopCard.EqualsCardName("Phantomon");
+                    return targetPermanent.TopCard.EqualsCardName("Phantomon");
                 }
 
                 cardEffects.Add(CardEffectFactory.AddSelfDigivolutionRequirementStaticEffect(

+ 1 - 2
Assets/Scripts/CardEffect/BT24/Red/BT24_018.cs

@@ -29,8 +29,7 @@ namespace DCGO.CardEffects.BT24
 
                 bool PermanentCondition(Permanent targetPermanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(targetPermanent, card)
-                        && targetPermanent.TopCard.EqualsCardName("Lamiamon");
+                    return targetPermanent.TopCard.EqualsCardName("Lamiamon");
                 }
 
                 cardEffects.Add(CardEffectFactory.AddSelfDigivolutionRequirementStaticEffect(

+ 1 - 2
Assets/Scripts/CardEffect/EX11/Green/EX11_074.cs

@@ -30,8 +30,7 @@ namespace DCGO.CardEffects.EX11
 
                 bool PermanentCondition(Permanent targetPermanent)
                 {
-                    return CardEffectCommons.IsPermanentExistsOnOwnerBattleAreaDigimon(targetPermanent, card)
-                        && targetPermanent.TopCard.EqualsCardName("GrandGalemon");
+                    return targetPermanent.TopCard.EqualsCardName("GrandGalemon");
                 }
 
                 cardEffects.Add(CardEffectFactory.AddSelfDigivolutionRequirementStaticEffect(