mirror of
https://github.com/correl/mage.git
synced 2025-04-11 17:00:08 -09:00
Merge fix
This commit is contained in:
parent
46d030d37a
commit
e2030aead9
1 changed files with 2 additions and 5 deletions
|
@ -1,25 +1,22 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.effects.common.CounterTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetActivatedOrTriggeredAbilityOrLegendarySpell;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author rscoates
|
||||
*/
|
||||
public final class TalesEnd extends CardImpl {
|
||||
|
||||
public TalesEnd(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
|
||||
|
||||
|
||||
// Counter target activated ability, triggered ability, or legendary spell.
|
||||
// Counter target activated or triggered ability.
|
||||
this.getSpellAbility().addEffect(new CounterTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetActivatedOrTriggeredAbilityOrLegendarySpell());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue