mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[STX] Implemented Elemental Masterpiece
This commit is contained in:
parent
36ee7bd0f9
commit
d84ea0b107
2 changed files with 45 additions and 0 deletions
44
Mage.Sets/src/mage/cards/e/ElementalMasterpiece.java
Normal file
44
Mage.Sets/src/mage/cards/e/ElementalMasterpiece.java
Normal file
|
@ -0,0 +1,44 @@
|
|||
package mage.cards.e;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.DiscardSourceCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.permanent.token.PrismariToken;
|
||||
import mage.game.permanent.token.TreasureToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ElementalMasterpiece extends CardImpl {
|
||||
|
||||
public ElementalMasterpiece(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{U}{R}");
|
||||
|
||||
// Create two 4/4 blue and red Elemental creature tokens.
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new PrismariToken(), 2));
|
||||
|
||||
// {U/R}{U/R}, Discard Elemental Masterpiece: Create a Treasure token.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
Zone.HAND, new CreateTokenEffect(new TreasureToken()), new ManaCostsImpl("{U/R}{U/R}")
|
||||
);
|
||||
ability.addCost(new DiscardSourceCost());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private ElementalMasterpiece(final ElementalMasterpiece card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ElementalMasterpiece copy() {
|
||||
return new ElementalMasterpiece(this);
|
||||
}
|
||||
}
|
|
@ -47,6 +47,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Dragonsguard Elite", 127, Rarity.RARE, mage.cards.d.DragonsguardElite.class));
|
||||
cards.add(new SetCardInfo("Dueling Coach", 15, Rarity.UNCOMMON, mage.cards.d.DuelingCoach.class));
|
||||
cards.add(new SetCardInfo("Eager First-Year", 16, Rarity.COMMON, mage.cards.e.EagerFirstYear.class));
|
||||
cards.add(new SetCardInfo("Elemental Masterpiece", 182, Rarity.COMMON, mage.cards.e.ElementalMasterpiece.class));
|
||||
cards.add(new SetCardInfo("Enthusiastic Study", 99, Rarity.COMMON, mage.cards.e.EnthusiasticStudy.class));
|
||||
cards.add(new SetCardInfo("Environmental Sciences", 1, Rarity.COMMON, mage.cards.e.EnvironmentalSciences.class));
|
||||
cards.add(new SetCardInfo("Expanded Anatomy", 2, Rarity.COMMON, mage.cards.e.ExpandedAnatomy.class));
|
||||
|
|
Loading…
Reference in a new issue