Created 6 cards. (High probability for minor errors.)

This commit is contained in:
Temba 2015-03-17 19:50:02 +02:00
parent faa1e4d0d6
commit cc4abc1330

View file

@ -83,19 +83,9 @@ public class WormfangDrake extends CardImpl {
//When Wormfang Drake enters the battlefield, sacrifice it unless you exile a creature you control other than Wormfang Drake.
this.addAbility(new WormfangDrakeAbility(this, CardType.CREATURE));
//Ability ability1 = new EntersBattlefieldTriggeredAbility(new SacrificeSourceUnlessPaysEffect((new ExileTargetCost(new TargetControlledPermanent(filter)))), false);
//Target target = new TargetControlledPermanent(1,1,filter,true);
//ability1.addTarget(target);
//this.addAbility(ability1);
// When Wormfang Drake leaves the battlefield, return the exiled card to the battlefield under its owner's control.
//Ability ability2 = new LeavesBattlefieldTriggeredAbility(new ReturnFromExileForSourceEffect(Zone.BATTLEFIELD), false);
//this.addAbility(ability2);
this.addAbility(new WormfangDrakeAbility(this, CardType.CREATURE));
}