[KHM] Implemented Blightstep Pathway / Searstep Pathway

This commit is contained in:
Evan Kranzler 2020-12-15 20:56:35 -05:00
parent e5558fb1b7
commit b133c005f9
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,46 @@
package mage.cards.b;
import mage.abilities.mana.BlackManaAbility;
import mage.abilities.mana.RedManaAbility;
import mage.cards.CardSetInfo;
import mage.cards.ModalDoubleFacesCard;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BlightstepPathway extends ModalDoubleFacesCard {
public BlightstepPathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo,
new CardType[]{CardType.LAND}, new SubType[]{}, "",
"Searstep Pathway", new CardType[]{CardType.LAND}, new SubType[]{}, ""
);
// 1.
// Blightstep Pathway
// Land
// {T}: Add {B}.
this.getLeftHalfCard().addAbility(new BlackManaAbility());
// 2.
// Searstep Pathway
// Land
// {T}: Add {R}.
this.getRightHalfCard().addAbility(new RedManaAbility());
}
private BlightstepPathway(final BlightstepPathway card) {
super(card);
}
@Override
public BlightstepPathway copy() {
return new BlightstepPathway(this);
}
}

View file

@ -29,5 +29,6 @@ public final class Kaldheim extends ExpansionSet {
this.maxCardNumberInBooster = 285;
cards.add(new SetCardInfo("Barkchannel Pathway", 251, Rarity.RARE, mage.cards.b.BarkchannelPathway.class));
cards.add(new SetCardInfo("Blightstep Pathway", 252, Rarity.RARE, mage.cards.b.BlightstepPathway.class));
}
}