forked from External/mage
34 lines
904 B
Java
34 lines
904 B
Java
|
|
package mage.cards.s;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.dynamicvalue.common.DomainValue;
|
|
import mage.abilities.effects.common.CreateTokenEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.game.permanent.token.SaprolingToken;
|
|
|
|
/**
|
|
*
|
|
* @author North
|
|
*/
|
|
public final class SporeBurst extends CardImpl {
|
|
|
|
public SporeBurst(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{G}");
|
|
|
|
|
|
// Domain - Create a 1/1 green Saproling creature token for each basic land type among lands you control.
|
|
this.getSpellAbility().addEffect(new CreateTokenEffect(new SaprolingToken(), new DomainValue()));
|
|
}
|
|
|
|
public SporeBurst(final SporeBurst card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public SporeBurst copy() {
|
|
return new SporeBurst(this);
|
|
}
|
|
}
|