Skip to content

Commit

Permalink
[KHM] Implemented Blightstep Pathway / Searstep Pathway
Browse files Browse the repository at this point in the history
  • Loading branch information
theelk801 committed Dec 16, 2020
1 parent e5558fb commit b133c00
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
46 changes: 46 additions & 0 deletions Mage.Sets/src/mage/cards/b/BlightstepPathway.java
Original file line number Diff line number Diff line change
@@ -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);
}
}
1 change: 1 addition & 0 deletions Mage.Sets/src/mage/sets/Kaldheim.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ private Kaldheim() {
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));
}
}

0 comments on commit b133c00

Please sign in to comment.