[BLB] Implement Hop to It

This commit is contained in:
theelk801 2024-07-09 16:42:05 -04:00
parent e10113cbde
commit 573341b2cb
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.cards.h;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.game.permanent.token.RabbitToken;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class HopToIt extends CardImpl {
public HopToIt(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{W}");
// Create three 1/1 white Rabbit creature tokens.
this.getSpellAbility().addEffect(new CreateTokenEffect(new RabbitToken(), 3));
}
private HopToIt(final HopToIt card) {
super(card);
}
@Override
public HopToIt copy() {
return new HopToIt(this);
}
}

View file

@ -26,6 +26,7 @@ public final class Bloomburrow extends ExpansionSet {
cards.add(new SetCardInfo("Carrot Cake", 7, Rarity.COMMON, mage.cards.c.CarrotCake.class));
cards.add(new SetCardInfo("Early Winter", 93, Rarity.COMMON, mage.cards.e.EarlyWinter.class));
cards.add(new SetCardInfo("Forest", 278, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Hop to It", 16, Rarity.UNCOMMON, mage.cards.h.HopToIt.class));
cards.add(new SetCardInfo("Hugs, Grisly Guardian", 218, Rarity.MYTHIC, mage.cards.h.HugsGrislyGuardian.class));
cards.add(new SetCardInfo("Island", 266, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Lilypad Village", 255, Rarity.UNCOMMON, mage.cards.l.LilypadVillage.class));