[DOM] Renamed Fall into Oblivion to Cast Down

This commit is contained in:
Oleg Agafonov 2018-03-23 11:15:41 +04:00
parent 0eeada3264
commit eeaa40c945
2 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
package mage.cards.f;
package mage.cards.c;
import mage.abilities.effects.common.DestroyTargetEffect;
import mage.cards.CardImpl;
@ -12,14 +12,14 @@ import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
public class FallIntoOblivion extends CardImpl {
public class CastDown extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("nonlegendary creature");
static {
filter.add(Predicates.not(new SupertypePredicate(SuperType.LEGENDARY)));
}
public FallIntoOblivion(UUID ownerId, CardSetInfo cardSetInfo){
public CastDown(UUID ownerId, CardSetInfo cardSetInfo){
super(ownerId, cardSetInfo, new CardType[] { CardType.INSTANT }, "{1}{B}");
// Destroy target nonlegendary creature.
@ -27,11 +27,11 @@ public class FallIntoOblivion extends CardImpl {
this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
}
public FallIntoOblivion(final FallIntoOblivion fallIntoOblivion){
super(fallIntoOblivion);
public CastDown(final CastDown card){
super(card);
}
public FallIntoOblivion copy(){
return new FallIntoOblivion(this);
public CastDown copy(){
return new CastDown(this);
}
}

View file

@ -63,7 +63,7 @@ public class Dominaria extends ExpansionSet {
cards.add(new SetCardInfo("Homarid Explorer", 53, Rarity.UNCOMMON, mage.cards.h.HomaridExplorer.class));
cards.add(new SetCardInfo("Opt", 60, Rarity.COMMON, mage.cards.o.Opt.class));
cards.add(new SetCardInfo("Academy Drake", 40, Rarity.UNCOMMON, mage.cards.a.AcademyDrake.class));
cards.add(new SetCardInfo("Fall into Oblivion", 81, Rarity.UNCOMMON, mage.cards.f.FallIntoOblivion.class));
cards.add(new SetCardInfo("Cast Down", 81, Rarity.UNCOMMON, mage.cards.c.CastDown.class));
cards.add(new SetCardInfo("Llanowar Elves", 168, Rarity.COMMON, mage.cards.l.LlanowarElves.class));
}
}