mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Upheaval - Changed non existing function, minor text change. Removed unneccessary comments (cbt33).
This commit is contained in:
parent
0d6853bd8f
commit
b1108332bd
1 changed files with 3 additions and 7 deletions
|
@ -28,7 +28,7 @@
|
||||||
package mage.sets.odyssey;
|
package mage.sets.odyssey;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.abilities.effects.common.ReturnToHandAllEffect;
|
import mage.abilities.effects.common.ReturnToHandFromBattlefieldAllEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
|
@ -41,11 +41,7 @@ import mage.filter.FilterPermanent;
|
||||||
|
|
||||||
public class Upheaval extends CardImpl<Upheaval> {
|
public class Upheaval extends CardImpl<Upheaval> {
|
||||||
|
|
||||||
private static final FilterPermanent filter = new FilterPermanent("permanent");
|
private static final FilterPermanent filter = new FilterPermanent("permanents");
|
||||||
|
|
||||||
//static{
|
|
||||||
// filter.add(new CardTypePredicate(CardType.))
|
|
||||||
// }
|
|
||||||
|
|
||||||
public Upheaval(UUID ownerId) {
|
public Upheaval(UUID ownerId) {
|
||||||
super(ownerId, 113, "Upheaval", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{U}{U}");
|
super(ownerId, 113, "Upheaval", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{4}{U}{U}");
|
||||||
|
@ -54,7 +50,7 @@ public class Upheaval extends CardImpl<Upheaval> {
|
||||||
this.color.setBlue(true);
|
this.color.setBlue(true);
|
||||||
|
|
||||||
// Return all permanents to their owners' hands.
|
// Return all permanents to their owners' hands.
|
||||||
this.getSpellAbility().addEffect(new ReturnToHandAllEffect(filter));
|
this.getSpellAbility().addEffect(new ReturnToHandFromBattlefieldAllEffect(filter));
|
||||||
}
|
}
|
||||||
|
|
||||||
public Upheaval(final Upheaval card) {
|
public Upheaval(final Upheaval card) {
|
||||||
|
|
Loading…
Reference in a new issue