foul-magics/Mage/src/main/java/mage/game/command/emblems/AjaniAdversaryOfTyrantsEmblem.java
2018-09-25 13:38:29 -04:00

25 lines
880 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package mage.game.command.emblems;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.constants.TargetController;
import mage.constants.Zone;
import mage.game.command.Emblem;
import mage.game.permanent.token.CatToken2;
/**
*
* @author TheElk801
*/
public final 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(
Zone.COMMAND, new CreateTokenEffect(new CatToken2(), 3),
TargetController.YOU, null, false
));
}
}