mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[TDM] Implement Mammoth Bellow
This commit is contained in:
parent
594df1af80
commit
017be2fdd9
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/m/MammothBellow.java
Normal file
35
Mage.Sets/src/mage/cards/m/MammothBellow.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.HarmonizeAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.permanent.token.Elephant55Token;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MammothBellow extends CardImpl {
|
||||
|
||||
public MammothBellow(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{G}{U}{R}");
|
||||
|
||||
// Create a 5/5 green Elephant creature token.
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new Elephant55Token()));
|
||||
|
||||
// Harmonize {5}{G}{U}{R}
|
||||
this.addAbility(new HarmonizeAbility(this, "{5}{G}{U}{R}"));
|
||||
}
|
||||
|
||||
private MammothBellow(final MammothBellow card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MammothBellow copy() {
|
||||
return new MammothBellow(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -89,6 +89,7 @@ public final class TarkirDragonstorm extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Krotiq Nestguard", 148, Rarity.COMMON, mage.cards.k.KrotiqNestguard.class));
|
||||
cards.add(new SetCardInfo("Lightfoot Technique", 14, Rarity.COMMON, mage.cards.l.LightfootTechnique.class));
|
||||
cards.add(new SetCardInfo("Loxodon Battle Priest", 15, Rarity.UNCOMMON, mage.cards.l.LoxodonBattlePriest.class));
|
||||
cards.add(new SetCardInfo("Mammoth Bellow", 205, Rarity.UNCOMMON, mage.cards.m.MammothBellow.class));
|
||||
cards.add(new SetCardInfo("Mardu Devotee", 16, Rarity.COMMON, mage.cards.m.MarduDevotee.class));
|
||||
cards.add(new SetCardInfo("Mardu Monument", 245, Rarity.UNCOMMON, mage.cards.m.MarduMonument.class));
|
||||
cards.add(new SetCardInfo("Meticulous Artisan", 112, Rarity.COMMON, mage.cards.m.MeticulousArtisan.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue