mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
small fix
This commit is contained in:
parent
b0c3d6aee6
commit
0d49e385d5
3 changed files with 11 additions and 10 deletions
|
@ -53,7 +53,10 @@ public class DeepfireElemental extends CardImpl {
|
||||||
private static final FilterPermanent filter = new FilterPermanent("artifact or creature with converted mana cost X");
|
private static final FilterPermanent filter = new FilterPermanent("artifact or creature with converted mana cost X");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(Predicates.or(new CardTypePredicate(CardType.ARTIFACT), new CardTypePredicate(CardType.CREATURE)));
|
filter.add(Predicates.or(
|
||||||
|
new CardTypePredicate(CardType.ARTIFACT),
|
||||||
|
new CardTypePredicate(CardType.CREATURE)
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
public DeepfireElemental(UUID ownerId, CardSetInfo setInfo) {
|
public DeepfireElemental(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
|
|
@ -293,7 +293,6 @@ public class UrzasSaga extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Serra's Liturgy", 49, Rarity.RARE, mage.cards.s.SerrasLiturgy.class));
|
cards.add(new SetCardInfo("Serra's Liturgy", 49, Rarity.RARE, mage.cards.s.SerrasLiturgy.class));
|
||||||
cards.add(new SetCardInfo("Serra's Sanctum", 325, Rarity.RARE, mage.cards.s.SerrasSanctum.class));
|
cards.add(new SetCardInfo("Serra's Sanctum", 325, Rarity.RARE, mage.cards.s.SerrasSanctum.class));
|
||||||
cards.add(new SetCardInfo("Serra Zealot", 46, Rarity.COMMON, mage.cards.s.SerraZealot.class));
|
cards.add(new SetCardInfo("Serra Zealot", 46, Rarity.COMMON, mage.cards.s.SerraZealot.class));
|
||||||
cards.add(new SetCardInfo("Serra's Liturgy", 49, Rarity.RARE, mage.cards.s.SerrasLiturgy.class));
|
|
||||||
cards.add(new SetCardInfo("Shimmering Barrier", 50, Rarity.UNCOMMON, mage.cards.s.ShimmeringBarrier.class));
|
cards.add(new SetCardInfo("Shimmering Barrier", 50, Rarity.UNCOMMON, mage.cards.s.ShimmeringBarrier.class));
|
||||||
cards.add(new SetCardInfo("Shivan Gorge", 326, Rarity.RARE, mage.cards.s.ShivanGorge.class));
|
cards.add(new SetCardInfo("Shivan Gorge", 326, Rarity.RARE, mage.cards.s.ShivanGorge.class));
|
||||||
cards.add(new SetCardInfo("Shivan Hellkite", 214, Rarity.RARE, mage.cards.s.ShivanHellkite.class));
|
cards.add(new SetCardInfo("Shivan Hellkite", 214, Rarity.RARE, mage.cards.s.ShivanHellkite.class));
|
||||||
|
|
|
@ -5,7 +5,6 @@ package mage.constants;
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
*/
|
*/
|
||||||
public enum TargetAdjustment {
|
public enum TargetAdjustment {
|
||||||
|
|
||||||
NONE,
|
NONE,
|
||||||
X_TARGETS,
|
X_TARGETS,
|
||||||
X_CMC_EQUAL_PERM,
|
X_CMC_EQUAL_PERM,
|
||||||
|
|
Loading…
Reference in a new issue