mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
[MOC] Implement Teferi's Talent
This commit is contained in:
parent
f6d9b37530
commit
1cfe05f38e
3 changed files with 85 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
package mage.game.command.emblems;
|
||||
|
||||
import mage.abilities.LoyaltyAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.continuous.ActivateAbilitiesAnyTimeYouCouldCastInstantEffect;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.command.Emblem;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TeferisTalentEmblem extends Emblem {
|
||||
// -12: "You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant."
|
||||
|
||||
public TeferisTalentEmblem() {
|
||||
this.setName("Emblem Teferi");
|
||||
this.getAbilities().add(new SimpleStaticAbility(
|
||||
Zone.COMMAND,
|
||||
new ActivateAbilitiesAnyTimeYouCouldCastInstantEffect(
|
||||
LoyaltyAbility.class,
|
||||
"loyalty abilities of planeswalkers you control on any player's turn"
|
||||
)
|
||||
));
|
||||
|
||||
this.setExpansionSetCodeForImage("MOC");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue