Ver código fonte

Chaosmon and Hacker Judge updates

Albert Vasconcellos 2 anos atrás
pai
commit
9e55c3b88c

+ 2 - 2
Assets/AddOn/WebGLInput-master/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset

@@ -1,3 +1,3 @@
 version https://git-lfs.github.com/spec/v1
-oid sha256:5b023a6be3b837bf83442c0693d818f9919434fa3699d6c757986d40ee9a776b
-size 543759
+oid sha256:03cc3f224614b1de91be7e693c035effd3dd6dffa9fc0d20b3e3b98df15bc453
+size 544230

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

@@ -206,7 +206,7 @@ namespace DCGO.CardEffects.BT16
 
                         yield return ContinuousController.instance.StartCoroutine(new IDegeneration(
                             selectedPermanent,
-                            1,
+                            3,
                             activateClass).Degeneration());
                     }
 

+ 14 - 2
Assets/CardEffect/BT16/Yellow/HackerJudge_BT16_086.cs

@@ -93,12 +93,24 @@ namespace DCGO.CardEffects.BT16
                 }
 
                 cardEffects.Add(CardEffectFactory.BlockerSelfStaticEffect(isInheritedEffect: true, card: card, condition: Condition));
-                cardEffects.Add(CardEffectFactory.BarrierSelfEffect(isInheritedEffect: true, card: card, condition: Condition));
             }
 
             if (timing == EffectTiming.WhenPermanentWouldBeDeleted)
             {
-                cardEffects.Add(CardEffectFactory.BarrierSelfEffect(isInheritedEffect: true, card: card, condition: null));
+                bool Condition()
+                {
+                    if (CardEffectCommons.IsExistOnBattleArea(card))
+                    {
+                        if (card.PermanentOfThisCard().TopCard.HasText("Pulsemon"))
+                        {
+                            return true;
+                        }
+                    }
+
+                    return false;
+                }
+
+                cardEffects.Add(CardEffectFactory.BarrierSelfEffect(isInheritedEffect: true, card: card, condition: Condition));
             }
             #endregion