forked from External/mage
[NEO] Implemented Tezzeret, Betrayer of Flesh
This commit is contained in:
parent
5fb94c6556
commit
c44d101cfd
4 changed files with 235 additions and 14 deletions
|
|
@ -0,0 +1,23 @@
|
|||
package mage.game.command.emblems;
|
||||
|
||||
import mage.abilities.common.BecomesTappedTriggeredAbility;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.command.Emblem;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TezzeretBetrayerOfFleshEmblem extends Emblem {
|
||||
|
||||
// −6: You get an emblem with "Whenever an artifact you control becomes tapped, draw a card."
|
||||
public TezzeretBetrayerOfFleshEmblem() {
|
||||
this.setName("Emblem Tezzeret");
|
||||
this.setExpansionSetCodeForImage("NEO");
|
||||
this.getAbilities().add(new BecomesTappedTriggeredAbility(
|
||||
Zone.COMMAND, new DrawCardSourceControllerEffect(1), false,
|
||||
StaticFilters.FILTER_CONTROLLED_PERMANENT_ARTIFACT, false
|
||||
));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue