Added rules text comment to Aura Graft.

This commit is contained in:
Duncan Townsend 2015-01-24 21:01:39 -05:00
parent 5460eb7b3c
commit 05fb8409fd
No known key found for this signature in database
GPG key ID: C00ECDF315F7A593

View file

@ -59,13 +59,13 @@ public class AuraGraft extends CardImpl {
super(ownerId, 67, "Aura Graft", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{1}{U}"); super(ownerId, 67, "Aura Graft", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{1}{U}");
this.expansionSetCode = "10E"; this.expansionSetCode = "10E";
// Gain control of target Aura that's attached to a permanent. Attach it to another permanent it can enchant.
FilterPermanent filter = new FilterPermanent("Aura that's attached to a permanent"); FilterPermanent filter = new FilterPermanent("Aura that's attached to a permanent");
filter.add(new SubtypePredicate("Aura")); filter.add(new SubtypePredicate("Aura"));
filter.add(new AttachedToPermanentPredicate()); filter.add(new AttachedToPermanentPredicate());
this.getSpellAbility().addTarget(new TargetPermanent(filter)); this.getSpellAbility().addTarget(new TargetPermanent(filter));
Effect gainControlEffect = new GainControlTargetEffect(Duration.EndOfGame); Effect gainControlEffect = new GainControlTargetEffect(Duration.EndOfGame);
//gainControlEffect.setText("Gain control of target Aura that's attached to a permanent");
this.getSpellAbility().addEffect(gainControlEffect); this.getSpellAbility().addEffect(gainControlEffect);
this.getSpellAbility().addEffect(new MoveTargetAuraEffect()); this.getSpellAbility().addEffect(new MoveTargetAuraEffect());