mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
Implemented Chandra, Awakened Inferno
This commit is contained in:
parent
75e5ad3d7b
commit
1887bc149e
3 changed files with 159 additions and 0 deletions
|
|
@ -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
|
||||
));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue