forked from External/mage
Tokens and command objects reworked (part 2 of 2, tokens/emblems)
This commit is contained in:
parent
5f55c7c667
commit
f2d93f224f
591 changed files with 1368 additions and 4425 deletions
|
|
@ -13,7 +13,7 @@ public final class TeferisTalentEmblem extends Emblem {
|
|||
// -12: "You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant."
|
||||
|
||||
public TeferisTalentEmblem() {
|
||||
this.setName("Emblem Teferi");
|
||||
super("Emblem Teferi");
|
||||
this.getAbilities().add(new SimpleStaticAbility(
|
||||
Zone.COMMAND,
|
||||
new ActivateAbilitiesAnyTimeYouCouldCastInstantEffect(
|
||||
|
|
@ -21,7 +21,14 @@ public final class TeferisTalentEmblem extends Emblem {
|
|||
"loyalty abilities of planeswalkers you control on any player's turn"
|
||||
)
|
||||
));
|
||||
}
|
||||
|
||||
this.setExpansionSetCodeForImage("MOC");
|
||||
private TeferisTalentEmblem(final TeferisTalentEmblem card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TeferisTalentEmblem copy() {
|
||||
return new TeferisTalentEmblem(this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue