Implemented Ajani, Adversary of Tyrants

This commit is contained in:
Evan Kranzler 2018-06-16 21:39:34 -04:00
parent 56493b631a
commit f55d0e6706
3 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,24 @@
package mage.game.command.emblems;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.constants.TargetController;
import mage.game.command.Emblem;
import mage.game.permanent.token.CatToken2;
/**
*
* @author spjspj
*/
public class AjaniAdversaryOfTyrantsEmblem extends Emblem {
// 7: You get an emblem with "At the beginning of your end step, create three 1/1 white Cat creature tokens with lifelink."
public AjaniAdversaryOfTyrantsEmblem() {
this.setName("Emblem Ajani");
this.setExpansionSetCodeForImage("M19");
this.getAbilities().add(new BeginningOfEndStepTriggeredAbility(
new CreateTokenEffect(new CatToken2(), 3),
TargetController.YOU, false
));
}
}