mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[STX] Implemented Archmage Emeritus
This commit is contained in:
parent
73888133eb
commit
d1b3d8b778
2 changed files with 39 additions and 0 deletions
38
Mage.Sets/src/mage/cards/a/ArchmageEmeritus.java
Normal file
38
Mage.Sets/src/mage/cards/a/ArchmageEmeritus.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.MagecraftAbility;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ArchmageEmeritus extends CardImpl {
|
||||
|
||||
public ArchmageEmeritus(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}{U}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.WIZARD);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Magecraft — Whenever you cast or copy an instant or sorcery spell, draw a card.
|
||||
this.addAbility(new MagecraftAbility(new DrawCardSourceControllerEffect(1)));
|
||||
}
|
||||
|
||||
private ArchmageEmeritus(final ArchmageEmeritus card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArchmageEmeritus copy() {
|
||||
return new ArchmageEmeritus(this);
|
||||
}
|
||||
}
|
|
@ -27,6 +27,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
this.ratioBoosterMythic = 7.4;
|
||||
this.maxCardNumberInBooster = 275;
|
||||
|
||||
cards.add(new SetCardInfo("Archmage Emeritus", 37, Rarity.RARE, mage.cards.a.ArchmageEmeritus.class));
|
||||
cards.add(new SetCardInfo("Eager First-Year", 16, Rarity.COMMON, mage.cards.e.EagerFirstYear.class));
|
||||
cards.add(new SetCardInfo("Kasmina, Enigma Sage", 196, Rarity.MYTHIC, mage.cards.k.KasminaEnigmaSage.class));
|
||||
cards.add(new SetCardInfo("Lorehold Command", 199, Rarity.RARE, mage.cards.l.LoreholdCommand.class));
|
||||
|
|
Loading…
Reference in a new issue