mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
37 lines
943 B
Java
37 lines
943 B
Java
|
|
package mage.cards.w;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
|
import mage.abilities.mana.BlueManaAbility;
|
|
import mage.abilities.mana.GreenManaAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class WoodlandStream extends CardImpl {
|
|
|
|
public WoodlandStream(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
|
|
|
|
// Woodland Stream enters the battlefield tapped.
|
|
this.addAbility(new EntersBattlefieldTappedAbility());
|
|
|
|
// {T}: Add {G} or {U}.
|
|
this.addAbility(new GreenManaAbility());
|
|
this.addAbility(new BlueManaAbility());
|
|
}
|
|
|
|
public WoodlandStream(final WoodlandStream card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public WoodlandStream copy() {
|
|
return new WoodlandStream(this);
|
|
}
|
|
}
|