mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Slab Hammer - Removed unneccessary target.
This commit is contained in:
parent
234d5b0a52
commit
3bb7b6dd5b
2 changed files with 1 additions and 3 deletions
|
@ -41,7 +41,6 @@ import mage.constants.Duration;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
import mage.filter.common.FilterControlledLandPermanent;
|
import mage.filter.common.FilterControlledLandPermanent;
|
||||||
import mage.target.TargetPermanent;
|
|
||||||
import mage.target.common.TargetControlledPermanent;
|
import mage.target.common.TargetControlledPermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -60,7 +59,6 @@ public class SlabHammer extends CardImpl {
|
||||||
new DoIfCostPaid(new BoostEquippedEffect(2, 2, Duration.EndOfTurn),
|
new DoIfCostPaid(new BoostEquippedEffect(2, 2, Duration.EndOfTurn),
|
||||||
new ReturnToHandTargetPermanentCost(new TargetControlledPermanent(new FilterControlledLandPermanent())),
|
new ReturnToHandTargetPermanentCost(new TargetControlledPermanent(new FilterControlledLandPermanent())),
|
||||||
"Return a land you control to its owner's hand? (giving +2/+2 to the equipped creature)"));
|
"Return a land you control to its owner's hand? (giving +2/+2 to the equipped creature)"));
|
||||||
ability.addTarget(new TargetPermanent());
|
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// Equip {2}
|
// Equip {2}
|
||||||
|
|
|
@ -148,7 +148,7 @@ public class DontUntapInControllersNextUntapStepTargetEffect extends ContinuousR
|
||||||
if (targetName != null && targetName.length() > 0) {
|
if (targetName != null && targetName.length() > 0) {
|
||||||
return targetName + " doesn't untap during its controller's next untap step";
|
return targetName + " doesn't untap during its controller's next untap step";
|
||||||
} else {
|
} else {
|
||||||
return "Target " + (mode == null ? "creature" : mode.getTargets().get(0).getTargetName()) + " doesn't untap during its controller's next untap step";
|
return "target " + (mode == null ? "creature" : mode.getTargets().get(0).getTargetName()) + " doesn't untap during its controller's next untap step";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue