Просмотр исходного кода

Fixed typo in BT1 Weregarurumon/Metalgreymon, fixed Analogman and made shoutmon x5 also black

Quick-Bolt 2 лет назад
Родитель
Сommit
7ad9fc4552

+ 2 - 2
Assets/CardBaseEntity/BT10/Red/Digimon/シャウトモンX5-BT10-013.asset

@@ -1,3 +1,3 @@
 version https://git-lfs.github.com/spec/v1
-oid sha256:fc5e290ad826a12e9e9d0854698c82a423c967c7e0e1adf911a90cc2422e5e4a
-size 3134
+oid sha256:66953d0ffe569baf5dd1ccaee2f3c7729d9ecb0caccf96f2290b2eeeb288b24f
+size 2862

+ 1 - 1
Assets/CardEffect/BT1/Red/Metalgreymon_BT1_021.cs

@@ -21,7 +21,7 @@ public class Metalgreymon_BT1_021 : CEntity_Effect
 
             string EffectDiscription()
             {
-                return "[When Attacking] Gain 3 memory. At end of turn�Close 3 memory.";
+                return "[When Attacking] Gain 3 memory. At end of turn� lose 3 memory.";
             }
 
             bool CanUseCondition(Hashtable hashtable)

+ 2 - 9
Assets/CardEffect/BT11/Black/Analogman_BT11_092.cs

@@ -131,12 +131,9 @@ public class Analogman_BT11_092 : CEntity_Effect
                 {
                     if (permanent.TopCard.CardTraits.Contains("Machine"))
                     {
-                        if (permanent.TopCard.Level == 6)
+                        if (permanent.TopCard.HasLevel && permanent.TopCard.Level == 6)
                         {
-                            if (permanent.TopCard.HasLevel)
-                            {
-                                return true;
-                            }
+                            return true;
                         }
                     }
                 }
@@ -146,10 +143,6 @@ public class Analogman_BT11_092 : CEntity_Effect
 
             bool PermanentCondition(Permanent permanent)
             {
-                if (permanent.IsDigimon || permanent.IsTamer)
-                {
-                    return false;
-                }
                 return CardEffectCommons.IsOpponentPermanent(permanent, card);
             }