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

@ -1,4 +1,3 @@
package mage.game.command.emblems;
import mage.abilities.Ability;
@ -12,17 +11,23 @@ import mage.game.command.Emblem;
import mage.players.Player;
/**
*
* @author spjspj
*/
public final class DovinBaanEmblem extends Emblem {
public DovinBaanEmblem() {
this.setName("Emblem Dovin");
super("Emblem Dovin");
Ability ability = new SimpleStaticAbility(Zone.COMMAND, new DovinBaanCantUntapEffect());
this.getAbilities().add(ability);
}
this.setExpansionSetCodeForImage("KLD");
private DovinBaanEmblem(final DovinBaanEmblem card) {
super(card);
}
@Override
public DovinBaanEmblem copy() {
return new DovinBaanEmblem(this);
}
}