mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fix text
This commit is contained in:
parent
56c866ea4b
commit
f0034988fa
1 changed files with 4 additions and 2 deletions
|
@ -49,14 +49,16 @@ import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author anonymous
|
* @author cg5
|
||||||
*/
|
*/
|
||||||
public class IxidorRealitySculptor extends CardImpl {
|
public class IxidorRealitySculptor extends CardImpl {
|
||||||
|
|
||||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Face-down creatures");
|
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Face-down creatures");
|
||||||
|
private static final FilterCreaturePermanent filterTarget = new FilterCreaturePermanent("Face-down creature");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new FaceDownPredicate());
|
filter.add(new FaceDownPredicate());
|
||||||
|
filterTarget.add(new FaceDownPredicate());
|
||||||
}
|
}
|
||||||
|
|
||||||
public IxidorRealitySculptor(UUID ownerId, CardSetInfo setInfo) {
|
public IxidorRealitySculptor(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
@ -73,7 +75,7 @@ public class IxidorRealitySculptor extends CardImpl {
|
||||||
|
|
||||||
// {2}{U}: Turn target face-down creature face up.
|
// {2}{U}: Turn target face-down creature face up.
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TurnFaceUpTargetEffect(), new ManaCostsImpl("{2}{U}"));
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TurnFaceUpTargetEffect(), new ManaCostsImpl("{2}{U}"));
|
||||||
ability.addTarget(new TargetCreaturePermanent(filter));
|
ability.addTarget(new TargetCreaturePermanent(filterTarget));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue