forked from External/mage
...
This commit is contained in:
parent
d0a0068ed3
commit
0ade837b4e
48 changed files with 2880 additions and 32 deletions
|
|
@ -29,34 +29,16 @@
|
|||
package mage.sets.magic2010;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.Filter.ComparisonScope;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LokiX
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class Naturalize extends CardImpl<Naturalize> {
|
||||
public class Naturalize extends mage.sets.tenth.Naturalize {
|
||||
|
||||
private static FilterPermanent filter = new FilterPermanent("artifact or enchantment");
|
||||
|
||||
static {
|
||||
filter.getCardType().add(CardType.ARTIFACT);
|
||||
filter.getCardType().add(CardType.ENCHANTMENT);
|
||||
filter.setScopeColor(ComparisonScope.Any);
|
||||
}
|
||||
|
||||
public Naturalize(UUID onwerId){
|
||||
super(onwerId, "Naturalize", Rarity.COMMON, new CardType[]{CardType.INSTANT},"{1}{G}");
|
||||
public Naturalize(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.expansionSetCode = "M10";
|
||||
this.color.setGreen(true);
|
||||
this.getSpellAbility().addTarget(new TargetPermanent(filter));
|
||||
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
||||
}
|
||||
|
||||
public Naturalize(final Naturalize card) {
|
||||
|
|
@ -68,8 +50,4 @@ public class Naturalize extends CardImpl<Naturalize> {
|
|||
return new Naturalize(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getArt() {
|
||||
return "49669_typ_reg_sty_010.jpg";
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue