| 12345678910111213141516171819202122232425 |
- using System.Collections;
- using System.Collections.Generic;
- namespace DCGO.CardEffects.Tokens
- {
- public class EX12_034_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;
- }
- }
- }
|