mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Despotic Scepter - Fixed tooltip text.
This commit is contained in:
parent
eb3531c8bf
commit
10f9eaf395
1 changed files with 3 additions and 3 deletions
|
@ -47,10 +47,10 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class DespoticScepter extends CardImpl {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent();
|
||||
private final static FilterPermanent FILTER = new FilterPermanent("permanent you own");
|
||||
|
||||
static {
|
||||
filter.add(new OwnerPredicate(TargetController.YOU));
|
||||
FILTER.add(new OwnerPredicate(TargetController.YOU));
|
||||
}
|
||||
|
||||
public DespoticScepter(UUID ownerId) {
|
||||
|
@ -59,7 +59,7 @@ public class DespoticScepter extends CardImpl {
|
|||
|
||||
// {tap}: Destroy target permanent you own. It can't be regenerated.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(true), new TapSourceCost());
|
||||
ability.addTarget(new TargetPermanent(filter));
|
||||
ability.addTarget(new TargetPermanent(FILTER));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue