Fixed Archive Trap - missing subtype

This commit is contained in:
North 2012-03-30 22:19:58 +03:00
parent c8b6dde3d9
commit 8a34285d0f

View file

@ -53,7 +53,10 @@ public class ArchiveTrap extends CardImpl<ArchiveTrap> {
public ArchiveTrap(UUID ownerId) {
super(ownerId, 41, "Archive Trap", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{3}{U}{U}");
this.expansionSetCode = "ZEN";
this.subtype.add("Elf");
this.color.setBlue(true);
this.getSpellAbility().addTarget(new TargetOpponent());
this.getSpellAbility().addEffect(new PutLibraryIntoGraveTargetEffect(13));
this.getSpellAbility().addAlternativeCost(new ArchiveTrapAlternativeCost());