forked from magefree/mage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KHM] Implemented Blightstep Pathway / Searstep Pathway
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters