forked from External/mage
40 lines
1.1 KiB
Java
40 lines
1.1 KiB
Java
package mage.cards.s;
|
|
|
|
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
|
import mage.abilities.keyword.IndestructibleAbility;
|
|
import mage.abilities.mana.BlueManaAbility;
|
|
import mage.abilities.mana.RedManaAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class SilverbluffBridge extends CardImpl {
|
|
|
|
public SilverbluffBridge(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.LAND}, "");
|
|
|
|
// Silverbluff Bridge enters the battlefield tapped.
|
|
this.addAbility(new EntersBattlefieldTappedAbility());
|
|
|
|
// Indestructible
|
|
this.addAbility(IndestructibleAbility.getInstance());
|
|
|
|
// {T}: Add {U} or {R}.
|
|
this.addAbility(new BlueManaAbility());
|
|
this.addAbility(new RedManaAbility());
|
|
}
|
|
|
|
private SilverbluffBridge(final SilverbluffBridge card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public SilverbluffBridge copy() {
|
|
return new SilverbluffBridge(this);
|
|
}
|
|
}
|