this.color.setBlue(true);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// {3}{U}, {tap}: Counter target spell unless its controller pays {2}.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CounterUnlessPaysEffect(new ManaCostsImpl("{2}")), new ManaCostsImpl("{3}{U}"));
ability.addCost(new TapSourceCost());
ability.addTarget(new TargetSpell());
this.addAbility(ability);
// Channel - {3}{U}, Discard Ghost-Lit Warder: Counter target spell unless its controller pays {4}.
Ability ability2 = new ChannelAbility("{3}{U}", new CounterUnlessPaysEffect(new ManaCostsImpl("{4}")));
ability2.addTarget(new TargetSpell());
this.addAbility(ability2);
}