@@ -70,6 +70,26 @@ namespace DCGO.CardEffects.BT16
}
#endregion
+ #region Inherit
+ if (timing == EffectTiming.None)
+ {
+ bool Condition()
+ if (CardEffectCommons.IsExistOnBattleArea(card))
+ if (card.PermanentOfThisCard().IsSuspended)
+ return true;
+ }
+
+ return false;
+ cardEffects.Add(CardEffectFactory.ChangeSelfDPStaticEffect(changeValue: 1000, isInheritedEffect: true, card: card, condition: Condition));
+ #endregion
return cardEffects;