mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[KHM] Implemented Blightstep Pathway / Searstep Pathway
This commit is contained in:
parent
e5558fb1b7
commit
b133c005f9
2 changed files with 47 additions and 0 deletions
46
Mage.Sets/src/mage/cards/b/BlightstepPathway.java
Normal file
46
Mage.Sets/src/mage/cards/b/BlightstepPathway.java
Normal 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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue