Implemented Chandra, Awakened Inferno

This commit is contained in:
Evan Kranzler 2019-06-15 16:22:48 -04:00
parent 75e5ad3d7b
commit 1887bc149e
3 changed files with 159 additions and 0 deletions

View file

@ -0,0 +1,27 @@
package mage.game.command.emblems;
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
import mage.abilities.effects.common.DamageControllerEffect;
import mage.constants.TargetController;
import mage.constants.Zone;
import mage.game.command.Emblem;
/**
* @author TheElk801
*/
public final class ChandraAwakenedInfernoEmblem extends Emblem {
/**
* Emblem with "At the beginning of your upkeep, this emblem deals 1 damage
* to you."
*/
public ChandraAwakenedInfernoEmblem() {
setName("Emblem Chandra");
setExpansionSetCodeForImage("M19");
this.getAbilities().add(new BeginningOfUpkeepTriggeredAbility(
Zone.COMMAND, new DamageControllerEffect(1, "this emblem"),
TargetController.YOU, false, true
));
}
}