| 123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- namespace DCGO.CardEffects.Tokens
- {
- public class BT19_040_token : CEntity_Effect
- {
- public override List<ICardEffect> CardEffects(EffectTiming timing, CardSource card)
- {
- List<ICardEffect> cardEffects = new List<ICardEffect>();
- #region Blocker
- if (timing == EffectTiming.None)
- {
- cardEffects.Add(CardEffectFactory.BlockerSelfStaticEffect(
- isInheritedEffect: false,
- card: card,
- condition: null));
- }
- #endregion
- return cardEffects;
- }
- }
- }
|