mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
33 lines
748 B
Java
33 lines
748 B
Java
package mage.cards.p;
|
|
|
|
import mage.abilities.mana.WhiteManaAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class PillarvergePathway extends CardImpl {
|
|
|
|
public PillarvergePathway(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
|
|
|
this.modalDFC = true;
|
|
this.nightCard = true;
|
|
|
|
// {T}: Add {W}.
|
|
this.addAbility(new WhiteManaAbility());
|
|
}
|
|
|
|
private PillarvergePathway(final PillarvergePathway card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public PillarvergePathway copy() {
|
|
return new PillarvergePathway(this);
|
|
}
|
|
}
|