BT19_040_token.cs 664 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. namespace DCGO.CardEffects.Tokens
  3. {
  4. public class BT19_040_token : CEntity_Effect
  5. {
  6. public override List<ICardEffect> CardEffects(EffectTiming timing, CardSource card)
  7. {
  8. List<ICardEffect> cardEffects = new List<ICardEffect>();
  9. #region Blocker
  10. if (timing == EffectTiming.None)
  11. {
  12. cardEffects.Add(CardEffectFactory.BlockerSelfStaticEffect(
  13. isInheritedEffect: false,
  14. card: card,
  15. condition: null));
  16. }
  17. #endregion
  18. return cardEffects;
  19. }
  20. }
  21. }