[MH2] Implemented Chatterstorm

This commit is contained in:
Evan Kranzler 2021-05-26 07:01:22 -04:00
parent 90195ad8ad
commit f98d51bd07
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,35 @@
package mage.cards.c;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.keyword.StormAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.game.permanent.token.SquirrelToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class Chatterstorm extends CardImpl {
public Chatterstorm(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
// Create a 1/1 green Squirrel creature token.
this.getSpellAbility().addEffect(new CreateTokenEffect(new SquirrelToken()));
// Storm
this.addAbility(new StormAbility());
}
private Chatterstorm(final Chatterstorm card) {
super(card);
}
@Override
public Chatterstorm copy() {
return new Chatterstorm(this);
}
}

View file

@ -33,6 +33,7 @@ public final class ModernHorizons2 extends ExpansionSet {
cards.add(new SetCardInfo("Break Ties", 8, Rarity.COMMON, mage.cards.b.BreakTies.class));
cards.add(new SetCardInfo("Cabal Coffers", 301, Rarity.MYTHIC, mage.cards.c.CabalCoffers.class));
cards.add(new SetCardInfo("Chance Encounter", 277, Rarity.RARE, mage.cards.c.ChanceEncounter.class));
cards.add(new SetCardInfo("Chatterstorm", 152, Rarity.COMMON, mage.cards.c.Chatterstorm.class));
cards.add(new SetCardInfo("Counterspell", 267, Rarity.UNCOMMON, mage.cards.c.Counterspell.class));
cards.add(new SetCardInfo("Dakkon, Shadow Slayer", 192, Rarity.MYTHIC, mage.cards.d.DakkonShadowSlayer.class));
cards.add(new SetCardInfo("Diamond Lion", 225, Rarity.RARE, mage.cards.d.DiamondLion.class));