mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
[minor] access modifer order
This commit is contained in:
parent
ec546a5ae6
commit
a7a565bb8f
549 changed files with 1032 additions and 1040 deletions
|
|
@ -50,7 +50,7 @@ import mage.filter.predicate.mageobject.AbilityPredicate;
|
|||
*/
|
||||
public class BloodfireDwarf extends CardImpl<BloodfireDwarf> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("creature without flying");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature without flying");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class DiversionaryTactics extends CardImpl<DiversionaryTactics> {
|
||||
|
||||
private final static FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creatures you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creatures you control");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class OvergrownEstate extends CardImpl<OvergrownEstate> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public OvergrownEstate(UUID ownerId) {
|
||||
super(ownerId, 113, "Overgrown Estate", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{B}{G}{W}");
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
*/
|
||||
public class QuagmireDruid extends CardImpl<QuagmireDruid> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("enchantment");
|
||||
private static final FilterPermanent filter = new FilterPermanent("enchantment");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ENCHANTMENT));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class Smash extends CardImpl<Smash> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("artifact");
|
||||
private static final FilterPermanent filter = new FilterPermanent("artifact");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ public class TranquilPath extends CardImpl<TranquilPath> {
|
|||
|
||||
class TranquilPathEffect extends OneShotEffect<TranquilPathEffect> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("");
|
||||
private static final FilterPermanent filter = new FilterPermanent("");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ENCHANTMENT));
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class AngelOfJubilation extends CardImpl<AngelOfJubilation> {
|
||||
|
||||
private final static FilterCreaturePermanent filterNonBlack = new FilterCreaturePermanent("nonblack creatures");
|
||||
private static final FilterCreaturePermanent filterNonBlack = new FilterCreaturePermanent("nonblack creatures");
|
||||
|
||||
static {
|
||||
filterNonBlack.add(Predicates.not(new ColorPredicate(ObjectColor.BLACK)));
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ public class DevoutChaplain extends CardImpl<DevoutChaplain> {
|
|||
new CardTypePredicate(CardType.ENCHANTMENT)));
|
||||
}
|
||||
|
||||
private final static FilterControlledPermanent humanFilter = new FilterControlledPermanent("untapped Human you control");
|
||||
private static final FilterControlledPermanent humanFilter = new FilterControlledPermanent("untapped Human you control");
|
||||
|
||||
static {
|
||||
humanFilter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class GallowsAtWillowHill extends CardImpl<GallowsAtWillowHill> {
|
||||
|
||||
private final static FilterControlledPermanent humanFilter = new FilterControlledPermanent("untapped Human you control");
|
||||
private static final FilterControlledPermanent humanFilter = new FilterControlledPermanent("untapped Human you control");
|
||||
|
||||
static {
|
||||
humanFilter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ import mage.game.permanent.token.SpiritToken;
|
|||
*/
|
||||
public class BakuAltar extends CardImpl<BakuAltar> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public BakuAltar(UUID ownerId) {
|
||||
super(ownerId, 152, "Baku Altar", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ import mage.game.Game;
|
|||
*/
|
||||
public class BlademaneBaku extends CardImpl<BlademaneBaku> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public BlademaneBaku(UUID ownerId) {
|
||||
super(ownerId, 95, "Blademane Baku", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{R}");
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class ChiseiHeartOfOceans extends CardImpl<ChiseiHeartOfOceans> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterControlledPermanent("remove a counter from a permanent you control");
|
||||
private static final FilterPermanent filter = new FilterControlledPermanent("remove a counter from a permanent you control");
|
||||
|
||||
static {
|
||||
filter.add(new ControllerPredicate(Constants.TargetController.YOU));
|
||||
|
|
|
|||
|
|
@ -49,8 +49,8 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class ClashOfRealities extends CardImpl<ClashOfRealities> {
|
||||
|
||||
private final static FilterCreaturePermanent filterSpirit = new FilterCreaturePermanent("Spirit creature");
|
||||
private final static FilterCreaturePermanent filterNotSpirit = new FilterCreaturePermanent("non-Spirit creature");
|
||||
private static final FilterCreaturePermanent filterSpirit = new FilterCreaturePermanent("Spirit creature");
|
||||
private static final FilterCreaturePermanent filterNotSpirit = new FilterCreaturePermanent("non-Spirit creature");
|
||||
|
||||
static {
|
||||
filterSpirit.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.filter.predicate.mageobject.SupertypePredicate;
|
|||
*/
|
||||
public class DayOfDestiny extends CardImpl<DayOfDestiny> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("Legendary creatures");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Legendary creatures");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class FaithfulSquire extends CardImpl<FaithfulSquire> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public FaithfulSquire(UUID ownerId) {
|
||||
super(ownerId, 3, "Faithful Squire", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{W}{W}");
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ public class FinalJudgment extends CardImpl<FinalJudgment> {
|
|||
|
||||
class FinalJudgmentEffect extends OneShotEffect<FinalJudgmentEffect> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("");
|
||||
private static final FilterPermanent filter = new FilterPermanent("");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class Floodbringer extends CardImpl<Floodbringer> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land you control (return to hand)");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land you control (return to hand)");
|
||||
|
||||
public Floodbringer(UUID ownerId) {
|
||||
super(ownerId, 34, "Floodbringer", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class GenjuOfTheCedars extends CardImpl<GenjuOfTheCedars> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent("Forest");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Forest");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Forest"));
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class GenjuOfTheFalls extends CardImpl<GenjuOfTheFalls> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent("Island");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Island");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Island"));
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class GenjuOfTheFens extends CardImpl<GenjuOfTheFens> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent("Swamp");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Swamp");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Swamp"));
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class GenjuOfTheFields extends CardImpl<GenjuOfTheFields> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent("Plains");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Plains");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Plains"));
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class GenjuOfTheRealm extends CardImpl<GenjuOfTheRealm> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent();
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent();
|
||||
|
||||
public GenjuOfTheRealm(UUID ownerId) {
|
||||
super(ownerId, 151, "Genju of the Realm", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{W}{U}{B}{R}{G}");
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class GenjuOfTheSpires extends CardImpl<GenjuOfTheSpires> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent("Mountain");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Mountain");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Mountain"));
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class HerosDemise extends CardImpl<HerosDemise> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.target.common.TargetCreatureOrPlayer;
|
|||
*/
|
||||
public class IreOfKaminari extends CardImpl<IreOfKaminari> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("Arcane");
|
||||
private static final FilterCard filter = new FilterCard("Arcane");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Arcane"));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class IsaoEnlightenedBushi extends CardImpl<IsaoEnlightenedBushi> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("Samurai");
|
||||
private static final FilterPermanent filter = new FilterPermanent("Samurai");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Samurai"));
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ import mage.filter.common.FilterSpiritOrArcaneCard;
|
|||
*/
|
||||
public class KamiOfTatteredShoji extends CardImpl<KamiOfTatteredShoji> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public KamiOfTatteredShoji(UUID ownerId) {
|
||||
super(ownerId, 11, "Kami of Tattered Shoji", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{W}");
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class NezumiShadowWatcher extends CardImpl<NezumiShadowWatcher> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("Ninja");
|
||||
private static final FilterPermanent filter = new FilterPermanent("Ninja");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Ninja"));
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ import mage.game.permanent.token.Token;
|
|||
*/
|
||||
public class OyobiWhoSplitTheHeavens extends CardImpl<OyobiWhoSplitTheHeavens> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public OyobiWhoSplitTheHeavens(UUID ownerId) {
|
||||
super(ownerId, 18, "Oyobi, Who Split the Heavens", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{6}{W}");
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ import mage.players.Player;
|
|||
*/
|
||||
public class PetalmaneBaku extends CardImpl<PetalmaneBaku> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public PetalmaneBaku(UUID ownerId) {
|
||||
super(ownerId, 139, "Petalmane Baku", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class PusKami extends CardImpl<PusKami> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("nonblack creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("nonblack creature");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new ColorPredicate(ObjectColor.BLACK)));
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class QuillmaneBaku extends CardImpl<QuillmaneBaku> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public QuillmaneBaku(UUID ownerId) {
|
||||
super(ownerId, 48, "Quillmane Baku", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{U}");
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class RibbonsOfTheReikai extends CardImpl<RibbonsOfTheReikai> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledPermanent("Spirit you control");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("Spirit you control");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.filter.common.FilterSpiritOrArcaneCard;
|
|||
*/
|
||||
public class ScaledHulk extends CardImpl<ScaledHulk> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public ScaledHulk(UUID ownerId) {
|
||||
super(ownerId, 143, "Scaled Hulk", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{G}");
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class SkullmaneBaku extends CardImpl<SkullmaneBaku> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public SkullmaneBaku(UUID ownerId) {
|
||||
super(ownerId, 83, "Skullmane Baku", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{B}{B}");
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class SoratamiMindsweeper extends CardImpl<SoratamiMindsweeper> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public SoratamiMindsweeper(UUID ownerId) {
|
||||
super(ownerId, 52, "Soratami Mindsweeper", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetAttackingOrBlockingCreature;
|
|||
*/
|
||||
public class TakenosCavalry extends CardImpl<TakenosCavalry> {
|
||||
|
||||
private final static FilterAttackingOrBlockingCreature filter = new FilterAttackingOrBlockingCreature("attacking or blocking Spirit");
|
||||
private static final FilterAttackingOrBlockingCreature filter = new FilterAttackingOrBlockingCreature("attacking or blocking Spirit");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.target.common.TargetAttackingCreature;
|
|||
*/
|
||||
public class TerashisVerdict extends CardImpl<TerashisVerdict> {
|
||||
|
||||
private final static FilterAttackingCreature filter = new FilterAttackingCreature("attacking creature with power 3 or less");
|
||||
private static final FilterAttackingCreature filter = new FilterAttackingCreature("attacking creature with power 3 or less");
|
||||
|
||||
static {
|
||||
filter.add(new PowerPredicate(Filter.ComparisonType.LessThan, 4));
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class ThreadsOfDisloyalty extends CardImpl<ThreadsOfDisloyalty> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("creature with converted mana cost 2 or less");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature with converted mana cost 2 or less");
|
||||
|
||||
static {
|
||||
filter.add(new ConvertedManaCostPredicate(Filter.ComparisonType.LessThan, 3));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class TraprootKami extends CardImpl<TraprootKami> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("Forest");
|
||||
private static final FilterPermanent filter = new FilterPermanent("Forest");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Forest"));
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class WaxmaneBaku extends CardImpl<WaxmaneBaku> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public WaxmaneBaku(UUID ownerId) {
|
||||
super(ownerId, 29, "Waxmane Baku", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class AkkiAvalanchers extends CardImpl<AkkiAvalanchers> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public AkkiAvalanchers(UUID ownerId) {
|
||||
super(ownerId, 151, "Akki Avalanchers", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{R}");
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ class AkkiLavarunnerAbility extends TriggeredAbilityImpl<AkkiLavarunnerAbility>
|
|||
|
||||
class TokTokVolcanoBorn extends Token {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("red");
|
||||
private static final FilterCard filter = new FilterCard("red");
|
||||
|
||||
static {
|
||||
filter.add(new ColorPredicate(ObjectColor.RED));
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class AuraOfDominion extends CardImpl<AuraOfDominion> {
|
||||
|
||||
private final static FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creature you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creature you control");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class AzamiLadyOfScrolls extends CardImpl<AzamiLadyOfScrolls> {
|
||||
|
||||
private final static FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped Wizard you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped Wizard you control");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ import mage.target.common.TargetAttackingCreature;
|
|||
*/
|
||||
public class BenBenAkkiHermit extends CardImpl<BenBenAkkiHermit> {
|
||||
|
||||
private final static FilterLandPermanent filter = new FilterLandPermanent("untapped Mountain you control");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("untapped Mountain you control");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class BlindWithAnger extends CardImpl<BlindWithAnger> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("nonlegendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("nonlegendary creature");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new SupertypePredicate("Legendary")));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.players.Player;
|
|||
public class CallToGlory extends CardImpl<CallToGlory> {
|
||||
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("Samurai");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Samurai");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Samurai"));
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
*/
|
||||
public class Cleanfall extends CardImpl<Cleanfall> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("enchantments");
|
||||
private static final FilterPermanent filter = new FilterPermanent("enchantments");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ENCHANTMENT));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
*/
|
||||
public class CommuneWithNature extends CardImpl<CommuneWithNature> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("creature card");
|
||||
private static final FilterCard filter = new FilterCard("creature card");
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,8 +48,8 @@ import mage.filter.predicate.mageobject.AbilityPredicate;
|
|||
*/
|
||||
public class Earthshaker extends CardImpl<Earthshaker> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private final static FilterCreaturePermanent creatureFilter = new FilterCreaturePermanent("creature without flying");
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterCreaturePermanent creatureFilter = new FilterCreaturePermanent("creature without flying");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.target.common.TargetCardInLibrary;
|
|||
*/
|
||||
public class EerieProcession extends CardImpl<EerieProcession> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("Arcane card");
|
||||
private static final FilterCard filter = new FilterCard("Arcane card");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Arcane"));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class EiganjoCastle extends CardImpl<EiganjoCastle> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ import mage.target.common.TargetSpellOrPermanent;
|
|||
*/
|
||||
public class EightAndAHalfTale extends CardImpl<EightAndAHalfTale> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("white");
|
||||
private static final FilterCard filter = new FilterCard("white");
|
||||
|
||||
static {
|
||||
filter.add(new ColorPredicate(ObjectColor.WHITE));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.filter.predicate.mageobject.AbilityPredicate;
|
|||
*/
|
||||
public class GaleForce extends CardImpl<GaleForce> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("creature with flying");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature with flying");
|
||||
|
||||
static {
|
||||
filter.add(new AbilityPredicate(FlyingAbility.class));
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ public class GlimpseOfNature extends CardImpl<GlimpseOfNature> {
|
|||
|
||||
class GlimpseOfNatureTriggeredAbility extends DelayedTriggeredAbility<GlimpseOfNatureTriggeredAbility> {
|
||||
|
||||
private final static FilterSpell filter = new FilterSpell();
|
||||
private static final FilterSpell filter = new FilterSpell();
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class GuardianOfSolitude extends CardImpl<GuardianOfSolitude> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public GuardianOfSolitude(UUID ownerId) {
|
||||
super(ownerId, 64, "Guardian of Solitude", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetCardInYourGraveyard;
|
|||
*/
|
||||
public class HanaKami extends CardImpl<HanaKami> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("Arcane card from your graveyard");
|
||||
private static final FilterCard filter = new FilterCard("Arcane card from your graveyard");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Arcane"));
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class HeWhoHungers extends CardImpl<HeWhoHungers> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledPermanent("a Spirit");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("a Spirit");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ import mage.target.TargetPermanent;
|
|||
public class HearthKami extends CardImpl<HearthKami> {
|
||||
|
||||
|
||||
private final static FilterArtifactPermanent filter = new FilterArtifactPermanent("artifact with converted mana cost X");
|
||||
private static final FilterArtifactPermanent filter = new FilterArtifactPermanent("artifact with converted mana cost X");
|
||||
|
||||
public HearthKami(UUID ownerId) {
|
||||
super(ownerId, 171, "Hearth Kami", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{R}");
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.game.permanent.Permanent;
|
|||
*/
|
||||
public class HikariTwilightGuardian extends CardImpl<HikariTwilightGuardian> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public HikariTwilightGuardian (UUID ownerId) {
|
||||
super(ownerId, 12, "Hikari, Twilight Guardian", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{W}{W}");
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.target.TargetSpell;
|
|||
*/
|
||||
public class HisokasDefiance extends CardImpl<HisokasDefiance> {
|
||||
|
||||
private final static FilterSpell filter = new FilterSpell("Spirit or Arcane spell");
|
||||
private static final FilterSpell filter = new FilterSpell("Spirit or Arcane spell");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.or(new SubtypePredicate("Spirit"), new SubtypePredicate("Arcane")));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class HonorWornShaku extends CardImpl<HonorWornShaku> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledPermanent("untapped legendary permanent");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("untapped legendary permanent");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class HorizonSeed extends CardImpl<HorizonSeed> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public HorizonSeed(UUID ownerId) {
|
||||
super(ownerId, 15, "Horizon Seed", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{4}{W}");
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ public class InameDeathAspect extends CardImpl<InameDeathAspect> {
|
|||
|
||||
class InameDeathAspectEffect extends SearchEffect<InameDeathAspectEffect> {
|
||||
|
||||
private final static FilterCreatureCard filter = new FilterCreatureCard();
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard();
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ import mage.target.common.TargetCardInYourGraveyard;
|
|||
*/
|
||||
public class InameLifeAspect extends CardImpl<InameLifeAspect> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("Spirit cards from your graveyard");
|
||||
private static final FilterCard filter = new FilterCard("Spirit cards from your graveyard");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class InnocenceKami extends CardImpl<InnocenceKami> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public InnocenceKami(UUID ownerId) {
|
||||
super(ownerId, 18, "Innocence Kami", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}{W}");
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ import mage.game.permanent.token.Token;
|
|||
*/
|
||||
public class JadeIdol extends CardImpl<JadeIdol> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public JadeIdol(UUID ownerId) {
|
||||
super(ownerId, 256, "Jade Idol", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{4}");
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ import mage.target.common.TargetCardInLibrary;
|
|||
*/
|
||||
public class JourneyersKite extends CardImpl<JourneyersKite> {
|
||||
|
||||
private final static FilterBasicLandCard filter = new FilterBasicLandCard();
|
||||
private static final FilterBasicLandCard filter = new FilterBasicLandCard();
|
||||
|
||||
public JourneyersKite (UUID ownerId) {
|
||||
super(ownerId, 257, "Journeyer's Kite", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.filter.common.FilterControlledPermanent;
|
|||
*/
|
||||
public class JoyousRespite extends CardImpl<JoyousRespite> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
|
||||
public JoyousRespite (UUID ownerId) {
|
||||
super(ownerId, 216, "Joyous Respite", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{3}{G}");
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ import mage.target.TargetPermanent;
|
|||
* @author Loki
|
||||
*/
|
||||
public class KamiOfAncientLaw extends CardImpl<KamiOfAncientLaw> {
|
||||
private final static FilterPermanent filter = new FilterPermanent("enchantment");
|
||||
private static final FilterPermanent filter = new FilterPermanent("enchantment");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ENCHANTMENT));
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class KamiOfFiresRoar extends CardImpl<KamiOfFiresRoar> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public KamiOfFiresRoar(UUID ownerId) {
|
||||
super(ownerId, 174, "Kami of Fire's Roar", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{R}");
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.filter.common.FilterSpiritOrArcaneCard;
|
|||
*/
|
||||
public class KamiOfTheHunt extends CardImpl<KamiOfTheHunt> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public KamiOfTheHunt(UUID ownerId) {
|
||||
super(ownerId, 219, "Kami of the Hunt", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class KamiOfTheWaningMoon extends CardImpl<KamiOfTheWaningMoon> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public KamiOfTheWaningMoon(UUID ownerId) {
|
||||
super(ownerId, 120, "Kami of the Waning Moon", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class KitsuneDiviner extends CardImpl<KitsuneDiviner> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("Spirit");
|
||||
private static final FilterPermanent filter = new FilterPermanent("Spirit");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class KitsuneHealer extends CardImpl<KitsuneHealer> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class KitsuneRiftwalker extends CardImpl<KitsuneRiftwalker> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("Spirits and from Arcane");
|
||||
private static final FilterCard filter = new FilterCard("Spirits and from Arcane");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.or(new SubtypePredicate("Arcane"), new SubtypePredicate("Spirit")));
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ import mage.filter.common.FilterSpiritOrArcaneCard;
|
|||
*/
|
||||
public class KodamaOfTheSouthTree extends CardImpl<KodamaOfTheSouthTree> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public KodamaOfTheSouthTree(UUID ownerId) {
|
||||
super(ownerId, 223, "Kodama of the South Tree", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{G}{G}");
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ import mage.util.CardUtil;
|
|||
|
||||
public class KondasBanner extends CardImpl<KondasBanner> {
|
||||
|
||||
private final static FilterControlledCreaturePermanent legendaryFilter = new FilterControlledCreaturePermanent("Legendary creatures");
|
||||
private static final FilterControlledCreaturePermanent legendaryFilter = new FilterControlledCreaturePermanent("Legendary creatures");
|
||||
|
||||
static {
|
||||
legendaryFilter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class MelokuTheCloudedMirror extends CardImpl<MelokuTheCloudedMirror> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
|
||||
public MelokuTheCloudedMirror(UUID ownerId) {
|
||||
super(ownerId, 74, "Meloku the Clouded Mirror", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{4}{U}");
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class MinamoSchoolAtWatersEdge extends CardImpl<MinamoSchoolAtWatersEdge> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent("legendary permanent");
|
||||
private static final FilterPermanent filter = new FilterPermanent("legendary permanent");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
*/
|
||||
public class NagaoBoundByHonor extends CardImpl<NagaoBoundByHonor> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("Samurai creatures");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Samurai creatures");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Samurai"));
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ import mage.watchers.common.DamagedByWatcher;
|
|||
*/
|
||||
public class NineRingedBo extends CardImpl<NineRingedBo> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("spirit");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("spirit");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Spirit"));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class OkinaTempleToTheGrandfathers extends CardImpl<OkinaTempleToTheGrandfathers> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ import mage.filter.common.FilterSpiritOrArcaneCard;
|
|||
*/
|
||||
public class OrbweaverKumo extends CardImpl<OrbweaverKumo> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public OrbweaverKumo(UUID ownerId) {
|
||||
super(ownerId, 231, "Orbweaver Kumo", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{4}{G}{G}");
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ import mage.target.common.TargetNonBasicLandPermanent;
|
|||
*/
|
||||
public class OreGorger extends CardImpl<OreGorger> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public OreGorger(UUID ownerId) {
|
||||
super(ownerId, 182, "Ore Gorger", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{R}{R}");
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ public class PainwrackerOni extends CardImpl<PainwrackerOni> {
|
|||
|
||||
class PainwrackerOniTriggeredAbility1 extends TriggeredAbilityImpl<PainwrackerOniTriggeredAbility1> {
|
||||
|
||||
private final static FilterPermanent filter = new FilterPermanent();
|
||||
private static final FilterPermanent filter = new FilterPermanent();
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Ogre"));
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
*/
|
||||
public class PeerThroughDepths extends CardImpl<PeerThroughDepths> {
|
||||
|
||||
private final static FilterCard filter = new FilterCard("instant or sorcery card");
|
||||
private static final FilterCard filter = new FilterCard("instant or sorcery card");
|
||||
static {
|
||||
filter.add(Predicates.or(
|
||||
new CardTypePredicate(CardType.SORCERY),
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class RyuseiTheFallingStar extends CardImpl<RyuseiTheFallingStar> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("creature without flying");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature without flying");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
||||
|
|
|
|||
|
|
@ -51,8 +51,8 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
public class SachiDaughterOfSeshiro extends CardImpl<SachiDaughterOfSeshiro> {
|
||||
|
||||
|
||||
private final static FilterCreaturePermanent snakeFilter = new FilterCreaturePermanent("Snakes");
|
||||
private final static FilterCreaturePermanent shamanFilter = new FilterCreaturePermanent("Shamans");
|
||||
private static final FilterCreaturePermanent snakeFilter = new FilterCreaturePermanent("Snakes");
|
||||
private static final FilterCreaturePermanent shamanFilter = new FilterCreaturePermanent("Shamans");
|
||||
|
||||
static {
|
||||
snakeFilter.add(new SubtypePredicate("Snake"));
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ import mage.game.permanent.Permanent;
|
|||
*/
|
||||
public class SeshiroTheAnointed extends CardImpl<SeshiroTheAnointed> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("Snakes");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Snakes");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Snake"));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class ShinkaTheBloodsoakedKeep extends CardImpl<ShinkaTheBloodsoakedKeep> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
|||
public class ShisatoWhisperingHunter extends CardImpl<ShisatoWhisperingHunter> {
|
||||
|
||||
|
||||
private final static FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Snake");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Snake");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Snake"));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.TargetPermanent;
|
|||
*/
|
||||
public class ShizoDeathsStorehouse extends CardImpl<ShizoDeathsStorehouse> {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("legendary creature");
|
||||
|
||||
static {
|
||||
filter.add(new SupertypePredicate("Legendary"));
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ import mage.filter.common.FilterSpiritOrArcaneCard;
|
|||
*/
|
||||
public class SireOfTheStorm extends CardImpl<SireOfTheStorm> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public SireOfTheStorm(UUID ownerId) {
|
||||
super(ownerId, 85, "Sire of the Storm", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{4}{U}{U}");
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ import mage.target.common.TargetLandPermanent;
|
|||
*/
|
||||
public class Soilshaper extends CardImpl<Soilshaper> {
|
||||
|
||||
private final static FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
private static final FilterSpiritOrArcaneCard filter = new FilterSpiritOrArcaneCard();
|
||||
|
||||
public Soilshaper(UUID ownerId) {
|
||||
super(ownerId, 243, "Soilshaper", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class SoratamiCloudskater extends CardImpl<SoratamiCloudskater> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public SoratamiCloudskater(UUID ownerId) {
|
||||
super(ownerId, 86, "Soratami Cloudskater", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
|
|
|
|||
|
|
@ -53,8 +53,8 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class SoratamiMirrorGuard extends CardImpl<SoratamiMirrorGuard> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private final static FilterCreaturePermanent filterCreature = new FilterCreaturePermanent("creature with power 2 or less");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private static final FilterCreaturePermanent filterCreature = new FilterCreaturePermanent("creature with power 2 or less");
|
||||
|
||||
static {
|
||||
filterCreature.add(new PowerPredicate(Filter.ComparisonType.LessThan, 3));
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class SoratamiMirrorMage extends CardImpl<SoratamiMirrorMage> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("lands");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("lands");
|
||||
|
||||
public SoratamiMirrorMage(UUID ownerId) {
|
||||
super(ownerId, 88, "Soratami Mirror-Mage", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class SoratamiRainshaper extends CardImpl<SoratamiRainshaper> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public SoratamiRainshaper(UUID ownerId) {
|
||||
super(ownerId, 89, "Soratami Rainshaper", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{U}");
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue