Przeglądaj źródła

Added level condition to helloogarmon

mbunch_kascope 2 lat temu
rodzic
commit
bc64bcba2a

+ 2 - 1
Assets/CardEffect/BT16/Red/Helloogarmon_BT16_010.cs

@@ -22,7 +22,8 @@ namespace DCGO.CardEffects.BT16
                 {
                     if (targetPermanent.TopCard.ContainsTraits("SoC"))
                     {
-                        return true;
+                        if(targetPermanent.TopCard.HasLevel && targetPermanent.TopCard.Level == 4)
+                            return true;
                     }
 
                     return false;