Tokens and command objects reworked (part 2 of 2, tokens/emblems)

This commit is contained in:
Oleg Agafonov 2023-05-08 02:18:42 +04:00
parent 5f55c7c667
commit f2d93f224f
591 changed files with 1368 additions and 4425 deletions

View file

@ -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);
}
}