[KHM] Implemented Barkchannel Pathway / Tidechannel Pathway

This commit is contained in:
Evan Kranzler 2020-12-15 20:53:30 -05:00
parent 6e80d11d75
commit e5558fb1b7
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,49 @@
package mage.cards.b;
import java.util.UUID;
import mage.abilities.mana.BlackManaAbility;
import mage.abilities.mana.BlueManaAbility;
import mage.abilities.mana.GreenManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.cards.ModalDoubleFacesCard;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author TheElk801
*/
public final class BarkchannelPathway extends ModalDoubleFacesCard {
public BarkchannelPathway(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo,
new CardType[]{CardType.LAND}, new SubType[]{}, "",
"Tidechannel Pathway", new CardType[]{CardType.LAND}, new SubType[]{}, ""
);
// 1.
// Barkchannel Pathway
// Land
// {T}: Add {G}.
this.getLeftHalfCard().addAbility(new GreenManaAbility());
// 2.
// Tidechannel Pathway
// Land
// {T}: Add {U}.
this.getRightHalfCard().addAbility(new BlueManaAbility());
}
private BarkchannelPathway(final BarkchannelPathway card) {
super(card);
}
@Override
public BarkchannelPathway copy() {
return new BarkchannelPathway(this);
}
}

View file

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