mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Phyrexian Metamorph - Fixed that the enteres battlefield effect was not optional.
This commit is contained in:
parent
c7744d8631
commit
976936b55d
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ public class PhyrexianMetamorph extends CardImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
public PhyrexianMetamorph(UUID ownerId, CardSetInfo setInfo) {
|
public PhyrexianMetamorph(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}{UP}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}{UP}");
|
||||||
this.subtype.add("Shapeshifter");
|
this.subtype.add("Shapeshifter");
|
||||||
|
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
|
@ -87,7 +87,7 @@ public class PhyrexianMetamorph extends CardImpl {
|
||||||
// You may have Phyrexian Metamorph enter the battlefield as a copy of any artifact or creature on the battlefield, except it's an artifact in addition to its other types.
|
// You may have Phyrexian Metamorph enter the battlefield as a copy of any artifact or creature on the battlefield, except it's an artifact in addition to its other types.
|
||||||
Effect effect = new CopyPermanentEffect(filter, phyrexianMetamorphApplier);
|
Effect effect = new CopyPermanentEffect(filter, phyrexianMetamorphApplier);
|
||||||
effect.setText("You may have {this} enter the battlefield as a copy of any artifact or creature on the battlefield, except it's an artifact in addition to its other types");
|
effect.setText("You may have {this} enter the battlefield as a copy of any artifact or creature on the battlefield, except it's an artifact in addition to its other types");
|
||||||
Ability ability = new SimpleStaticAbility(Zone.ALL, new EntersBattlefieldEffect(effect));
|
Ability ability = new SimpleStaticAbility(Zone.ALL, new EntersBattlefieldEffect(effect, "", true));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue