[KHM] Implemented Hengegate Pathway

This commit is contained in:
Evan Kranzler 2020-12-15 21:01:02 -05:00
parent af89512c3f
commit e5f05ac8c8
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,46 @@
package mage.cards.h;
import mage.abilities.mana.BlueManaAbility;
import mage.abilities.mana.WhiteManaAbility;
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 HengegatePathway extends ModalDoubleFacesCard {
public HengegatePathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo,
new CardType[]{CardType.LAND}, new SubType[]{}, "",
"Mistgate Pathway", new CardType[]{CardType.LAND}, new SubType[]{}, ""
);
// 1.
// Hengegate Pathway
// Land
// {T}: Add {W}.
this.getLeftHalfCard().addAbility(new WhiteManaAbility());
// 2.
// Mistgate Pathway
// Land
// {T}: Add {U}.
this.getRightHalfCard().addAbility(new BlueManaAbility());
}
private HengegatePathway(final HengegatePathway card) {
super(card);
}
@Override
public HengegatePathway copy() {
return new HengegatePathway(this);
}
}

View file

@ -31,5 +31,6 @@ public final class Kaldheim extends ExpansionSet {
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));
cards.add(new SetCardInfo("Darkbore Pathway", 254, Rarity.RARE, mage.cards.d.DarkborePathway.class));
cards.add(new SetCardInfo("Hengegate Pathway", 260, Rarity.RARE, mage.cards.h.HengegatePathway.class));
}
}