mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[KHM] Implemented Barkchannel Pathway / Tidechannel Pathway
This commit is contained in:
parent
6e80d11d75
commit
e5558fb1b7
2 changed files with 50 additions and 0 deletions
49
Mage.Sets/src/mage/cards/b/BarkchannelPathway.java
Normal file
49
Mage.Sets/src/mage/cards/b/BarkchannelPathway.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue