mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
Implemented Ajani, Adversary of Tyrants
This commit is contained in:
parent
56493b631a
commit
f55d0e6706
3 changed files with 90 additions and 0 deletions
|
|
@ -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
|
||||
));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue