mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
5c5d729447
2 changed files with 1 additions and 2 deletions
|
@ -69,7 +69,7 @@ public class CrosissCharm extends CardImpl {
|
|||
this.getSpellAbility().addMode(mode);
|
||||
// or destroy target artifact.
|
||||
mode = new Mode();
|
||||
mode.getEffects().add(new DestroyTargetEffect(true));
|
||||
mode.getEffects().add(new DestroyTargetEffect());
|
||||
Target target = new TargetArtifactPermanent();
|
||||
mode.getTargets().add(target);
|
||||
this.getSpellAbility().addMode(mode);
|
||||
|
|
|
@ -45,7 +45,6 @@ public class ContingencyPlan extends CardImpl {
|
|||
public ContingencyPlan(UUID ownerId) {
|
||||
super(ownerId, 52, "Contingency Plan", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{1}{U}");
|
||||
this.expansionSetCode = "EMN";
|
||||
this.supertype.add("Sorcery");
|
||||
|
||||
// Look at the top five cards of your library. Put any number of them into your graveyard and the rest back on top of your library in any order.
|
||||
this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(new StaticValue(5), false, new StaticValue(5),
|
||||
|
|
Loading…
Reference in a new issue