forked from External/mage
36 lines
933 B
Java
36 lines
933 B
Java
|
|
|
|
package mage.cards.s;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.keyword.CyclingAbility;
|
|
import mage.abilities.mana.RedManaAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
|
|
/**
|
|
*
|
|
* @author Backfir3
|
|
*/
|
|
public final class SmolderingCrater extends CardImpl {
|
|
|
|
public SmolderingCrater(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.LAND},"");
|
|
|
|
this.addAbility(new EntersBattlefieldTappedAbility());
|
|
this.addAbility(new RedManaAbility());
|
|
this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
|
|
}
|
|
|
|
public SmolderingCrater(final SmolderingCrater card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public SmolderingCrater copy() {
|
|
return new SmolderingCrater(this);
|
|
}
|
|
}
|