Implemented Domri, Chaos Bringer

This commit is contained in:
Evan Kranzler 2019-01-07 21:00:39 -05:00
parent b9618fe5be
commit 61de630f5a
4 changed files with 201 additions and 0 deletions

View file

@ -0,0 +1,23 @@
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.SoldierToken;
/**
* @author TheElk801
*/
public final class DomriChaosBringerEmblem extends Emblem {
// -8: You get an emblem with "At the beginning of each end step, create a 4/4 red and green Beast creature token with trample."
public DomriChaosBringerEmblem() {
this.setName("Emblem Domri");
this.setExpansionSetCodeForImage("RNA");
this.getAbilities().add(new BeginningOfEndStepTriggeredAbility(
new CreateTokenEffect(new SoldierToken()),
TargetController.ANY, false
));
}
}