diff --git a/Mage.Sets/src/mage/sets/eternalmasters/AbundantGrowth.java b/Mage.Sets/src/mage/sets/eternalmasters/AbundantGrowth.java
new file mode 100644
index 00000000000..fa344f01896
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/AbundantGrowth.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class AbundantGrowth extends mage.sets.avacynrestored.AbundantGrowth {
+
+ public AbundantGrowth(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 156;
+ this.expansionSetCode = "EMA";
+ }
+
+ public AbundantGrowth(final AbundantGrowth card) {
+ super(card);
+ }
+
+ @Override
+ public AbundantGrowth copy() {
+ return new AbundantGrowth(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Annihilate.java b/Mage.Sets/src/mage/sets/eternalmasters/Annihilate.java
new file mode 100644
index 00000000000..c00adc1ec2d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Annihilate.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Annihilate extends mage.sets.invasion.Annihilate {
+
+ public Annihilate(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 79;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Annihilate(final Annihilate card) {
+ super(card);
+ }
+
+ @Override
+ public Annihilate copy() {
+ return new Annihilate(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ArcanisTheOmnipotent.java b/Mage.Sets/src/mage/sets/eternalmasters/ArcanisTheOmnipotent.java
new file mode 100644
index 00000000000..a8317cf5889
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ArcanisTheOmnipotent.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ArcanisTheOmnipotent extends mage.sets.tenthedition.ArcanisTheOmnipotent {
+
+ public ArcanisTheOmnipotent(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 39;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ArcanisTheOmnipotent(final ArcanisTheOmnipotent card) {
+ super(card);
+ }
+
+ @Override
+ public ArcanisTheOmnipotent copy() {
+ return new ArcanisTheOmnipotent(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ArmadilloCloak.java b/Mage.Sets/src/mage/sets/eternalmasters/ArmadilloCloak.java
new file mode 100644
index 00000000000..4747ef3a4d8
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ArmadilloCloak.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ArmadilloCloak extends mage.sets.invasion.ArmadilloCloak {
+
+ public ArmadilloCloak(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 195;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public ArmadilloCloak(final ArmadilloCloak card) {
+ super(card);
+ }
+
+ @Override
+ public ArmadilloCloak copy() {
+ return new ArmadilloCloak(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Avarax.java b/Mage.Sets/src/mage/sets/eternalmasters/Avarax.java
new file mode 100644
index 00000000000..3f60b9fb51e
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Avarax.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Avarax extends mage.sets.onslaught.Avarax {
+
+ public Avarax(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 117;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Avarax(final Avarax card) {
+ super(card);
+ }
+
+ @Override
+ public Avarax copy() {
+ return new Avarax(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/AvenRiftwatcher.java b/Mage.Sets/src/mage/sets/eternalmasters/AvenRiftwatcher.java
new file mode 100644
index 00000000000..ca8c170d431
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/AvenRiftwatcher.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class AvenRiftwatcher extends mage.sets.planarchaos.AvenRiftwatcher {
+
+ public AvenRiftwatcher(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 1;
+ this.expansionSetCode = "EMA";
+ }
+
+ public AvenRiftwatcher(final AvenRiftwatcher card) {
+ super(card);
+ }
+
+ @Override
+ public AvenRiftwatcher copy() {
+ return new AvenRiftwatcher(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BallynockCohort.java b/Mage.Sets/src/mage/sets/eternalmasters/BallynockCohort.java
new file mode 100644
index 00000000000..35ad94eba40
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BallynockCohort.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BallynockCohort extends mage.sets.shadowmoor.BallynockCohort {
+
+ public BallynockCohort(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 3;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BallynockCohort(final BallynockCohort card) {
+ super(card);
+ }
+
+ @Override
+ public BallynockCohort copy() {
+ return new BallynockCohort(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BattleSquadron.java b/Mage.Sets/src/mage/sets/eternalmasters/BattleSquadron.java
new file mode 100644
index 00000000000..be269e7697f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BattleSquadron.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BattleSquadron extends mage.sets.mercadianmasques.BattleSquadron {
+
+ public BattleSquadron(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 118;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public BattleSquadron(final BattleSquadron card) {
+ super(card);
+ }
+
+ @Override
+ public BattleSquadron copy() {
+ return new BattleSquadron(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BeetlebackChief.java b/Mage.Sets/src/mage/sets/eternalmasters/BeetlebackChief.java
new file mode 100644
index 00000000000..081dcbc20e7
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BeetlebackChief.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BeetlebackChief extends mage.sets.planechase2012.BeetlebackChief {
+
+ public BeetlebackChief(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 119;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BeetlebackChief(final BeetlebackChief card) {
+ super(card);
+ }
+
+ @Override
+ public BeetlebackChief copy() {
+ return new BeetlebackChief(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BenevolentBodyguard.java b/Mage.Sets/src/mage/sets/eternalmasters/BenevolentBodyguard.java
new file mode 100644
index 00000000000..9df6768f595
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BenevolentBodyguard.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BenevolentBodyguard extends mage.sets.vintagemasters.BenevolentBodyguard {
+
+ public BenevolentBodyguard(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 4;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BenevolentBodyguard(final BenevolentBodyguard card) {
+ super(card);
+ }
+
+ @Override
+ public BenevolentBodyguard copy() {
+ return new BenevolentBodyguard(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BlightsoilDruid.java b/Mage.Sets/src/mage/sets/eternalmasters/BlightsoilDruid.java
new file mode 100644
index 00000000000..d21595f8eb8
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BlightsoilDruid.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BlightsoilDruid extends mage.sets.morningtide.BlightsoilDruid {
+
+ public BlightsoilDruid(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 80;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BlightsoilDruid(final BlightsoilDruid card) {
+ super(card);
+ }
+
+ @Override
+ public BlightsoilDruid copy() {
+ return new BlightsoilDruid(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BloodArtist.java b/Mage.Sets/src/mage/sets/eternalmasters/BloodArtist.java
new file mode 100644
index 00000000000..c6fa436d283
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BloodArtist.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BloodArtist extends mage.sets.avacynrestored.BloodArtist {
+
+ public BloodArtist(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 81;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BloodArtist(final BloodArtist card) {
+ super(card);
+ }
+
+ @Override
+ public BloodArtist copy() {
+ return new BloodArtist(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BloodfellCaves.java b/Mage.Sets/src/mage/sets/eternalmasters/BloodfellCaves.java
new file mode 100644
index 00000000000..ed0f4eb405c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BloodfellCaves.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BloodfellCaves extends mage.sets.khansoftarkir.BloodfellCaves {
+
+ public BloodfellCaves(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 236;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BloodfellCaves(final BloodfellCaves card) {
+ super(card);
+ }
+
+ @Override
+ public BloodfellCaves copy() {
+ return new BloodfellCaves(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BlossomingSands.java b/Mage.Sets/src/mage/sets/eternalmasters/BlossomingSands.java
new file mode 100644
index 00000000000..2f37338977c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BlossomingSands.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BlossomingSands extends mage.sets.khansoftarkir.BlossomingSands {
+
+ public BlossomingSands(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 237;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BlossomingSands(final BlossomingSands card) {
+ super(card);
+ }
+
+ @Override
+ public BlossomingSands copy() {
+ return new BlossomingSands(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BorderlandMarauder.java b/Mage.Sets/src/mage/sets/eternalmasters/BorderlandMarauder.java
new file mode 100644
index 00000000000..e52c94cf348
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BorderlandMarauder.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BorderlandMarauder extends mage.sets.magic2015.BorderlandMarauder {
+
+ public BorderlandMarauder(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 120;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BorderlandMarauder(final BorderlandMarauder card) {
+ super(card);
+ }
+
+ @Override
+ public BorderlandMarauder copy() {
+ return new BorderlandMarauder(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BragoKingEternal.java b/Mage.Sets/src/mage/sets/eternalmasters/BragoKingEternal.java
new file mode 100644
index 00000000000..100d74650af
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BragoKingEternal.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BragoKingEternal extends mage.sets.vintagemasters.BragoKingEternal {
+
+ public BragoKingEternal(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 198;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BragoKingEternal(final BragoKingEternal card) {
+ super(card);
+ }
+
+ @Override
+ public BragoKingEternal copy() {
+ return new BragoKingEternal(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/BraidsCabalMinion.java b/Mage.Sets/src/mage/sets/eternalmasters/BraidsCabalMinion.java
new file mode 100644
index 00000000000..66a124e9921
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/BraidsCabalMinion.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class BraidsCabalMinion extends mage.sets.odyssey.BraidsCabalMinion {
+
+ public BraidsCabalMinion(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 82;
+ this.expansionSetCode = "EMA";
+ }
+
+ public BraidsCabalMinion(final BraidsCabalMinion card) {
+ super(card);
+ }
+
+ @Override
+ public BraidsCabalMinion copy() {
+ return new BraidsCabalMinion(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Brawn.java b/Mage.Sets/src/mage/sets/eternalmasters/Brawn.java
new file mode 100644
index 00000000000..6aca7185bae
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Brawn.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Brawn extends mage.sets.judgment.Brawn {
+
+ public Brawn(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 159;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Brawn(final Brawn card) {
+ super(card);
+ }
+
+ @Override
+ public Brawn copy() {
+ return new Brawn(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Calciderm.java b/Mage.Sets/src/mage/sets/eternalmasters/Calciderm.java
new file mode 100644
index 00000000000..714c8d3925f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Calciderm.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Calciderm extends mage.sets.planarchaos.Calciderm {
+
+ public Calciderm(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 5;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Calciderm(final Calciderm card) {
+ super(card);
+ }
+
+ @Override
+ public Calciderm copy() {
+ return new Calciderm(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/CarrionFeeder.java b/Mage.Sets/src/mage/sets/eternalmasters/CarrionFeeder.java
new file mode 100644
index 00000000000..01b275feaa6
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/CarrionFeeder.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class CarrionFeeder extends mage.sets.scourge.CarrionFeeder {
+
+ public CarrionFeeder(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 84;
+ this.expansionSetCode = "EMA";
+ }
+
+ public CarrionFeeder(final CarrionFeeder card) {
+ super(card);
+ }
+
+ @Override
+ public CarrionFeeder copy() {
+ return new CarrionFeeder(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/CentaurChieftain.java b/Mage.Sets/src/mage/sets/eternalmasters/CentaurChieftain.java
new file mode 100644
index 00000000000..23fa34603a8
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/CentaurChieftain.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class CentaurChieftain extends mage.sets.torment.CentaurChieftain {
+
+ public CentaurChieftain(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 160;
+ this.expansionSetCode = "EMA";
+ }
+
+ public CentaurChieftain(final CentaurChieftain card) {
+ super(card);
+ }
+
+ @Override
+ public CentaurChieftain copy() {
+ return new CentaurChieftain(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/CephalidSage.java b/Mage.Sets/src/mage/sets/eternalmasters/CephalidSage.java
new file mode 100644
index 00000000000..ab159ec5abf
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/CephalidSage.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class CephalidSage extends mage.sets.torment.CephalidSage {
+
+ public CephalidSage(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 41;
+ this.expansionSetCode = "EMA";
+ }
+
+ public CephalidSage(final CephalidSage card) {
+ super(card);
+ }
+
+ @Override
+ public CephalidSage copy() {
+ return new CephalidSage(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/CivicWayfinder.java b/Mage.Sets/src/mage/sets/eternalmasters/CivicWayfinder.java
new file mode 100644
index 00000000000..5e987b27be8
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/CivicWayfinder.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class CivicWayfinder extends mage.sets.tenthedition.CivicWayfinder {
+
+ public CivicWayfinder(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 161;
+ this.expansionSetCode = "EMA";
+ }
+
+ public CivicWayfinder(final CivicWayfinder card) {
+ super(card);
+ }
+
+ @Override
+ public CivicWayfinder copy() {
+ return new CivicWayfinder(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/CommuneWithTheGods.java b/Mage.Sets/src/mage/sets/eternalmasters/CommuneWithTheGods.java
new file mode 100644
index 00000000000..3c06381fb74
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/CommuneWithTheGods.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class CommuneWithTheGods extends mage.sets.theros.CommuneWithTheGods {
+
+ public CommuneWithTheGods(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 162;
+ this.expansionSetCode = "EMA";
+ }
+
+ public CommuneWithTheGods(final CommuneWithTheGods card) {
+ super(card);
+ }
+
+ @Override
+ public CommuneWithTheGods copy() {
+ return new CommuneWithTheGods(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/DeadbridgeShaman.java b/Mage.Sets/src/mage/sets/eternalmasters/DeadbridgeShaman.java
new file mode 100644
index 00000000000..d375653374f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/DeadbridgeShaman.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class DeadbridgeShaman extends mage.sets.magicorigins.DeadbridgeShaman {
+
+ public DeadbridgeShaman(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 85;
+ this.expansionSetCode = "EMA";
+ }
+
+ public DeadbridgeShaman(final DeadbridgeShaman card) {
+ super(card);
+ }
+
+ @Override
+ public DeadbridgeShaman copy() {
+ return new DeadbridgeShaman(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/DeepAnalysis.java b/Mage.Sets/src/mage/sets/eternalmasters/DeepAnalysis.java
new file mode 100644
index 00000000000..109110e860d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/DeepAnalysis.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class DeepAnalysis extends mage.sets.torment.DeepAnalysis {
+
+ public DeepAnalysis(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 45;
+ this.expansionSetCode = "EMA";
+ }
+
+ public DeepAnalysis(final DeepAnalysis card) {
+ super(card);
+ }
+
+ @Override
+ public DeepAnalysis copy() {
+ return new DeepAnalysis(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/DesperateRavings.java b/Mage.Sets/src/mage/sets/eternalmasters/DesperateRavings.java
new file mode 100644
index 00000000000..2ddcb39d244
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/DesperateRavings.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class DesperateRavings extends mage.sets.innistrad.DesperateRavings {
+
+ public DesperateRavings(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 125;
+ this.expansionSetCode = "EMA";
+ }
+
+ public DesperateRavings(final DesperateRavings card) {
+ super(card);
+ }
+
+ @Override
+ public DesperateRavings copy() {
+ return new DesperateRavings(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/DismalBackwater.java b/Mage.Sets/src/mage/sets/eternalmasters/DismalBackwater.java
new file mode 100644
index 00000000000..60a02cf8c7c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/DismalBackwater.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class DismalBackwater extends mage.sets.khansoftarkir.DismalBackwater {
+
+ public DismalBackwater(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 238;
+ this.expansionSetCode = "EMA";
+ }
+
+ public DismalBackwater(final DismalBackwater card) {
+ super(card);
+ }
+
+ @Override
+ public DismalBackwater copy() {
+ return new DismalBackwater(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/DragonEgg.java b/Mage.Sets/src/mage/sets/eternalmasters/DragonEgg.java
new file mode 100644
index 00000000000..10c22c721ec
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/DragonEgg.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class DragonEgg extends mage.sets.magic2014.DragonEgg {
+
+ public DragonEgg(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 126;
+ this.expansionSetCode = "EMA";
+ }
+
+ public DragonEgg(final DragonEgg card) {
+ super(card);
+ }
+
+ @Override
+ public DragonEgg copy() {
+ return new DragonEgg(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/DreamTwist.java b/Mage.Sets/src/mage/sets/eternalmasters/DreamTwist.java
new file mode 100644
index 00000000000..aa577446fa4
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/DreamTwist.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class DreamTwist extends mage.sets.innistrad.DreamTwist {
+
+ public DreamTwist(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 47;
+ this.expansionSetCode = "EMA";
+ }
+
+ public DreamTwist(final DreamTwist card) {
+ super(card);
+ }
+
+ @Override
+ public DreamTwist copy() {
+ return new DreamTwist(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Duplicant.java b/Mage.Sets/src/mage/sets/eternalmasters/Duplicant.java
new file mode 100644
index 00000000000..e7b8fb4566d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Duplicant.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Duplicant extends mage.sets.mirrodin.Duplicant {
+
+ public Duplicant(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 220;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Duplicant(final Duplicant card) {
+ super(card);
+ }
+
+ @Override
+ public Duplicant copy() {
+ return new Duplicant(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Duress.java b/Mage.Sets/src/mage/sets/eternalmasters/Duress.java
new file mode 100644
index 00000000000..b8ae4c640e4
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Duress.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Duress extends mage.sets.magic2010.Duress {
+
+ public Duress(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 86;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Duress(final Duress card) {
+ super(card);
+ }
+
+ @Override
+ public Duress copy() {
+ return new Duress(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/EightAndAHalfTails.java b/Mage.Sets/src/mage/sets/eternalmasters/EightAndAHalfTails.java
new file mode 100644
index 00000000000..b3c21eaf9e7
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/EightAndAHalfTails.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class EightAndAHalfTails extends mage.sets.championsofkamigawa.EightAndAHalfTails {
+
+ public EightAndAHalfTails(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 7;
+ this.expansionSetCode = "EMA";
+ }
+
+ public EightAndAHalfTails(final EightAndAHalfTails card) {
+ super(card);
+ }
+
+ @Override
+ public EightAndAHalfTails copy() {
+ return new EightAndAHalfTails(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ElephantGuide.java b/Mage.Sets/src/mage/sets/eternalmasters/ElephantGuide.java
new file mode 100644
index 00000000000..208ebf5f8b8
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ElephantGuide.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ElephantGuide extends mage.sets.judgment.ElephantGuide {
+
+ public ElephantGuide(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 163;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public ElephantGuide(final ElephantGuide card) {
+ super(card);
+ }
+
+ @Override
+ public ElephantGuide copy() {
+ return new ElephantGuide(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/EliteVanguard.java b/Mage.Sets/src/mage/sets/eternalmasters/EliteVanguard.java
new file mode 100644
index 00000000000..dddce8cfaf7
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/EliteVanguard.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class EliteVanguard extends mage.sets.magic2010.EliteVanguard {
+
+ public EliteVanguard(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 8;
+ this.expansionSetCode = "EMA";
+ }
+
+ public EliteVanguard(final EliteVanguard card) {
+ super(card);
+ }
+
+ @Override
+ public EliteVanguard copy() {
+ return new EliteVanguard(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ElvishVanguard.java b/Mage.Sets/src/mage/sets/eternalmasters/ElvishVanguard.java
new file mode 100644
index 00000000000..42f8c293e0c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ElvishVanguard.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ElvishVanguard extends mage.sets.onslaught.ElvishVanguard {
+
+ public ElvishVanguard(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 164;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ElvishVanguard(final ElvishVanguard card) {
+ super(card);
+ }
+
+ @Override
+ public ElvishVanguard copy() {
+ return new ElvishVanguard(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/EmmessiTome.java b/Mage.Sets/src/mage/sets/eternalmasters/EmmessiTome.java
new file mode 100644
index 00000000000..a2a3d216a30
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/EmmessiTome.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class EmmessiTome extends mage.sets.tempest.EmmessiTome {
+
+ public EmmessiTome(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 221;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public EmmessiTome(final EmmessiTome card) {
+ super(card);
+ }
+
+ @Override
+ public EmmessiTome copy() {
+ return new EmmessiTome(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ExtractFromDarkness.java b/Mage.Sets/src/mage/sets/eternalmasters/ExtractFromDarkness.java
new file mode 100644
index 00000000000..8577ab280ab
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ExtractFromDarkness.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ExtractFromDarkness extends mage.sets.conspiracy.ExtractFromDarkness {
+
+ public ExtractFromDarkness(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 200;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ExtractFromDarkness(final ExtractFromDarkness card) {
+ super(card);
+ }
+
+ @Override
+ public ExtractFromDarkness copy() {
+ return new ExtractFromDarkness(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/EyeblightsEnding.java b/Mage.Sets/src/mage/sets/eternalmasters/EyeblightsEnding.java
new file mode 100644
index 00000000000..2bcb2dcb2da
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/EyeblightsEnding.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class EyeblightsEnding extends mage.sets.lorwyn.EyeblightsEnding {
+
+ public EyeblightsEnding(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 88;
+ this.expansionSetCode = "EMA";
+ }
+
+ public EyeblightsEnding(final EyeblightsEnding card) {
+ super(card);
+ }
+
+ @Override
+ public EyeblightsEnding copy() {
+ return new EyeblightsEnding(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FactOrFiction.java b/Mage.Sets/src/mage/sets/eternalmasters/FactOrFiction.java
new file mode 100644
index 00000000000..6fc13d8c5e0
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FactOrFiction.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FactOrFiction extends mage.sets.invasion.FactOrFiction {
+
+ public FactOrFiction(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 48;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FactOrFiction(final FactOrFiction card) {
+ super(card);
+ }
+
+ @Override
+ public FactOrFiction copy() {
+ return new FactOrFiction(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FaithlessLooting.java b/Mage.Sets/src/mage/sets/eternalmasters/FaithlessLooting.java
new file mode 100644
index 00000000000..c09f91ec86d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FaithlessLooting.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FaithlessLooting extends mage.sets.darkascension.FaithlessLooting {
+
+ public FaithlessLooting(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 128;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FaithlessLooting(final FaithlessLooting card) {
+ super(card);
+ }
+
+ @Override
+ public FaithlessLooting copy() {
+ return new FaithlessLooting(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FaithsFetters.java b/Mage.Sets/src/mage/sets/eternalmasters/FaithsFetters.java
new file mode 100644
index 00000000000..c6074ecbb24
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FaithsFetters.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FaithsFetters extends mage.sets.divinevsdemonic.FaithsFetters {
+
+ public FaithsFetters(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 10;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public FaithsFetters(final FaithsFetters card) {
+ super(card);
+ }
+
+ @Override
+ public FaithsFetters copy() {
+ return new FaithsFetters(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FerventCathar.java b/Mage.Sets/src/mage/sets/eternalmasters/FerventCathar.java
new file mode 100644
index 00000000000..134b4b4d845
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FerventCathar.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FerventCathar extends mage.sets.avacynrestored.FerventCathar {
+
+ public FerventCathar(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 129;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FerventCathar(final FerventCathar card) {
+ super(card);
+ }
+
+ @Override
+ public FerventCathar copy() {
+ return new FerventCathar(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FieldOfSouls.java b/Mage.Sets/src/mage/sets/eternalmasters/FieldOfSouls.java
new file mode 100644
index 00000000000..adc27bd5cd4
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FieldOfSouls.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FieldOfSouls extends mage.sets.tempestremastered.FieldOfSouls {
+
+ public FieldOfSouls(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 11;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FieldOfSouls(final FieldOfSouls card) {
+ super(card);
+ }
+
+ @Override
+ public FieldOfSouls copy() {
+ return new FieldOfSouls(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FlameJab.java b/Mage.Sets/src/mage/sets/eternalmasters/FlameJab.java
new file mode 100644
index 00000000000..93e5e61a577
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FlameJab.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FlameJab extends mage.sets.eventide.FlameJab {
+
+ public FlameJab(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 131;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public FlameJab(final FlameJab card) {
+ super(card);
+ }
+
+ @Override
+ public FlameJab copy() {
+ return new FlameJab(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FlameKinZealot.java b/Mage.Sets/src/mage/sets/eternalmasters/FlameKinZealot.java
new file mode 100644
index 00000000000..33bd4d8c3d0
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FlameKinZealot.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FlameKinZealot extends mage.sets.ravnica.FlameKinZealot {
+
+ public FlameKinZealot(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 201;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FlameKinZealot(final FlameKinZealot card) {
+ super(card);
+ }
+
+ @Override
+ public FlameKinZealot copy() {
+ return new FlameKinZealot(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FlinthoofBoar.java b/Mage.Sets/src/mage/sets/eternalmasters/FlinthoofBoar.java
new file mode 100644
index 00000000000..050f3845da0
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FlinthoofBoar.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FlinthoofBoar extends mage.sets.magic2013.FlinthoofBoar {
+
+ public FlinthoofBoar(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 166;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FlinthoofBoar(final FlinthoofBoar card) {
+ super(card);
+ }
+
+ @Override
+ public FlinthoofBoar copy() {
+ return new FlinthoofBoar(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Fog.java b/Mage.Sets/src/mage/sets/eternalmasters/Fog.java
new file mode 100644
index 00000000000..1ac290fc4ed
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Fog.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Fog extends mage.sets.magic2010.Fog {
+
+ public Fog(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 167;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Fog(final Fog card) {
+ super(card);
+ }
+
+ @Override
+ public Fog copy() {
+ return new Fog(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/FutureSight.java b/Mage.Sets/src/mage/sets/eternalmasters/FutureSight.java
new file mode 100644
index 00000000000..4ff5a186cf2
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/FutureSight.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class FutureSight extends mage.sets.onslaught.FutureSight {
+
+ public FutureSight(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 50;
+ this.expansionSetCode = "EMA";
+ }
+
+ public FutureSight(final FutureSight card) {
+ super(card);
+ }
+
+ @Override
+ public FutureSight copy() {
+ return new FutureSight(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/GaseousForm.java b/Mage.Sets/src/mage/sets/eternalmasters/GaseousForm.java
new file mode 100644
index 00000000000..0791ffecc2d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/GaseousForm.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class GaseousForm extends mage.sets.tempest.GaseousForm {
+
+ public GaseousForm(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 51;
+ this.expansionSetCode = "EMA";
+ }
+
+ public GaseousForm(final GaseousForm card) {
+ super(card);
+ }
+
+ @Override
+ public GaseousForm copy() {
+ return new GaseousForm(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/GhituSlinger.java b/Mage.Sets/src/mage/sets/eternalmasters/GhituSlinger.java
new file mode 100644
index 00000000000..0f2c5e892fd
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/GhituSlinger.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class GhituSlinger extends mage.sets.urzaslegacy.GhituSlinger {
+
+ public GhituSlinger(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 133;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public GhituSlinger(final GhituSlinger card) {
+ super(card);
+ }
+
+ @Override
+ public GhituSlinger copy() {
+ return new GhituSlinger(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/GlacialWall.java b/Mage.Sets/src/mage/sets/eternalmasters/GlacialWall.java
new file mode 100644
index 00000000000..2e132023f62
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/GlacialWall.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class GlacialWall extends mage.sets.fifthedition.GlacialWall {
+
+ public GlacialWall(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 53;
+ this.expansionSetCode = "EMA";
+ }
+
+ public GlacialWall(final GlacialWall card) {
+ super(card);
+ }
+
+ @Override
+ public GlacialWall copy() {
+ return new GlacialWall(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/GlareOfSubdual.java b/Mage.Sets/src/mage/sets/eternalmasters/GlareOfSubdual.java
new file mode 100644
index 00000000000..afe6ca09289
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/GlareOfSubdual.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class GlareOfSubdual extends mage.sets.ravnica.GlareOfSubdual {
+
+ public GlareOfSubdual(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 202;
+ this.expansionSetCode = "EMA";
+ }
+
+ public GlareOfSubdual(final GlareOfSubdual card) {
+ super(card);
+ }
+
+ @Override
+ public GlareOfSubdual copy() {
+ return new GlareOfSubdual(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/GlimmerpointStag.java b/Mage.Sets/src/mage/sets/eternalmasters/GlimmerpointStag.java
new file mode 100644
index 00000000000..70403385e67
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/GlimmerpointStag.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class GlimmerpointStag extends mage.sets.scarsofmirrodin.GlimmerpointStag {
+
+ public GlimmerpointStag(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 12;
+ this.expansionSetCode = "EMA";
+ }
+
+ public GlimmerpointStag(final GlimmerpointStag card) {
+ super(card);
+ }
+
+ @Override
+ public GlimmerpointStag copy() {
+ return new GlimmerpointStag(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Gravedigger.java b/Mage.Sets/src/mage/sets/eternalmasters/Gravedigger.java
new file mode 100644
index 00000000000..9738b996124
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Gravedigger.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Gravedigger extends mage.sets.tenthedition.Gravedigger {
+
+ public Gravedigger(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 89;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Gravedigger(final Gravedigger card) {
+ super(card);
+ }
+
+ @Override
+ public Gravedigger copy() {
+ return new Gravedigger(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Harmonize.java b/Mage.Sets/src/mage/sets/eternalmasters/Harmonize.java
new file mode 100644
index 00000000000..07425bbba4c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Harmonize.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Harmonize extends mage.sets.planarchaos.Harmonize {
+
+ public Harmonize(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 170;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Harmonize(final Harmonize card) {
+ super(card);
+ }
+
+ @Override
+ public Harmonize copy() {
+ return new Harmonize(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HavocDemon.java b/Mage.Sets/src/mage/sets/eternalmasters/HavocDemon.java
new file mode 100644
index 00000000000..0400ffcc24b
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HavocDemon.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HavocDemon extends mage.sets.legions.HavocDemon {
+
+ public HavocDemon(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 90;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public HavocDemon(final HavocDemon card) {
+ super(card);
+ }
+
+ @Override
+ public HavocDemon copy() {
+ return new HavocDemon(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HeritageDruid.java b/Mage.Sets/src/mage/sets/eternalmasters/HeritageDruid.java
new file mode 100644
index 00000000000..e1a8df33613
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HeritageDruid.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HeritageDruid extends mage.sets.morningtide.HeritageDruid {
+
+ public HeritageDruid(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 171;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.RARE;
+ }
+
+ public HeritageDruid(final HeritageDruid card) {
+ super(card);
+ }
+
+ @Override
+ public HeritageDruid copy() {
+ return new HeritageDruid(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HondenOfCleansingFire.java b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfCleansingFire.java
new file mode 100644
index 00000000000..fe23d6b2eff
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfCleansingFire.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HondenOfCleansingFire extends mage.sets.championsofkamigawa.HondenOfCleansingFire {
+
+ public HondenOfCleansingFire(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 13;
+ this.expansionSetCode = "EMA";
+ }
+
+ public HondenOfCleansingFire(final HondenOfCleansingFire card) {
+ super(card);
+ }
+
+ @Override
+ public HondenOfCleansingFire copy() {
+ return new HondenOfCleansingFire(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HondenOfInfiniteRage.java b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfInfiniteRage.java
new file mode 100644
index 00000000000..619ad647ea1
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfInfiniteRage.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HondenOfInfiniteRage extends mage.sets.championsofkamigawa.HondenOfInfiniteRage {
+
+ public HondenOfInfiniteRage(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 134;
+ this.expansionSetCode = "EMA";
+ }
+
+ public HondenOfInfiniteRage(final HondenOfInfiniteRage card) {
+ super(card);
+ }
+
+ @Override
+ public HondenOfInfiniteRage copy() {
+ return new HondenOfInfiniteRage(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HondenOfLifesWeb.java b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfLifesWeb.java
new file mode 100644
index 00000000000..79b323cfcb6
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfLifesWeb.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HondenOfLifesWeb extends mage.sets.championsofkamigawa.HondenOfLifesWeb {
+
+ public HondenOfLifesWeb(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 172;
+ this.expansionSetCode = "EMA";
+ }
+
+ public HondenOfLifesWeb(final HondenOfLifesWeb card) {
+ super(card);
+ }
+
+ @Override
+ public HondenOfLifesWeb copy() {
+ return new HondenOfLifesWeb(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HondenOfNightsReach.java b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfNightsReach.java
new file mode 100644
index 00000000000..be47e267733
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfNightsReach.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HondenOfNightsReach extends mage.sets.championsofkamigawa.HondenOfNightsReach {
+
+ public HondenOfNightsReach(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 91;
+ this.expansionSetCode = "EMA";
+ }
+
+ public HondenOfNightsReach(final HondenOfNightsReach card) {
+ super(card);
+ }
+
+ @Override
+ public HondenOfNightsReach copy() {
+ return new HondenOfNightsReach(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/HondenOfSeeingWinds.java b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfSeeingWinds.java
new file mode 100644
index 00000000000..b2b5f6a66bc
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/HondenOfSeeingWinds.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class HondenOfSeeingWinds extends mage.sets.championsofkamigawa.HondenOfSeeingWinds {
+
+ public HondenOfSeeingWinds(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 54;
+ this.expansionSetCode = "EMA";
+ }
+
+ public HondenOfSeeingWinds(final HondenOfSeeingWinds card) {
+ super(card);
+ }
+
+ @Override
+ public HondenOfSeeingWinds copy() {
+ return new HondenOfSeeingWinds(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Humble.java b/Mage.Sets/src/mage/sets/eternalmasters/Humble.java
new file mode 100644
index 00000000000..f3ee2b2bc78
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Humble.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Humble extends mage.sets.urzassaga.Humble {
+
+ public Humble(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 14;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Humble(final Humble card) {
+ super(card);
+ }
+
+ @Override
+ public Humble copy() {
+ return new Humble(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ImperiousPerfect.java b/Mage.Sets/src/mage/sets/eternalmasters/ImperiousPerfect.java
new file mode 100644
index 00000000000..6c6d0668b8c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ImperiousPerfect.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ImperiousPerfect extends mage.sets.lorwyn.ImperiousPerfect {
+
+ public ImperiousPerfect(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 173;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.RARE;
+ }
+
+ public ImperiousPerfect(final ImperiousPerfect card) {
+ super(card);
+ }
+
+ @Override
+ public ImperiousPerfect copy() {
+ return new ImperiousPerfect(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/InkwellLeviathan.java b/Mage.Sets/src/mage/sets/eternalmasters/InkwellLeviathan.java
new file mode 100644
index 00000000000..1c9e1872b99
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/InkwellLeviathan.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class InkwellLeviathan extends mage.sets.conflux.InkwellLeviathan {
+
+ public InkwellLeviathan(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 56;
+ this.expansionSetCode = "EMA";
+ }
+
+ public InkwellLeviathan(final InkwellLeviathan card) {
+ super(card);
+ }
+
+ @Override
+ public InkwellLeviathan copy() {
+ return new InkwellLeviathan(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/IntangibleVirtue.java b/Mage.Sets/src/mage/sets/eternalmasters/IntangibleVirtue.java
new file mode 100644
index 00000000000..6aad5f53029
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/IntangibleVirtue.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class IntangibleVirtue extends mage.sets.innistrad.IntangibleVirtue {
+
+ public IntangibleVirtue(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 15;
+ this.expansionSetCode = "EMA";
+ }
+
+ public IntangibleVirtue(final IntangibleVirtue card) {
+ super(card);
+ }
+
+ @Override
+ public IntangibleVirtue copy() {
+ return new IntangibleVirtue(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Invigorate.java b/Mage.Sets/src/mage/sets/eternalmasters/Invigorate.java
new file mode 100644
index 00000000000..e0f7e3ab1c2
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Invigorate.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Invigorate extends mage.sets.commander.Invigorate {
+
+ public Invigorate(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 174;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public Invigorate(final Invigorate card) {
+ super(card);
+ }
+
+ @Override
+ public Invigorate copy() {
+ return new Invigorate(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/JarethLeonineTitan.java b/Mage.Sets/src/mage/sets/eternalmasters/JarethLeonineTitan.java
new file mode 100644
index 00000000000..2aff73a274a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/JarethLeonineTitan.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class JarethLeonineTitan extends mage.sets.onslaught.JarethLeonineTitan {
+
+ public JarethLeonineTitan(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 16;
+ this.expansionSetCode = "EMA";
+ }
+
+ public JarethLeonineTitan(final JarethLeonineTitan card) {
+ super(card);
+ }
+
+ @Override
+ public JarethLeonineTitan copy() {
+ return new JarethLeonineTitan(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/JettingGlasskite.java b/Mage.Sets/src/mage/sets/eternalmasters/JettingGlasskite.java
new file mode 100644
index 00000000000..d5307f6c0dc
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/JettingGlasskite.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class JettingGlasskite extends mage.sets.betrayersofkamigawa.JettingGlasskite {
+
+ public JettingGlasskite(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 58;
+ this.expansionSetCode = "EMA";
+ }
+
+ public JettingGlasskite(final JettingGlasskite card) {
+ super(card);
+ }
+
+ @Override
+ public JettingGlasskite copy() {
+ return new JettingGlasskite(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Juggernaut.java b/Mage.Sets/src/mage/sets/eternalmasters/Juggernaut.java
new file mode 100644
index 00000000000..87d9695b37c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Juggernaut.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Juggernaut extends mage.sets.tenthedition.Juggernaut {
+
+ public Juggernaut(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 224;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Juggernaut(final Juggernaut card) {
+ super(card);
+ }
+
+ @Override
+ public Juggernaut copy() {
+ return new Juggernaut(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/JungleHollow.java b/Mage.Sets/src/mage/sets/eternalmasters/JungleHollow.java
new file mode 100644
index 00000000000..34df101272c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/JungleHollow.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class JungleHollow extends mage.sets.khansoftarkir.JungleHollow {
+
+ public JungleHollow(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 239;
+ this.expansionSetCode = "EMA";
+ }
+
+ public JungleHollow(final JungleHollow card) {
+ super(card);
+ }
+
+ @Override
+ public JungleHollow copy() {
+ return new JungleHollow(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/KeldonChampion.java b/Mage.Sets/src/mage/sets/eternalmasters/KeldonChampion.java
new file mode 100644
index 00000000000..d018d6cd716
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/KeldonChampion.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class KeldonChampion extends mage.sets.planechase.KeldonChampion {
+
+ public KeldonChampion(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 135;
+ this.expansionSetCode = "EMA";
+ }
+
+ public KeldonChampion(final KeldonChampion card) {
+ super(card);
+ }
+
+ @Override
+ public KeldonChampion copy() {
+ return new KeldonChampion(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/KeldonMarauders.java b/Mage.Sets/src/mage/sets/eternalmasters/KeldonMarauders.java
new file mode 100644
index 00000000000..ee0f376141a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/KeldonMarauders.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class KeldonMarauders extends mage.sets.planarchaos.KeldonMarauders {
+
+ public KeldonMarauders(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 136;
+ this.expansionSetCode = "EMA";
+ }
+
+ public KeldonMarauders(final KeldonMarauders card) {
+ super(card);
+ }
+
+ @Override
+ public KeldonMarauders copy() {
+ return new KeldonMarauders(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/KirdApe.java b/Mage.Sets/src/mage/sets/eternalmasters/KirdApe.java
new file mode 100644
index 00000000000..df011878d3d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/KirdApe.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class KirdApe extends mage.sets.ninthedition.KirdApe {
+
+ public KirdApe(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 137;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public KirdApe(final KirdApe card) {
+ super(card);
+ }
+
+ @Override
+ public KirdApe copy() {
+ return new KirdApe(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/KorHookmaster.java b/Mage.Sets/src/mage/sets/eternalmasters/KorHookmaster.java
new file mode 100644
index 00000000000..920458f3aa9
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/KorHookmaster.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class KorHookmaster extends mage.sets.zendikar.KorHookmaster {
+
+ public KorHookmaster(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 18;
+ this.expansionSetCode = "EMA";
+ }
+
+ public KorHookmaster(final KorHookmaster card) {
+ super(card);
+ }
+
+ @Override
+ public KorHookmaster copy() {
+ return new KorHookmaster(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/LlanowarElves.java b/Mage.Sets/src/mage/sets/eternalmasters/LlanowarElves.java
new file mode 100644
index 00000000000..0eebb531d3a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/LlanowarElves.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class LlanowarElves extends mage.sets.tenthedition.LlanowarElves {
+
+ public LlanowarElves(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 175;
+ this.expansionSetCode = "EMA";
+ }
+
+ public LlanowarElves(final LlanowarElves card) {
+ super(card);
+ }
+
+ @Override
+ public LlanowarElves copy() {
+ return new LlanowarElves(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/LysAlanaHuntmaster.java b/Mage.Sets/src/mage/sets/eternalmasters/LysAlanaHuntmaster.java
new file mode 100644
index 00000000000..d571d124e9b
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/LysAlanaHuntmaster.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class LysAlanaHuntmaster extends mage.sets.lorwyn.LysAlanaHuntmaster {
+
+ public LysAlanaHuntmaster(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 176;
+ this.expansionSetCode = "EMA";
+ }
+
+ public LysAlanaHuntmaster(final LysAlanaHuntmaster card) {
+ super(card);
+ }
+
+ @Override
+ public LysAlanaHuntmaster copy() {
+ return new LysAlanaHuntmaster(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/LysAlanaScarblade.java b/Mage.Sets/src/mage/sets/eternalmasters/LysAlanaScarblade.java
new file mode 100644
index 00000000000..f3f622f8d9f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/LysAlanaScarblade.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class LysAlanaScarblade extends mage.sets.lorwyn.LysAlanaScarblade {
+
+ public LysAlanaScarblade(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 95;
+ this.expansionSetCode = "EMA";
+ }
+
+ public LysAlanaScarblade(final LysAlanaScarblade card) {
+ super(card);
+ }
+
+ @Override
+ public LysAlanaScarblade copy() {
+ return new LysAlanaScarblade(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MaliciousAffliction.java b/Mage.Sets/src/mage/sets/eternalmasters/MaliciousAffliction.java
new file mode 100644
index 00000000000..0774952e20b
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MaliciousAffliction.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MaliciousAffliction extends mage.sets.commander2014.MaliciousAffliction {
+
+ public MaliciousAffliction(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 96;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MaliciousAffliction(final MaliciousAffliction card) {
+ super(card);
+ }
+
+ @Override
+ public MaliciousAffliction copy() {
+ return new MaliciousAffliction(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MemoryLapse.java b/Mage.Sets/src/mage/sets/eternalmasters/MemoryLapse.java
new file mode 100644
index 00000000000..7971cd1ce71
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MemoryLapse.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MemoryLapse extends mage.sets.seventhedition.MemoryLapse {
+
+ public MemoryLapse(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 60;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MemoryLapse(final MemoryLapse card) {
+ super(card);
+ }
+
+ @Override
+ public MemoryLapse copy() {
+ return new MemoryLapse(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MerfolkLooter.java b/Mage.Sets/src/mage/sets/eternalmasters/MerfolkLooter.java
new file mode 100644
index 00000000000..0ffadc2627a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MerfolkLooter.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MerfolkLooter extends mage.sets.magic2012.MerfolkLooter {
+
+ public MerfolkLooter(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 61;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MerfolkLooter(final MerfolkLooter card) {
+ super(card);
+ }
+
+ @Override
+ public MerfolkLooter copy() {
+ return new MerfolkLooter(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Millikin.java b/Mage.Sets/src/mage/sets/eternalmasters/Millikin.java
new file mode 100644
index 00000000000..5aa60f49bd1
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Millikin.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Millikin extends mage.sets.odyssey.Millikin {
+
+ public Millikin(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 226;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Millikin(final Millikin card) {
+ super(card);
+ }
+
+ @Override
+ public Millikin copy() {
+ return new Millikin(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MindlessAutomaton.java b/Mage.Sets/src/mage/sets/eternalmasters/MindlessAutomaton.java
new file mode 100644
index 00000000000..cce0020ba81
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MindlessAutomaton.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MindlessAutomaton extends mage.sets.exodus.MindlessAutomaton {
+
+ public MindlessAutomaton(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 227;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public MindlessAutomaton(final MindlessAutomaton card) {
+ super(card);
+ }
+
+ @Override
+ public MindlessAutomaton copy() {
+ return new MindlessAutomaton(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MistralCharger.java b/Mage.Sets/src/mage/sets/eternalmasters/MistralCharger.java
new file mode 100644
index 00000000000..49a433c8e5b
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MistralCharger.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MistralCharger extends mage.sets.dissension.MistralCharger {
+
+ public MistralCharger(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 20;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MistralCharger(final MistralCharger card) {
+ super(card);
+ }
+
+ @Override
+ public MistralCharger copy() {
+ return new MistralCharger(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MoggFanatic.java b/Mage.Sets/src/mage/sets/eternalmasters/MoggFanatic.java
new file mode 100644
index 00000000000..65929609661
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MoggFanatic.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MoggFanatic extends mage.sets.tempest.MoggFanatic {
+
+ public MoggFanatic(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 138;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MoggFanatic(final MoggFanatic card) {
+ super(card);
+ }
+
+ @Override
+ public MoggFanatic copy() {
+ return new MoggFanatic(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MoggWarMarshal.java b/Mage.Sets/src/mage/sets/eternalmasters/MoggWarMarshal.java
new file mode 100644
index 00000000000..4af0c9729ba
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MoggWarMarshal.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MoggWarMarshal extends mage.sets.timespiral.MoggWarMarshal {
+
+ public MoggWarMarshal(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 139;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MoggWarMarshal(final MoggWarMarshal card) {
+ super(card);
+ }
+
+ @Override
+ public MoggWarMarshal copy() {
+ return new MoggWarMarshal(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/MonkIdealist.java b/Mage.Sets/src/mage/sets/eternalmasters/MonkIdealist.java
new file mode 100644
index 00000000000..88ce1f27709
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/MonkIdealist.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class MonkIdealist extends mage.sets.urzassaga.MonkIdealist {
+
+ public MonkIdealist(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 21;
+ this.expansionSetCode = "EMA";
+ }
+
+ public MonkIdealist(final MonkIdealist card) {
+ super(card);
+ }
+
+ @Override
+ public MonkIdealist copy() {
+ return new MonkIdealist(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/NaturesClaim.java b/Mage.Sets/src/mage/sets/eternalmasters/NaturesClaim.java
new file mode 100644
index 00000000000..a1e18dcd97a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/NaturesClaim.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class NaturesClaim extends mage.sets.worldwake.NaturesClaim {
+
+ public NaturesClaim(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 178;
+ this.expansionSetCode = "EMA";
+ }
+
+ public NaturesClaim(final NaturesClaim card) {
+ super(card);
+ }
+
+ @Override
+ public NaturesClaim copy() {
+ return new NaturesClaim(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Nekrataal.java b/Mage.Sets/src/mage/sets/eternalmasters/Nekrataal.java
new file mode 100644
index 00000000000..a74d284763a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Nekrataal.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Nekrataal extends mage.sets.ninthedition.Nekrataal {
+
+ public Nekrataal(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 99;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Nekrataal(final Nekrataal card) {
+ super(card);
+ }
+
+ @Override
+ public Nekrataal copy() {
+ return new Nekrataal(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/NightsWhisper.java b/Mage.Sets/src/mage/sets/eternalmasters/NightsWhisper.java
new file mode 100644
index 00000000000..29a9a4114eb
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/NightsWhisper.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class NightsWhisper extends mage.sets.fifthdawn.NightsWhisper {
+
+ public NightsWhisper(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 100;
+ this.expansionSetCode = "EMA";
+ }
+
+ public NightsWhisper(final NightsWhisper card) {
+ super(card);
+ }
+
+ @Override
+ public NightsWhisper copy() {
+ return new NightsWhisper(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/OrcishOriflamme.java b/Mage.Sets/src/mage/sets/eternalmasters/OrcishOriflamme.java
new file mode 100644
index 00000000000..7c02ae09305
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/OrcishOriflamme.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class OrcishOriflamme extends mage.sets.limitedalpha.OrcishOriflamme {
+
+ public OrcishOriflamme(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 140;
+ this.expansionSetCode = "EMA";
+ }
+
+ public OrcishOriflamme(final OrcishOriflamme card) {
+ super(card);
+ }
+
+ @Override
+ public OrcishOriflamme copy() {
+ return new OrcishOriflamme(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Pacifism.java b/Mage.Sets/src/mage/sets/eternalmasters/Pacifism.java
new file mode 100644
index 00000000000..c333d2760ef
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Pacifism.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Pacifism extends mage.sets.tenthedition.Pacifism {
+
+ public Pacifism(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 23;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Pacifism(final Pacifism card) {
+ super(card);
+ }
+
+ @Override
+ public Pacifism copy() {
+ return new Pacifism(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PeregrineDrake.java b/Mage.Sets/src/mage/sets/eternalmasters/PeregrineDrake.java
new file mode 100644
index 00000000000..3f86512582f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PeregrineDrake.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PeregrineDrake extends mage.sets.urzassaga.PeregrineDrake {
+
+ public PeregrineDrake(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 64;
+ this.expansionSetCode = "EMA";
+ }
+
+ public PeregrineDrake(final PeregrineDrake card) {
+ super(card);
+ }
+
+ @Override
+ public PeregrineDrake copy() {
+ return new PeregrineDrake(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PhantomMonster.java b/Mage.Sets/src/mage/sets/eternalmasters/PhantomMonster.java
new file mode 100644
index 00000000000..3160508b47f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PhantomMonster.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PhantomMonster extends mage.sets.fifthedition.PhantomMonster {
+
+ public PhantomMonster(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 65;
+ this.expansionSetCode = "EMA";
+ }
+
+ public PhantomMonster(final PhantomMonster card) {
+ super(card);
+ }
+
+ @Override
+ public PhantomMonster copy() {
+ return new PhantomMonster(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianGargantua.java b/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianGargantua.java
new file mode 100644
index 00000000000..8749d223c2a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianGargantua.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PhyrexianGargantua extends mage.sets.apocalypse.PhyrexianGargantua {
+
+ public PhyrexianGargantua(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 101;
+ this.expansionSetCode = "EMA";
+ }
+
+ public PhyrexianGargantua(final PhyrexianGargantua card) {
+ super(card);
+ }
+
+ @Override
+ public PhyrexianGargantua copy() {
+ return new PhyrexianGargantua(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianIngester.java b/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianIngester.java
new file mode 100644
index 00000000000..e3e7b1e943b
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianIngester.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PhyrexianIngester extends mage.sets.newphyrexia.PhyrexianIngester {
+
+ public PhyrexianIngester(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 66;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public PhyrexianIngester(final PhyrexianIngester card) {
+ super(card);
+ }
+
+ @Override
+ public PhyrexianIngester copy() {
+ return new PhyrexianIngester(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianRager.java b/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianRager.java
new file mode 100644
index 00000000000..b252f8e594a
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PhyrexianRager.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PhyrexianRager extends mage.sets.tenthedition.PhyrexianRager {
+
+ public PhyrexianRager(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 102;
+ this.expansionSetCode = "EMA";
+ }
+
+ public PhyrexianRager(final PhyrexianRager card) {
+ super(card);
+ }
+
+ @Override
+ public PhyrexianRager copy() {
+ return new PhyrexianRager(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PilgrimsEye.java b/Mage.Sets/src/mage/sets/eternalmasters/PilgrimsEye.java
new file mode 100644
index 00000000000..4dfad9abbeb
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PilgrimsEye.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PilgrimsEye extends mage.sets.worldwake.PilgrimsEye {
+
+ public PilgrimsEye(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 229;
+ this.expansionSetCode = "EMA";
+ }
+
+ public PilgrimsEye(final PilgrimsEye card) {
+ super(card);
+ }
+
+ @Override
+ public PilgrimsEye copy() {
+ return new PilgrimsEye(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PlagueWitch.java b/Mage.Sets/src/mage/sets/eternalmasters/PlagueWitch.java
new file mode 100644
index 00000000000..78cd7430bc2
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PlagueWitch.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PlagueWitch extends mage.sets.nemesis.PlagueWitch {
+
+ public PlagueWitch(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 103;
+ this.expansionSetCode = "EMA";
+ }
+
+ public PlagueWitch(final PlagueWitch card) {
+ super(card);
+ }
+
+ @Override
+ public PlagueWitch copy() {
+ return new PlagueWitch(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/PrismaticLens.java b/Mage.Sets/src/mage/sets/eternalmasters/PrismaticLens.java
new file mode 100644
index 00000000000..2c5ba686fdc
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/PrismaticLens.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class PrismaticLens extends mage.sets.timespiral.PrismaticLens {
+
+ public PrismaticLens(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 230;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public PrismaticLens(final PrismaticLens card) {
+ super(card);
+ }
+
+ @Override
+ public PrismaticLens copy() {
+ return new PrismaticLens(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Pyrokinesis.java b/Mage.Sets/src/mage/sets/eternalmasters/Pyrokinesis.java
new file mode 100644
index 00000000000..0a5775228cb
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Pyrokinesis.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Pyrokinesis extends mage.sets.alliances.Pyrokinesis {
+
+ public Pyrokinesis(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 143;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.RARE;
+ }
+
+ public Pyrokinesis(final Pyrokinesis card) {
+ super(card);
+ }
+
+ @Override
+ public Pyrokinesis copy() {
+ return new Pyrokinesis(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/RaiseTheAlarm.java b/Mage.Sets/src/mage/sets/eternalmasters/RaiseTheAlarm.java
new file mode 100644
index 00000000000..adc240b8c9c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/RaiseTheAlarm.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class RaiseTheAlarm extends mage.sets.mirrodin.RaiseTheAlarm {
+
+ public RaiseTheAlarm(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 24;
+ this.expansionSetCode = "EMA";
+ }
+
+ public RaiseTheAlarm(final RaiseTheAlarm card) {
+ super(card);
+ }
+
+ @Override
+ public RaiseTheAlarm copy() {
+ return new RaiseTheAlarm(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/RallyThePeasants.java b/Mage.Sets/src/mage/sets/eternalmasters/RallyThePeasants.java
new file mode 100644
index 00000000000..25858b639c2
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/RallyThePeasants.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class RallyThePeasants extends mage.sets.innistrad.RallyThePeasants {
+
+ public RallyThePeasants(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 25;
+ this.expansionSetCode = "EMA";
+ }
+
+ public RallyThePeasants(final RallyThePeasants card) {
+ super(card);
+ }
+
+ @Override
+ public RallyThePeasants copy() {
+ return new RallyThePeasants(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Rancor.java b/Mage.Sets/src/mage/sets/eternalmasters/Rancor.java
new file mode 100644
index 00000000000..aebad662b4d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Rancor.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Rancor extends mage.sets.urzaslegacy.Rancor {
+
+ public Rancor(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 180;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public Rancor(final Rancor card) {
+ super(card);
+ }
+
+ @Override
+ public Rancor copy() {
+ return new Rancor(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/RecklessCharge.java b/Mage.Sets/src/mage/sets/eternalmasters/RecklessCharge.java
new file mode 100644
index 00000000000..f025153d5ff
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/RecklessCharge.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class RecklessCharge extends mage.sets.planechase.RecklessCharge {
+
+ public RecklessCharge(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 144;
+ this.expansionSetCode = "EMA";
+ }
+
+ public RecklessCharge(final RecklessCharge card) {
+ super(card);
+ }
+
+ @Override
+ public RecklessCharge copy() {
+ return new RecklessCharge(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/RelicOfProgenitus.java b/Mage.Sets/src/mage/sets/eternalmasters/RelicOfProgenitus.java
new file mode 100644
index 00000000000..6b08c1279ff
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/RelicOfProgenitus.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class RelicOfProgenitus extends mage.sets.shardsofalara.RelicOfProgenitus {
+
+ public RelicOfProgenitus(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 231;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public RelicOfProgenitus(final RelicOfProgenitus card) {
+ super(card);
+ }
+
+ @Override
+ public RelicOfProgenitus copy() {
+ return new RelicOfProgenitus(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/RoarOfTheWurm.java b/Mage.Sets/src/mage/sets/eternalmasters/RoarOfTheWurm.java
new file mode 100644
index 00000000000..3e3c9503fbe
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/RoarOfTheWurm.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class RoarOfTheWurm extends mage.sets.odyssey.RoarOfTheWurm {
+
+ public RoarOfTheWurm(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 182;
+ this.expansionSetCode = "EMA";
+ }
+
+ public RoarOfTheWurm(final RoarOfTheWurm card) {
+ super(card);
+ }
+
+ @Override
+ public RoarOfTheWurm copy() {
+ return new RoarOfTheWurm(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Roots.java b/Mage.Sets/src/mage/sets/eternalmasters/Roots.java
new file mode 100644
index 00000000000..f50065ea130
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Roots.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Roots extends mage.sets.homelands.Roots {
+
+ public Roots(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 183;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public Roots(final Roots card) {
+ super(card);
+ }
+
+ @Override
+ public Roots copy() {
+ return new Roots(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/RuggedHighlands.java b/Mage.Sets/src/mage/sets/eternalmasters/RuggedHighlands.java
new file mode 100644
index 00000000000..127f8b0bf47
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/RuggedHighlands.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class RuggedHighlands extends mage.sets.khansoftarkir.RuggedHighlands {
+
+ public RuggedHighlands(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 243;
+ this.expansionSetCode = "EMA";
+ }
+
+ public RuggedHighlands(final RuggedHighlands card) {
+ super(card);
+ }
+
+ @Override
+ public RuggedHighlands copy() {
+ return new RuggedHighlands(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ScouredBarrens.java b/Mage.Sets/src/mage/sets/eternalmasters/ScouredBarrens.java
new file mode 100644
index 00000000000..b426c3f7413
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ScouredBarrens.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ScouredBarrens extends mage.sets.khansoftarkir.ScouredBarrens {
+
+ public ScouredBarrens(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 244;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ScouredBarrens(final ScouredBarrens card) {
+ super(card);
+ }
+
+ @Override
+ public ScouredBarrens copy() {
+ return new ScouredBarrens(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ScreechingSkaab.java b/Mage.Sets/src/mage/sets/eternalmasters/ScreechingSkaab.java
new file mode 100644
index 00000000000..53e134cce24
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ScreechingSkaab.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ScreechingSkaab extends mage.sets.darkascension.ScreechingSkaab {
+
+ public ScreechingSkaab(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 69;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ScreechingSkaab(final ScreechingSkaab card) {
+ super(card);
+ }
+
+ @Override
+ public ScreechingSkaab copy() {
+ return new ScreechingSkaab(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SealOfCleansing.java b/Mage.Sets/src/mage/sets/eternalmasters/SealOfCleansing.java
new file mode 100644
index 00000000000..37e84161a48
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SealOfCleansing.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SealOfCleansing extends mage.sets.nemesis.SealOfCleansing {
+
+ public SealOfCleansing(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 26;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SealOfCleansing(final SealOfCleansing card) {
+ super(card);
+ }
+
+ @Override
+ public SealOfCleansing copy() {
+ return new SealOfCleansing(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SealOfStrength.java b/Mage.Sets/src/mage/sets/eternalmasters/SealOfStrength.java
new file mode 100644
index 00000000000..1a01fe6a729
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SealOfStrength.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SealOfStrength extends mage.sets.nemesis.SealOfStrength {
+
+ public SealOfStrength(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 184;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SealOfStrength(final SealOfStrength card) {
+ super(card);
+ }
+
+ @Override
+ public SealOfStrength copy() {
+ return new SealOfStrength(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SecondThoughts.java b/Mage.Sets/src/mage/sets/eternalmasters/SecondThoughts.java
new file mode 100644
index 00000000000..92a4d0ed160
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SecondThoughts.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SecondThoughts extends mage.sets.odyssey.SecondThoughts {
+
+ public SecondThoughts(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 27;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SecondThoughts(final SecondThoughts card) {
+ super(card);
+ }
+
+ @Override
+ public SecondThoughts copy() {
+ return new SecondThoughts(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SeismicStomp.java b/Mage.Sets/src/mage/sets/eternalmasters/SeismicStomp.java
new file mode 100644
index 00000000000..372b96476b5
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SeismicStomp.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SeismicStomp extends mage.sets.magic2014.SeismicStomp {
+
+ public SeismicStomp(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 146;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SeismicStomp(final SeismicStomp card) {
+ super(card);
+ }
+
+ @Override
+ public SeismicStomp copy() {
+ return new SeismicStomp(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SentinelSpider.java b/Mage.Sets/src/mage/sets/eternalmasters/SentinelSpider.java
new file mode 100644
index 00000000000..589665c43d5
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SentinelSpider.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SentinelSpider extends mage.sets.magic2013.SentinelSpider {
+
+ public SentinelSpider(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 185;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SentinelSpider(final SentinelSpider card) {
+ super(card);
+ }
+
+ @Override
+ public SentinelSpider copy() {
+ return new SentinelSpider(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SerendibEfreet.java b/Mage.Sets/src/mage/sets/eternalmasters/SerendibEfreet.java
new file mode 100644
index 00000000000..8ca915ed219
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SerendibEfreet.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SerendibEfreet extends mage.sets.vintagemasters.SerendibEfreet {
+
+ public SerendibEfreet(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 70;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.RARE;
+ }
+
+ public SerendibEfreet(final SerendibEfreet card) {
+ super(card);
+ }
+
+ @Override
+ public SerendibEfreet copy() {
+ return new SerendibEfreet(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SerraAngel.java b/Mage.Sets/src/mage/sets/eternalmasters/SerraAngel.java
new file mode 100644
index 00000000000..97e02b6c17f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SerraAngel.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SerraAngel extends mage.sets.tenthedition.SerraAngel {
+
+ public SerraAngel(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 28;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public SerraAngel(final SerraAngel card) {
+ super(card);
+ }
+
+ @Override
+ public SerraAngel copy() {
+ return new SerraAngel(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Shelter.java b/Mage.Sets/src/mage/sets/eternalmasters/Shelter.java
new file mode 100644
index 00000000000..824717930da
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Shelter.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Shelter extends mage.sets.odyssey.Shelter {
+
+ public Shelter(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 29;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Shelter(final Shelter card) {
+ super(card);
+ }
+
+ @Override
+ public Shelter copy() {
+ return new Shelter(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ShorelineRanger.java b/Mage.Sets/src/mage/sets/eternalmasters/ShorelineRanger.java
new file mode 100644
index 00000000000..308bcc5e909
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ShorelineRanger.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ShorelineRanger extends mage.sets.scourge.ShorelineRanger {
+
+ public ShorelineRanger(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 71;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ShorelineRanger(final ShorelineRanger card) {
+ super(card);
+ }
+
+ @Override
+ public ShorelineRanger copy() {
+ return new ShorelineRanger(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SiegeGangCommander.java b/Mage.Sets/src/mage/sets/eternalmasters/SiegeGangCommander.java
new file mode 100644
index 00000000000..a421b65284f
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SiegeGangCommander.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SiegeGangCommander extends mage.sets.magic2010.SiegeGangCommander {
+
+ public SiegeGangCommander(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 147;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SiegeGangCommander(final SiegeGangCommander card) {
+ super(card);
+ }
+
+ @Override
+ public SiegeGangCommander copy() {
+ return new SiegeGangCommander(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SilentDeparture.java b/Mage.Sets/src/mage/sets/eternalmasters/SilentDeparture.java
new file mode 100644
index 00000000000..5cea5b09ba7
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SilentDeparture.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SilentDeparture extends mage.sets.innistrad.SilentDeparture {
+
+ public SilentDeparture(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 72;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SilentDeparture(final SilentDeparture card) {
+ super(card);
+ }
+
+ @Override
+ public SilentDeparture copy() {
+ return new SilentDeparture(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SilvosRogueElemental.java b/Mage.Sets/src/mage/sets/eternalmasters/SilvosRogueElemental.java
new file mode 100644
index 00000000000..9beae6788c9
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SilvosRogueElemental.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SilvosRogueElemental extends mage.sets.onslaught.SilvosRogueElemental {
+
+ public SilvosRogueElemental(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 186;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SilvosRogueElemental(final SilvosRogueElemental card) {
+ super(card);
+ }
+
+ @Override
+ public SilvosRogueElemental copy() {
+ return new SilvosRogueElemental(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SkulkingGhost.java b/Mage.Sets/src/mage/sets/eternalmasters/SkulkingGhost.java
new file mode 100644
index 00000000000..c846f5b9631
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SkulkingGhost.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SkulkingGhost extends mage.sets.mirage.SkulkingGhost {
+
+ public SkulkingGhost(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 107;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SkulkingGhost(final SkulkingGhost card) {
+ super(card);
+ }
+
+ @Override
+ public SkulkingGhost copy() {
+ return new SkulkingGhost(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Soulcatcher.java b/Mage.Sets/src/mage/sets/eternalmasters/Soulcatcher.java
new file mode 100644
index 00000000000..7ed02878515
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Soulcatcher.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Soulcatcher extends mage.sets.odyssey.Soulcatcher {
+
+ public Soulcatcher(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 30;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Soulcatcher(final Soulcatcher card) {
+ super(card);
+ }
+
+ @Override
+ public Soulcatcher copy() {
+ return new Soulcatcher(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SphinxOfTheSteelWind.java b/Mage.Sets/src/mage/sets/eternalmasters/SphinxOfTheSteelWind.java
new file mode 100644
index 00000000000..5276c6204ca
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SphinxOfTheSteelWind.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SphinxOfTheSteelWind extends mage.sets.alarareborn.SphinxOfTheSteelWind {
+
+ public SphinxOfTheSteelWind(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 207;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SphinxOfTheSteelWind(final SphinxOfTheSteelWind card) {
+ super(card);
+ }
+
+ @Override
+ public SphinxOfTheSteelWind copy() {
+ return new SphinxOfTheSteelWind(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SpriteNoble.java b/Mage.Sets/src/mage/sets/eternalmasters/SpriteNoble.java
new file mode 100644
index 00000000000..4156550c2f3
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SpriteNoble.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SpriteNoble extends mage.sets.timespiral.SpriteNoble {
+
+ public SpriteNoble(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 73;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public SpriteNoble(final SpriteNoble card) {
+ super(card);
+ }
+
+ @Override
+ public SpriteNoble copy() {
+ return new SpriteNoble(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Stingscourger.java b/Mage.Sets/src/mage/sets/eternalmasters/Stingscourger.java
new file mode 100644
index 00000000000..c088134b60d
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Stingscourger.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Stingscourger extends mage.sets.planarchaos.Stingscourger {
+
+ public Stingscourger(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 149;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Stingscourger(final Stingscourger card) {
+ super(card);
+ }
+
+ @Override
+ public Stingscourger copy() {
+ return new Stingscourger(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/StupefyingTouch.java b/Mage.Sets/src/mage/sets/eternalmasters/StupefyingTouch.java
new file mode 100644
index 00000000000..dfeb4127461
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/StupefyingTouch.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class StupefyingTouch extends mage.sets.torment.StupefyingTouch {
+
+ public StupefyingTouch(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 74;
+ this.expansionSetCode = "EMA";
+ }
+
+ public StupefyingTouch(final StupefyingTouch card) {
+ super(card);
+ }
+
+ @Override
+ public StupefyingTouch copy() {
+ return new StupefyingTouch(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SwiftwaterCliffs.java b/Mage.Sets/src/mage/sets/eternalmasters/SwiftwaterCliffs.java
new file mode 100644
index 00000000000..6a6deb29800
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SwiftwaterCliffs.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SwiftwaterCliffs extends mage.sets.khansoftarkir.SwiftwaterCliffs {
+
+ public SwiftwaterCliffs(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 245;
+ this.expansionSetCode = "EMA";
+ }
+
+ public SwiftwaterCliffs(final SwiftwaterCliffs card) {
+ super(card);
+ }
+
+ @Override
+ public SwiftwaterCliffs copy() {
+ return new SwiftwaterCliffs(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/SylvanMight.java b/Mage.Sets/src/mage/sets/eternalmasters/SylvanMight.java
new file mode 100644
index 00000000000..9eb2e456f28
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/SylvanMight.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class SylvanMight extends mage.sets.odyssey.SylvanMight {
+
+ public SylvanMight(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 188;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public SylvanMight(final SylvanMight card) {
+ super(card);
+ }
+
+ @Override
+ public SylvanMight copy() {
+ return new SylvanMight(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ThornwealdArcher.java b/Mage.Sets/src/mage/sets/eternalmasters/ThornwealdArcher.java
new file mode 100644
index 00000000000..6b298605131
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ThornwealdArcher.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ThornwealdArcher extends mage.sets.futuresight.ThornwealdArcher {
+
+ public ThornwealdArcher(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 189;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ThornwealdArcher(final ThornwealdArcher card) {
+ super(card);
+ }
+
+ @Override
+ public ThornwealdArcher copy() {
+ return new ThornwealdArcher(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ThornwoodFalls.java b/Mage.Sets/src/mage/sets/eternalmasters/ThornwoodFalls.java
new file mode 100644
index 00000000000..7f156bbc5c0
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ThornwoodFalls.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ThornwoodFalls extends mage.sets.khansoftarkir.ThornwoodFalls {
+
+ public ThornwoodFalls(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 246;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ThornwoodFalls(final ThornwoodFalls card) {
+ super(card);
+ }
+
+ @Override
+ public ThornwoodFalls copy() {
+ return new ThornwoodFalls(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ThunderclapWyvern.java b/Mage.Sets/src/mage/sets/eternalmasters/ThunderclapWyvern.java
new file mode 100644
index 00000000000..4fbf6bbcba0
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ThunderclapWyvern.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ThunderclapWyvern extends mage.sets.magicorigins.ThunderclapWyvern {
+
+ public ThunderclapWyvern(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 208;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ThunderclapWyvern(final ThunderclapWyvern card) {
+ super(card);
+ }
+
+ @Override
+ public ThunderclapWyvern copy() {
+ return new ThunderclapWyvern(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TickingGnomes.java b/Mage.Sets/src/mage/sets/eternalmasters/TickingGnomes.java
new file mode 100644
index 00000000000..8c98a700642
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TickingGnomes.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TickingGnomes extends mage.sets.urzaslegacy.TickingGnomes {
+
+ public TickingGnomes(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 233;
+ this.expansionSetCode = "EMA";
+ }
+
+ public TickingGnomes(final TickingGnomes card) {
+ super(card);
+ }
+
+ @Override
+ public TickingGnomes copy() {
+ return new TickingGnomes(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TidalWave.java b/Mage.Sets/src/mage/sets/eternalmasters/TidalWave.java
new file mode 100644
index 00000000000..75985baced3
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TidalWave.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TidalWave extends mage.sets.mirage.TidalWave {
+
+ public TidalWave(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 75;
+ this.expansionSetCode = "EMA";
+ }
+
+ public TidalWave(final TidalWave card) {
+ super(card);
+ }
+
+ @Override
+ public TidalWave copy() {
+ return new TidalWave(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ToothAndClaw.java b/Mage.Sets/src/mage/sets/eternalmasters/ToothAndClaw.java
new file mode 100644
index 00000000000..6afc3902090
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ToothAndClaw.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ToothAndClaw extends mage.sets.tempest.ToothAndClaw {
+
+ public ToothAndClaw(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 151;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.UNCOMMON;
+ }
+
+ public ToothAndClaw(final ToothAndClaw card) {
+ super(card);
+ }
+
+ @Override
+ public ToothAndClaw copy() {
+ return new ToothAndClaw(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TorrentOfSouls.java b/Mage.Sets/src/mage/sets/eternalmasters/TorrentOfSouls.java
new file mode 100644
index 00000000000..c05338ea3fd
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TorrentOfSouls.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TorrentOfSouls extends mage.sets.sorinvstibalt.TorrentOfSouls {
+
+ public TorrentOfSouls(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 217;
+ this.expansionSetCode = "EMA";
+ }
+
+ public TorrentOfSouls(final TorrentOfSouls card) {
+ super(card);
+ }
+
+ @Override
+ public TorrentOfSouls copy() {
+ return new TorrentOfSouls(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TragicSlip.java b/Mage.Sets/src/mage/sets/eternalmasters/TragicSlip.java
new file mode 100644
index 00000000000..2f6679e226e
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TragicSlip.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TragicSlip extends mage.sets.darkascension.TragicSlip {
+
+ public TragicSlip(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 109;
+ this.expansionSetCode = "EMA";
+ }
+
+ public TragicSlip(final TragicSlip card) {
+ super(card);
+ }
+
+ @Override
+ public TragicSlip copy() {
+ return new TragicSlip(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TranquilCove.java b/Mage.Sets/src/mage/sets/eternalmasters/TranquilCove.java
new file mode 100644
index 00000000000..514348d1d57
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TranquilCove.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TranquilCove extends mage.sets.khansoftarkir.TranquilCove {
+
+ public TranquilCove(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 247;
+ this.expansionSetCode = "EMA";
+ }
+
+ public TranquilCove(final TranquilCove card) {
+ super(card);
+ }
+
+ @Override
+ public TranquilCove copy() {
+ return new TranquilCove(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TrygonPredator.java b/Mage.Sets/src/mage/sets/eternalmasters/TrygonPredator.java
new file mode 100644
index 00000000000..3c1fa757f7b
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TrygonPredator.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TrygonPredator extends mage.sets.modernmasters.TrygonPredator {
+
+ public TrygonPredator(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 209;
+ this.expansionSetCode = "EMA";
+ }
+
+ public TrygonPredator(final TrygonPredator card) {
+ super(card);
+ }
+
+ @Override
+ public TrygonPredator copy() {
+ return new TrygonPredator(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/TwistedAbomination.java b/Mage.Sets/src/mage/sets/eternalmasters/TwistedAbomination.java
new file mode 100644
index 00000000000..2ccb3b8078e
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/TwistedAbomination.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class TwistedAbomination extends mage.sets.timeshifted.TwistedAbomination {
+
+ public TwistedAbomination(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 110;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public TwistedAbomination(final TwistedAbomination card) {
+ super(card);
+ }
+
+ @Override
+ public TwistedAbomination copy() {
+ return new TwistedAbomination(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/UndyingRage.java b/Mage.Sets/src/mage/sets/eternalmasters/UndyingRage.java
new file mode 100644
index 00000000000..6d18e497dc8
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/UndyingRage.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class UndyingRage extends mage.sets.heroesvsmonsters.UndyingRage {
+
+ public UndyingRage(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 152;
+ this.expansionSetCode = "EMA";
+ }
+
+ public UndyingRage(final UndyingRage card) {
+ super(card);
+ }
+
+ @Override
+ public UndyingRage copy() {
+ return new UndyingRage(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/UrborgUprising.java b/Mage.Sets/src/mage/sets/eternalmasters/UrborgUprising.java
new file mode 100644
index 00000000000..1bd955d03cf
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/UrborgUprising.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class UrborgUprising extends mage.sets.apocalypse.UrborgUprising {
+
+ public UrborgUprising(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 111;
+ this.expansionSetCode = "EMA";
+ }
+
+ public UrborgUprising(final UrborgUprising card) {
+ super(card);
+ }
+
+ @Override
+ public UrborgUprising copy() {
+ return new UrborgUprising(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Victimize.java b/Mage.Sets/src/mage/sets/eternalmasters/Victimize.java
new file mode 100644
index 00000000000..b3f42c53fa0
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Victimize.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Victimize extends mage.sets.conspiracy.Victimize {
+
+ public Victimize(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 113;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Victimize(final Victimize card) {
+ super(card);
+ }
+
+ @Override
+ public Victimize copy() {
+ return new Victimize(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/VisaraTheDreadful.java b/Mage.Sets/src/mage/sets/eternalmasters/VisaraTheDreadful.java
new file mode 100644
index 00000000000..bf2b7de10ea
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/VisaraTheDreadful.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class VisaraTheDreadful extends mage.sets.onslaught.VisaraTheDreadful {
+
+ public VisaraTheDreadful(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 114;
+ this.expansionSetCode = "EMA";
+ }
+
+ public VisaraTheDreadful(final VisaraTheDreadful card) {
+ super(card);
+ }
+
+ @Override
+ public VisaraTheDreadful copy() {
+ return new VisaraTheDreadful(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WakeOfVultures.java b/Mage.Sets/src/mage/sets/eternalmasters/WakeOfVultures.java
new file mode 100644
index 00000000000..30e31e52970
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WakeOfVultures.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WakeOfVultures extends mage.sets.visions.WakeOfVultures {
+
+ public WakeOfVultures(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 115;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WakeOfVultures(final WakeOfVultures card) {
+ super(card);
+ }
+
+ @Override
+ public WakeOfVultures copy() {
+ return new WakeOfVultures(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Wakedancer.java b/Mage.Sets/src/mage/sets/eternalmasters/Wakedancer.java
new file mode 100644
index 00000000000..b84d81d025e
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Wakedancer.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Wakedancer extends mage.sets.darkascension.Wakedancer {
+
+ public Wakedancer(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 116;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public Wakedancer(final Wakedancer card) {
+ super(card);
+ }
+
+ @Override
+ public Wakedancer copy() {
+ return new Wakedancer(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WallOfOmens.java b/Mage.Sets/src/mage/sets/eternalmasters/WallOfOmens.java
new file mode 100644
index 00000000000..4af25c71b2c
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WallOfOmens.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WallOfOmens extends mage.sets.riseoftheeldrazi.WallOfOmens {
+
+ public WallOfOmens(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 34;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WallOfOmens(final WallOfOmens card) {
+ super(card);
+ }
+
+ @Override
+ public WallOfOmens copy() {
+ return new WallOfOmens(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WarPriestOfThune.java b/Mage.Sets/src/mage/sets/eternalmasters/WarPriestOfThune.java
new file mode 100644
index 00000000000..1ea1a93f9b3
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WarPriestOfThune.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WarPriestOfThune extends mage.sets.magic2011.WarPriestOfThune {
+
+ public WarPriestOfThune(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 35;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WarPriestOfThune(final WarPriestOfThune card) {
+ super(card);
+ }
+
+ @Override
+ public WarPriestOfThune copy() {
+ return new WarPriestOfThune(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WardenOfEvosIsle.java b/Mage.Sets/src/mage/sets/eternalmasters/WardenOfEvosIsle.java
new file mode 100644
index 00000000000..63ce59254d7
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WardenOfEvosIsle.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WardenOfEvosIsle extends mage.sets.magic2014.WardenOfEvosIsle {
+
+ public WardenOfEvosIsle(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 76;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WardenOfEvosIsle(final WardenOfEvosIsle card) {
+ super(card);
+ }
+
+ @Override
+ public WardenOfEvosIsle copy() {
+ return new WardenOfEvosIsle(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WelkinGuide.java b/Mage.Sets/src/mage/sets/eternalmasters/WelkinGuide.java
new file mode 100644
index 00000000000..6cd1e3eee13
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WelkinGuide.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WelkinGuide extends mage.sets.shardsofalara.WelkinGuide {
+
+ public WelkinGuide(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 36;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WelkinGuide(final WelkinGuide card) {
+ super(card);
+ }
+
+ @Override
+ public WelkinGuide copy() {
+ return new WelkinGuide(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WhitemaneLion.java b/Mage.Sets/src/mage/sets/eternalmasters/WhitemaneLion.java
new file mode 100644
index 00000000000..ba554651179
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WhitemaneLion.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WhitemaneLion extends mage.sets.commander2014.WhitemaneLion {
+
+ public WhitemaneLion(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 37;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WhitemaneLion(final WhitemaneLion card) {
+ super(card);
+ }
+
+ @Override
+ public WhitemaneLion copy() {
+ return new WhitemaneLion(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WindScarredCrag.java b/Mage.Sets/src/mage/sets/eternalmasters/WindScarredCrag.java
new file mode 100644
index 00000000000..88a148d3ccf
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WindScarredCrag.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WindScarredCrag extends mage.sets.khansoftarkir.WindScarredCrag {
+
+ public WindScarredCrag(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 249;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WindScarredCrag(final WindScarredCrag card) {
+ super(card);
+ }
+
+ @Override
+ public WindScarredCrag copy() {
+ return new WindScarredCrag(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/Wonder.java b/Mage.Sets/src/mage/sets/eternalmasters/Wonder.java
new file mode 100644
index 00000000000..6a422e4f419
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/Wonder.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class Wonder extends mage.sets.judgment.Wonder {
+
+ public Wonder(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 77;
+ this.expansionSetCode = "EMA";
+ }
+
+ public Wonder(final Wonder card) {
+ super(card);
+ }
+
+ @Override
+ public Wonder copy() {
+ return new Wonder(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/WornPowerstone.java b/Mage.Sets/src/mage/sets/eternalmasters/WornPowerstone.java
new file mode 100644
index 00000000000..e9ec5a77e94
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/WornPowerstone.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class WornPowerstone extends mage.sets.urzassaga.WornPowerstone {
+
+ public WornPowerstone(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 235;
+ this.expansionSetCode = "EMA";
+ }
+
+ public WornPowerstone(final WornPowerstone card) {
+ super(card);
+ }
+
+ @Override
+ public WornPowerstone copy() {
+ return new WornPowerstone(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/XantidSwarm.java b/Mage.Sets/src/mage/sets/eternalmasters/XantidSwarm.java
new file mode 100644
index 00000000000..6781b8a80db
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/XantidSwarm.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class XantidSwarm extends mage.sets.scourge.XantidSwarm {
+
+ public XantidSwarm(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 193;
+ this.expansionSetCode = "EMA";
+ }
+
+ public XantidSwarm(final XantidSwarm card) {
+ super(card);
+ }
+
+ @Override
+ public XantidSwarm copy() {
+ return new XantidSwarm(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/YavimayaEnchantress.java b/Mage.Sets/src/mage/sets/eternalmasters/YavimayaEnchantress.java
new file mode 100644
index 00000000000..e7c4c75da17
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/YavimayaEnchantress.java
@@ -0,0 +1,55 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+import mage.constants.Rarity;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class YavimayaEnchantress extends mage.sets.tenthedition.YavimayaEnchantress {
+
+ public YavimayaEnchantress(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 194;
+ this.expansionSetCode = "EMA";
+ this.rarity = Rarity.COMMON;
+ }
+
+ public YavimayaEnchantress(final YavimayaEnchantress card) {
+ super(card);
+ }
+
+ @Override
+ public YavimayaEnchantress copy() {
+ return new YavimayaEnchantress(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/YoungPyromancer.java b/Mage.Sets/src/mage/sets/eternalmasters/YoungPyromancer.java
new file mode 100644
index 00000000000..e14e29e4022
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/YoungPyromancer.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class YoungPyromancer extends mage.sets.magic2014.YoungPyromancer {
+
+ public YoungPyromancer(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 155;
+ this.expansionSetCode = "EMA";
+ }
+
+ public YoungPyromancer(final YoungPyromancer card) {
+ super(card);
+ }
+
+ @Override
+ public YoungPyromancer copy() {
+ return new YoungPyromancer(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/eternalmasters/ZealousPersecution.java b/Mage.Sets/src/mage/sets/eternalmasters/ZealousPersecution.java
new file mode 100644
index 00000000000..3a32eb5cf86
--- /dev/null
+++ b/Mage.Sets/src/mage/sets/eternalmasters/ZealousPersecution.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.sets.eternalmasters;
+
+import java.util.UUID;
+
+/**
+ *
+ * @author spjspj
+
+ */
+public class ZealousPersecution extends mage.sets.alarareborn.ZealousPersecution {
+
+ public ZealousPersecution(UUID ownerId) {
+ super(ownerId);
+ this.cardNumber = 213;
+ this.expansionSetCode = "EMA";
+ }
+
+ public ZealousPersecution(final ZealousPersecution card) {
+ super(card);
+ }
+
+ @Override
+ public ZealousPersecution copy() {
+ return new ZealousPersecution(this);
+ }
+}
diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt
index 3bc068aadf9..6c71097c3bc 100644
--- a/Utils/mtg-cards-data.txt
+++ b/Utils/mtg-cards-data.txt
@@ -57106,24 +57106,190 @@ Isochron Scepter|Eternal Masters|223|R|{2}|Artifact|||Imprint � When Isochron
Mana Crypt|Eternal Masters|225|M|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${tap}: Add {C}{C} to your mana pool.|
Nevinyrral's Disk|Eternal Masters|228|R|{4}|Artifact|||Nevinyrral's Disk enters the battlefield tapped.${1}, {T}: Destroy all artifacts, creatures, and enchantments.|
Sensei's Divining Top|Eternal Masters|232|R|{1}|Artifact|||{1}: Look at the top three cards of your library, then put them back in any order.${tap}: Draw a card, then put Sensei's Divining Top on top of its owner's library.|
-Winter Orb|Eternal Masters|234|R
Karakas|Eternal Masters|240|M||Legendary Land|||{tap}: Add {W} to your mana pool.${tap}: Return target legendary creature to its owner's hand.|
Maze of Ith|Eternal Masters|241|R||Land|||{T}: Untap target attacking creature. Prevent all combat damage that would be dealt to and dealt by that creature this turn.|
Mishra's Factory|Eternal Masters|242|U||Land|||{tap}: Add {C} to your mana pool.${1}: Mishra's Factory becomes a 2/2 Assembly-Worker artifact creature until end of turn. It's still a land.${tap}: Target Assembly-Worker creature gets +1/+1 until end of turn.|
Wasteland|Eternal Masters|248|R||Land|||{T}: Add {C} to your mana pool.${T}, Sacrifice Wasteland: Destroy target nonbasic land.|
+Abundant Growth|Eternal Masters|156|C|{G}|Enchantment - Aura|||Enchant land$When Abundant Growth enters the battlefield, draw a card.$Enchanted land has "{tap}: Add one mana of any color to your mana pool."|
+Annihilate|Eternal Masters|79|U|{3}{B}{B}|Instant|||Destroy target nonblack creature. It can't be regenerated.$Draw a card.|
+Arcanis the Omnipotent|Eternal Masters|39|R|{3}{U}{U}{U}|Legendary Creature - Wizard|3|4|{tap}: Draw three cards.${2}{U}{U}: Return Arcanis the Omnipotent to its owner's hand.|
+Armadillo Cloak|Eternal Masters|195|U|{1}{G}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has trample.$Whenever enchanted creature deals damage, you gain that much life.|
+Avarax|Eternal Masters|117|U|{3}{R}{R}|Creature - Beast|3|3|Haste$When Avarax enters the battlefield, you may search your library for a card named Avarax, reveal it, and put it into your hand. If you do, shuffle your library.${1}{R}: Avarax gets +1/+0 until end of turn.|
+Aven Riftwatcher|Eternal Masters|1|C|{2}{W}|Creature - Bird Rebel Soldier|2|3|Flying$Vanishing 3 (This permanent enters the battlefield with three time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)$When Aven Riftwatcher enters the battlefield or leaves the battlefield, you gain 2 life.|
+Balance|Eternal Masters|2|M|{1}{W}|Sorcery|||Each player chooses a number of lands he or she controls equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players discard cards and sacrifice creatures the same way.|
+Ballynock Cohort|Eternal Masters|3|C|{2}{W}|Creature - Kithkin Soldier|2|2|First strike$Ballynock Cohort gets +1/+1 as long as you control another white creature.|
+Battle Squadron|Eternal Masters|118|U|{3}{R}{R}|Creature - Goblin|*|*|Flying$Battle Squadron's power and toughness are each equal to the number of creatures you control.|
+Beetleback Chief|Eternal Masters|119|U|{2}{R}{R}|Creature - Goblin Warrior|2|2|When Beetleback Chief enters the battlefield, put two 1/1 red Goblin creature tokens onto the battlefield.|
+Benevolent Bodyguard|Eternal Masters|4|C|{W}|Creature - Human Cleric|1|1|Sacrifice Benevolent Bodyguard: Target creature you control gains protection from the color of your choice until end of turn.|
+Blightsoil Druid|Eternal Masters|80|C|{1}{B}|Creature - Elf Druid|1|2|{tap}, Pay 1 life: Add {G} to your mana pool.|
+Blood Artist|Eternal Masters|81|U|{1}{B}|Creature - Vampire|0|1|Whenever Blood Artist or another creature dies, target player loses 1 life and you gain 1 life.|
+Bloodfell Caves|Eternal Masters|236|C||Land|||Bloodfell Caves enters the battlefield tapped.$When Bloodfell Caves enters the battlefield, you gain 1 life.${tap}: Add {B} or {R} to your mana pool.|
+Blossoming Sands|Eternal Masters|237|C||Land|||Blossoming Sands enters the battlefield tapped.$When Blossoming Sands enters the battlefield, you gain 1 life.${tap}: Add {G} or {W} to your mana pool.|
+Borderland Marauder|Eternal Masters|120|C|{1}{R}|Creature - Human Warrior|1|2|Whenever Borderland Marauder attacks, it gets +2/+0 until end of turn.|
+Brago, King Eternal|Eternal Masters|198|R|{2}{W}{U}|Legendary Creature - Spirit|2|4|Flying$When Brago, King Eternal deals combat damage to a player, exile any number of target nonland permanents you control, then return those cards to the battlefield under their owner's control.|
+Braids, Cabal Minion|Eternal Masters|82|R|{2}{B}{B}|Legendary Creature - Human Minion|2|2|At the beginning of each player's upkeep, that player sacrifices an artifact, creature, or land.|
+Brawn|Eternal Masters|159|U|{3}{G}|Creature - Incarnation|3|3|Trample$As long as Brawn is in your graveyard and you control a Forest, creatures you control have trample.|
+Calciderm|Eternal Masters|5|U|{2}{W}{W}|Creature - Beast|5|5|Shroud (This creature can't be the target of spells or abilities.)$Vanishing 4 (This permanent enters the battlefield with four time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)|
+Carrion Feeder|Eternal Masters|84|C|{B}|Creature - Zombie|1|1|Carrion Feeder can't block.$Sacrifice a creature: Put a +1/+1 counter on Carrion Feeder.|
+Centaur Chieftain|Eternal Masters|160|U|{3}{G}|Creature - Centaur|3|3|Haste$Threshold - As long as seven or more cards are in your graveyard, Centaur Chieftain has "When Centaur Chieftain enters the battlefield, creatures you control get +1/+1 and gain trample until end of turn."|
+Cephalid Sage|Eternal Masters|41|U|{3}{U}|Creature - Cephalid|2|3|Threshold - As long as seven or more cards are in your graveyard, Cephalid Sage has "When Cephalid Sage enters the battlefield, draw three cards, then discard two cards."|
+Civic Wayfinder|Eternal Masters|161|C|{2}{G}|Creature - Elf Warrior Druid|2|2|When Civic Wayfinder enters the battlefield, you may search your library for a basic land card, reveal it, and put it into your hand. If you do, shuffle your library.|
+Coalition Honor Guard|Eternal Masters|6|C|{3}{W}|Creature - Human Flagbearer|2|4|While choosing targets as part of casting a spell or activating an ability, your opponents must choose at least one Flagbearer on the battlefield if able.|
+Commune with the Gods|Eternal Masters|162|C|{1}{G}|Sorcery|||Reveal the top five cards of your library. You may put a creature or enchantment card from among them into your hand. Put the rest into your graveyard.|
+Crater Hellion|Eternal Masters|124|R|{4}{R}{R}|Creature - Hellion Beast|6|6|Echo {4}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Crater Hellion enters the battlefield, it deals 4 damage to each other creature.|
+Deadbridge Shaman|Eternal Masters|85|C|{2}{B}|Creature - Elf Shaman|3|1|When Deadbridge Shaman dies, target opponent discards a card.|
+Deep Analysis|Eternal Masters|45|C|{3}{U}|Sorcery|||Target player draws two cards.$Flashback-{1}{U}, Pay 3 life. (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Desperate Ravings|Eternal Masters|125|U|{1}{R}|Instant|||Draw two cards, then discard a card at random.$Flashback {2}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Dismal Backwater|Eternal Masters|238|C||Land|||Dismal Backwater enters the battlefield tapped.$When Dismal Backwater enters the battlefield, you gain 1 life.${tap}: Add {U} or {B} to your mana pool.|
+Dragon Egg|Eternal Masters|126|U|{2}{R}|Creature - Dragon|0|2|Defender$When Dragon Egg dies, put a 2/2 red Dragon creature token with flying onto the battlefield. It has "{R}: This creature gets +1/+0 until end of turn".|
+Dream Twist|Eternal Masters|47|C|{U}|Instant|||Target player puts the top three cards of his or her library into his or her graveyard.$Flashback {1}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Duplicant|Eternal Masters|220|R|{6}|Artifact Creature - Shapeshifter|2|4|Imprint - When Duplicant enters the battlefield, you may exile target nontoken creature.$As long as the exiled card is a creature card, Duplicant has that card's power, toughness, and creature types. It's still a Shapeshifter.|
+Duress|Eternal Masters|86|C|{B}|Sorcery|||Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.|
+Eight-and-a-Half-Tails|Eternal Masters|7|R|{W}{W}|Legendary Creature - Fox Cleric|2|2|{1}{W}: Target permanent you control gains protection from white until end of turn.${1}: Target spell or permanent becomes white until end of turn.|
+Elephant Guide|Eternal Masters|163|C|{2}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3.$When enchanted creature dies, put a 3/3 green Elephant creature token onto the battlefield.|
+Elite Vanguard|Eternal Masters|8|U|{W}|Creature - Human Soldier|2|1||
+Elvish Vanguard|Eternal Masters|164|R|{1}{G}|Creature - Elf Warrior|1|1|Whenever another Elf enters the battlefield, put a +1/+1 counter on Elvish Vanguard.|
+Emmessi Tome|Eternal Masters|221|U|{4}|Artifact|||{5}, {tap}: Draw two cards, then discard a card.|
+Extract from Darkness|Eternal Masters|200|U|{3}{U}{B}|Sorcery|||Each player puts the top two cards of his or her library into his or her graveyard. Then put a creature card from a graveyard onto the battlefield under your control.|
+Eyeblight's Ending|Eternal Masters|88|C|{2}{B}|Tribal Instant - Elf|||Destroy target non-Elf creature.|
+Fact or Fiction|Eternal Masters|48|U|{3}{U}|Instant|||Reveal the top five cards of your library. An opponent separates those cards into two piles. Put one pile into your hand and the other into your graveyard.|
+Faith's Fetters|Eternal Masters|10|U|{3}{W}|Enchantment - Aura|||Enchant permanent$When Faith's Fetters enters the battlefield, you gain 4 life.$Enchanted permanent's activated abilities can't be activated unless they're mana abilities. If enchanted permanent is a creature, it can't attack or block.|
+Faithless Looting|Eternal Masters|128|C|{R}|Sorcery|||Draw two cards, then discard two cards.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Fervent Cathar|Eternal Masters|129|C|{2}{R}|Creature - Human Knight|2|1|Haste$When Fervent Cathar enters the battlefield, target creature can't block this turn.|
+Field of Souls|Eternal Masters|11|R|{2}{W}{W}|Enchantment|||Whenever a nontoken creature is put into your graveyard from the battlefield, put a 1/1 white Spirit creature token with flying onto the battlefield.|
+Flame Jab|Eternal Masters|131|U|{R}|Sorcery|||Flame Jab deals 1 damage to target creature or player.$Retrace (You may cast this card from your graveyard by discarding a land card in addition to paying its other costs.)|
+Flame-Kin Zealot|Eternal Masters|201|U|{1}{R}{R}{W}|Creature - Elemental Berserker|2|2|When Flame-Kin Zealot enters the battlefield, creatures you control get +1/+1 and gain haste until end of turn.|
+Flinthoof Boar|Eternal Masters|166|U|{1}{G}|Creature - Boar|2|2|Flinthoof Boar gets +1/+1 as long as you control a Mountain.${R}: Flinthoof Boar gains haste until end of turn. (It can attack and {tap} this turn.)|
+Fog|Eternal Masters|167|C|{G}|Instant|||Prevent all combat damage that would be dealt this turn.|
+Future Sight|Eternal Masters|50|R|{2}{U}{U}{U}|Enchantment|||Play with the top card of your library revealed.$You may play the top card of your library.|
+Gaseous Form|Eternal Masters|51|C|{2}{U}|Enchantment - Aura|||Enchant creature$Prevent all combat damage that would be dealt to and dealt by enchanted creature.|
+Ghitu Slinger|Eternal Masters|133|U|{2}{R}|Creature - Human Nomad|2|2|Echo {2}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Ghitu Slinger enters the battlefield, it deals 2 damage to target creature or player.|
+Glacial Wall|Eternal Masters|53|U|{2}{U}|Creature - Wall|0|7|Defender (This creature can't attack.)|
+Glare of Subdual|Eternal Masters|202|R|{2}{G}{W}|Enchantment|||Tap an untapped creature you control: Tap target artifact or creature.|
+Glimmerpoint Stag|Eternal Masters|12|U|{2}{W}{W}|Creature - Elk|3|3|Vigilance$When Glimmerpoint Stag enters the battlefield, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.|
+Gravedigger|Eternal Masters|89|C|{3}{B}|Creature - Zombie|2|2|When Gravedigger enters the battlefield, you may return target creature card from your graveyard to your hand.|
+Harmonize|Eternal Masters|170|U|{2}{G}{G}|Sorcery|||Draw three cards.|
+Havoc Demon|Eternal Masters|90|U|{5}{B}{B}|Creature - Demon|5|5|Flying$When Havoc Demon dies, all creatures get -5/-5 until end of turn.|
+Heritage Druid|Eternal Masters|171|R|{G}|Creature - Elf Druid|1|1|Tap three untapped Elves you control: Add {G}{G}{G} to your mana pool.|
+Honden of Cleansing Fire|Eternal Masters|13|U|{3}{W}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, you gain 2 life for each Shrine you control.|
+Honden of Infinite Rage|Eternal Masters|134|U|{2}{R}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, Honden of Infinite Rage deals damage to target creature or player equal to the number of Shrines you control.|
+Honden of Life's Web|Eternal Masters|172|U|{4}{G}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, put a 1/1 colorless Spirit creature token onto the battlefield for each Shrine you control.|
+Honden of Night's Reach|Eternal Masters|91|U|{3}{B}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, target opponent discards a card for each Shrine you control.|
+Honden of Seeing Winds|Eternal Masters|54|U|{4}{U}|Legendary Enchantment - Shrine|||At the beginning of your upkeep, draw a card for each Shrine you control.|
+Humble|Eternal Masters|14|U|{1}{W}|Instant|||Target creature loses all abilities and becomes 0/1 until end of turn.|
+Imperious Perfect|Eternal Masters|173|R|{2}{G}|Creature - Elf Warrior|2|2|Other Elf creatures you control get +1/+1.${G}, {tap}: Put a 1/1 green Elf Warrior creature token onto the battlefield.|
+Inkwell Leviathan|Eternal Masters|56|R|{7}{U}{U}|Artifact Creature - Leviathan|7|11|Islandwalk, trample$Shroud (This creature can't be the target of spells or abilities.)|
+Intangible Virtue|Eternal Masters|15|U|{1}{W}|Enchantment|||Creature tokens you control get +1/+1 and have vigilance.|
+Invigorate|Eternal Masters|174|U|{2}{G}|Instant|||If you control a Forest, rather than pay Invigorate's mana cost, you may have an opponent gain 3 life.$Target creature gets +4/+4 until end of turn.|
+Jareth, Leonine Titan|Eternal Masters|16|R|{3}{W}{W}{W}|Legendary Creature - Cat Giant|4|7|Whenever Jareth, Leonine Titan blocks, it gets +7/+7 until end of turn.${W}: Jareth gains protection from the color of your choice until end of turn.|
+Jetting Glasskite|Eternal Masters|58|U|{4}{U}{U}|Creature - Spirit|4|4|Flying$Whenever Jetting Glasskite becomes the target of a spell or ability for the first time in a turn, counter that spell or ability.|
+Juggernaut|Eternal Masters|224|U|{4}|Artifact Creature - Juggernaut|5|3|Juggernaut attacks each turn if able.$Juggernaut can't be blocked by Walls.|
+Jungle Hollow|Eternal Masters|239|C||Land|||Jungle Hollow enters the battlefield tapped.$When Jungle Hollow enters the battlefield, you gain 1 life.${tap}: Add {B} or {G} to your mana pool.|
+Keldon Champion|Eternal Masters|135|U|{2}{R}{R}|Creature - Human Barbarian|3|2|Haste$Echo {2}{R}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Keldon Champion enters the battlefield, it deals 3 damage to target player.|
+Keldon Marauders|Eternal Masters|136|C|{1}{R}|Creature - Human Warrior|3|3|Vanishing 2 (This permanent enters the battlefield with two time counters on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.)$When Keldon Marauders enters the battlefield or leaves the battlefield, it deals 1 damage to target player.|
+Kird Ape|Eternal Masters|137|C|{R}|Creature - Ape|1|1|Kird Ape gets +1/+2 as long as you control a Forest.|
+Kor Hookmaster|Eternal Masters|18|C|{2}{W}|Creature - Kor Soldier|2|2|When Kor Hookmaster enters the battlefield, tap target creature an opponent controls. That creature doesn't untap during its controller's next untap step.|
+Llanowar Elves|Eternal Masters|175|C|{G}|Creature - Elf Druid|1|1|{T}: Add {G} to your mana pool.|
+Lys Alana Huntmaster|Eternal Masters|176|C|{2}{G}{G}|Creature - Elf Warrior|3|3|Whenever you cast an Elf spell, you may put a 1/1 green Elf Warrior creature token onto the battlefield.|
+Lys Alana Scarblade|Eternal Masters|95|U|{2}{B}|Creature - Elf Assassin|1|1|{tap}, Discard an Elf card: Target creature gets -X/-X until end of turn, where X is the number of Elves you control.|
+Malicious Affliction|Eternal Masters|96|R|{B}{B}|Instant|||Morbid - When you cast Malicious Affliction, if a creature died this turn, you may copy Malicious Affliction and may choose a new target for the copy.$Destroy target nonblack creature.|
+Memory Lapse|Eternal Masters|60|C|{1}{U}|Instant|||Counter target spell. If that spell is countered this way, put it on top of its owner's library instead of into that player's graveyard.|
+Merfolk Looter|Eternal Masters|61|C|{1}{U}|Creature - Merfolk Rogue|1|1|{tap}: Draw a card, then discard a card.|
+Millikin|Eternal Masters|226|U|{2}|Artifact Creature - Construct|0|1|{tap}, Put the top card of your library into your graveyard: Add {C} to your mana pool.|
+Mindless Automaton|Eternal Masters|227|U|{4}|Artifact Creature - Construct|0|0|Mindless Automaton enters the battlefield with two +1/+1 counters on it.${1}, Discard a card: Put a +1/+1 counter on Mindless Automaton.$Remove two +1/+1 counters from Mindless Automaton: Draw a card.|
+Mistral Charger|Eternal Masters|20|U|{1}{W}|Creature - Pegasus|2|1|Flying|
+Mogg Fanatic|Eternal Masters|138|C|{R}|Creature - Goblin|1|1|Sacrifice Mogg Fanatic: Mogg Fanatic deals 1 damage to target creature or player.|
+Mogg War Marshal|Eternal Masters|139|C|{1}{R}|Creature - Goblin Warrior|1|1|Echo {1}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Mogg War Marshal enters the battlefield or dies, put a 1/1 red Goblin creature token onto the battlefield.|
+Monk Idealist|Eternal Masters|21|U|{2}{W}|Creature - Human Monk Cleric|2|2|When Monk Idealist enters the battlefield, return target enchantment card from your graveyard to your hand.|
+Nature's Claim|Eternal Masters|178|C|{G}|Instant|||Destroy target artifact or enchantment. Its controller gains 4 life.|
+Nekrataal|Eternal Masters|99|U|{2}{B}{B}|Creature - Human Assassin|2|1|First strike (This creature deals combat damage before creatures without first strike.)$When Nekrataal enters the battlefield, destroy target nonartifact, nonblack creature. That creature can't be regenerated.|
+Night's Whisper|Eternal Masters|100|U|{1}{B}|Sorcery|||You draw two cards and you lose 2 life.|
+Orcish Oriflamme|Eternal Masters|140|U|{3}{R}|Enchantment|||Attacking creatures you control get +1/+0.|
+Pacifism|Eternal Masters|23|C|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.|
+Peregrine Drake|Eternal Masters|64|U|{4}{U}|Creature - Drake|2|3|Flying$When Peregrine Drake enters the battlefield, untap up to five lands.|
+Phantom Monster|Eternal Masters|65|U|{3}{U}|Creature - Illusion|3|3|Flying|
+Phyrexian Gargantua|Eternal Masters|101|U|{4}{B}{B}|Creature - Horror|4|4|When Phyrexian Gargantua enters the battlefield, you draw two cards and you lose 2 life.|
+Phyrexian Ingester|Eternal Masters|66|U|{6}{U}|Creature - Beast|3|3|Imprint - When Phyrexian Ingester enters the battlefield, you may exile target nontoken creature.$Phyrexian Ingester gets +X/+Y, where X is the exiled creature card's power and Y is its toughness.|
+Phyrexian Rager|Eternal Masters|102|C|{2}{B}|Creature - Horror|2|2|When Phyrexian Rager enters the battlefield, you draw a card and you lose 1 life.|
+Pilgrim's Eye|Eternal Masters|229|C|{3}|Artifact Creature - Thopter|1|1|Flying$When Pilgrim's Eye enters the battlefield, you may search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.|
+Plague Witch|Eternal Masters|103|C|{1}{B}|Creature - Elf Spellshaper|1|1|{B}, {tap}, Discard a card: Target creature gets -1/-1 until end of turn.|
+Prismatic Lens|Eternal Masters|230|U|{2}|Artifact|||{tap}: Add {C} to your mana pool.${1}, {tap}: Add one mana of any color to your mana pool.|
+Prowling Pangolin|Eternal Masters|104|U|{3}{B}{B}|Creature - Beast|6|5|When Prowling Pangolin enters the battlefield, any player may sacrifice two creatures. If a player does, sacrifice Prowling Pangolin.|
+Pyrokinesis|Eternal Masters|143|R|{4}{R}{R}|Instant|||You may exile a red card from your hand rather than pay Pyrokinesis's mana cost.$Pyrokinesis deals 4 damage divided as you choose among any number of target creatures.|
+Raise the Alarm|Eternal Masters|24|C|{1}{W}|Instant|||Put two 1/1 white Soldier creature tokens onto the battlefield.|
+Rally the Peasants|Eternal Masters|25|U|{2}{W}|Instant|||Creatures you control get +2/+0 until end of turn.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Rancor|Eternal Masters|180|U|{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+0 and has trample.$When Rancor is put into a graveyard from the battlefield, return Rancor to its owner's hand.|
+Reckless Charge|Eternal Masters|144|C|{R}|Sorcery|||Target creature gets +3/+0 and gains haste until end of turn.$Flashback {2}{R} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Relic of Progenitus|Eternal Masters|231|U|{1}|Artifact|||{tap}: Target player exiles a card from his or her graveyard.${1}, Exile Relic of Progenitus: Exile all cards from all graveyards. Draw a card.|
+Roar of the Wurm|Eternal Masters|182|U|{6}{G}|Sorcery|||Put a 6/6 green Wurm creature token onto the battlefield.$Flashback {3}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Roots|Eternal Masters|183|C|{3}{G}|Enchantment - Aura|||Enchant creature without flying$When Roots enters the battlefield, tap enchanted creature.$Enchanted creature doesn't untap during its controller's untap step.|
+Rugged Highlands|Eternal Masters|243|C||Land|||Rugged Highlands enters the battlefield tapped.$When Rugged Highlands enters the battlefield, you gain 1 life.${tap}: Add {R} or {G} to your mana pool.|
+Scoured Barrens|Eternal Masters|244|C||Land|||Scoured Barrens enters the battlefield tapped.$When Scoured Barrens enters the battlefield, you gain 1 life.${tap}: Add {W} or {B} to your mana pool.|
+Screeching Skaab|Eternal Masters|69|C|{1}{U}|Creature - Zombie|2|1|When Screeching Skaab enters the battlefield, put the top two cards of your library into your graveyard.|
+Seal of Cleansing|Eternal Masters|26|C|{1}{W}|Enchantment|||Sacrifice Seal of Cleansing: Destroy target artifact or enchantment.|
+Seal of Strength|Eternal Masters|184|C|{G}|Enchantment|||Sacrifice Seal of Strength: Target creature gets +3/+3 until end of turn.|
+Second Thoughts|Eternal Masters|27|C|{4}{W}|Instant|||Exile target attacking creature.$Draw a card.|
+Seismic Stomp|Eternal Masters|146|C|{1}{R}|Sorcery|||Creatures without flying can't block this turn.|
+Sentinel Spider|Eternal Masters|185|C|{3}{G}{G}|Creature - Spider|4|4|Vigilance (Attacking doesn't cause this creature to tap.)$Reach (This creature can block creatures with flying.)|
+Serendib Efreet|Eternal Masters|70|R|{2}{U}|Creature - Efreet|3|4|Flying$At the beginning of your upkeep, Serendib Efreet deals 1 damage to you.|
+Serra Angel|Eternal Masters|28|U|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
+Shelter|Eternal Masters|29|C|{1}{W}|Instant|||Target creature you control gains protection from the color of your choice until end of turn.$$Draw a card.|
+Shoreline Ranger|Eternal Masters|71|C|{5}{U}|Creature - Bird Soldier|3|4|Flying$Islandcycling {2} ({2}, Discard this card: Search your library for an Island card, reveal it, and put it into your hand. Then shuffle your library.)|
+Siege-Gang Commander|Eternal Masters|147|R|{3}{R}{R}|Creature - Goblin|2|2|When Siege-Gang Commander enters the battlefield, put three 1/1 red Goblin creature tokens onto the battlefield.${1}{R}, Sacrifice a Goblin: Siege-Gang Commander deals 2 damage to target creature or player.|
+Silent Departure|Eternal Masters|72|C|{U}|Sorcery|||Return target creature to its owner's hand.$Flashback {4}{U} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Silvos, Rogue Elemental|Eternal Masters|186|R|{3}{G}{G}{G}|Legendary Creature - Elemental|8|5|Trample${G}: Regenerate Silvos, Rogue Elemental.|
+Skulking Ghost|Eternal Masters|107|C|{1}{B}|Creature - Spirit|2|1|Flying$When Skulking Ghost becomes the target of a spell or ability, sacrifice it.|
+Soulcatcher|Eternal Masters|30|U|{1}{W}|Creature - Bird Soldier|1|1|Flying$Whenever a creature with flying dies, put a +1/+1 counter on Soulcatcher.|
+Sphinx of the Steel Wind|Eternal Masters|207|M|{5}{W}{U}{B}|Artifact Creature - Sphinx|6|6|Flying, first strike, vigilance, lifelink, protection from red and from green|
+Sprite Noble|Eternal Masters|73|U|{1}{U}{U}|Creature - Faerie|2|2|Flying$Other creatures you control with flying get +0/+1.${tap}: Other creatures you control with flying get +1/+0 until end of turn.|
+Stingscourger|Eternal Masters|149|C|{1}{R}|Creature - Goblin Warrior|2|2|Echo {3}{R} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$When Stingscourger enters the battlefield, return target creature an opponent controls to its owner's hand.|
+Stupefying Touch|Eternal Masters|74|U|{1}{U}|Enchantment - Aura|||Enchant creature$When Stupefying Touch enters the battlefield, draw a card.$Enchanted creature's activated abilities can't be activated.|
+Swiftwater Cliffs|Eternal Masters|245|C||Land|||Swiftwater Cliffs enters the battlefield tapped.$When Swiftwater Cliffs enters the battlefield, you gain 1 life.${tap}: Add {U} or {R} to your mana pool.|
+Sylvan Might|Eternal Masters|188|C|{1}{G}|Instant|||Target creature gets +2/+2 and gains trample until end of turn.$Flashback {2}{G}{G} (You may cast this card from your graveyard for its flashback cost. Then exile it.)|
+Thornweald Archer|Eternal Masters|189|C|{1}{G}|Creature - Elf Archer|2|1|Reach (This creature can block creatures with flying.)$Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)|
+Thornwood Falls|Eternal Masters|246|C||Land|||Thornwood Falls enters the battlefield tapped.$When Thornwood Falls enters the battlefield, you gain 1 life.${tap}: Add {G} or {U} to your mana pool.|
+Thunderclap Wyvern|Eternal Masters|208|U|{2}{W}{U}|Creature - Drake|2|3|Flash$Flying$Other creatures you control with flying get +1/+1.|
+Ticking Gnomes|Eternal Masters|233|U|{3}|Artifact Creature - Gnome|3|3|Echo {3} (At the beginning of your upkeep, if this came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.)$Sacrifice Ticking Gnomes: Ticking Gnomes deals 1 damage to target creature or player.|
+Tidal Wave|Eternal Masters|75|U|{2}{U}|Instant|||Put a 5/5 blue Wall creature token with defender onto the battlefield. Sacrifice it at the beginning of the next end step.|
+Tooth and Claw|Eternal Masters|151|U|{3}{R}|Enchantment|||Sacrifice two creatures: Put a 3/1 red Beast creature token named Carnivore onto the battlefield.|
+Torrent of Souls|Eternal Masters|217|U|{4}{BR}|Sorcery|||Return up to one target creature card from your graveyard to the battlefield if {B} was spent to cast Torrent of Souls. Creatures target player controls get +2/+0 and gain haste until end of turn if {R} was spent to cast Torrent of Souls. (Do both if {B}{R} was spent.)|
+Tragic Slip|Eternal Masters|109|C|{B}|Instant|||Target creature gets -1/-1 until end of turn.$Morbid - That creature gets -13/-13 until end of turn instead if a creature died this turn.|
+Tranquil Cove|Eternal Masters|247|C||Land|||Tranquil Cove enters the battlefield tapped.$When Tranquil Cove enters the battlefield, you gain 1 life.${tap}: Add {W} or {U} to your mana pool.|
+Trygon Predator|Eternal Masters|209|U|{1}{G}{U}|Creature - Beast|2|3|Flying$Whenever Trygon Predator deals combat damage to a player, you may destroy target artifact or enchantment that player controls.|
+Twisted Abomination|Eternal Masters|110|C|{5}{B}|Creature - Zombie Mutant|5|3|{B}: Regenerate Twisted Abomination.$Swampcycling {2} ({2}, Discard this card: Search your library for a Swamp card, reveal it, and put it into your hand. Then shuffle your library.)|
+Undying Rage|Eternal Masters|152|U|{2}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and can't block.$When Undying Rage is put into a graveyard from the battlefield, return Undying Rage to its owner's hand.|
+Urborg Uprising|Eternal Masters|111|C|{4}{B}|Sorcery|||Return up to two target creature cards from your graveyard to your hand.$$Draw a card.|
+Victimize|Eternal Masters|113|U|{2}{B}|Sorcery|||Choose two target creature cards in your graveyard. Sacrifice a creature. If you do, return the chosen cards to the battlefield tapped.|
+Visara the Dreadful|Eternal Masters|114|R|{3}{B}{B}{B}|Legendary Creature - Gorgon|5|5|Flying${tap}: Destroy target creature. It can't be regenerated.|
+Wake of Vultures|Eternal Masters|115|C|{3}{B}|Creature - Bird|3|1|Flying${1}{B}, Sacrifice a creature: Regenerate Wake of Vultures.|
+Wakedancer|Eternal Masters|116|C|{2}{B}|Creature - Human Shaman|2|2|Morbid - When Wakedancer enters the battlefield, if a creature died this turn, put a 2/2 black Zombie creature token onto the battlefield.|
+Wall of Omens|Eternal Masters|34|U|{1}{W}|Creature - Wall|0|4|Defender$When Wall of Omens enters the battlefield, draw a card.|
+War Priest of Thune|Eternal Masters|35|U|{1}{W}|Creature - Human Cleric|2|2|When War Priest of Thune enters the battlefield, you may destroy target enchantment.|
+Warden of Evos Isle|Eternal Masters|76|U|{2}{U}|Creature - Bird Wizard|2|2|Flying$Creature spells with flying you cast cost {1} less to cast.|
+Wasteland|Eternal Masters|248|R||Land|||{T}: Add {C} to your mana pool.${T}, Sacrifice Wasteland: Destroy target nonbasic land.|
+Welkin Guide|Eternal Masters|36|C|{4}{W}|Creature - Bird Cleric|2|2|Flying$When Welkin Guide enters the battlefield, target creature gets +2/+2 and gains flying until end of turn.|
+Whitemane Lion|Eternal Masters|37|C|{1}{W}|Creature - Cat|2|2|Flash (You may cast this spell any time you could cast an instant.)$When Whitemane Lion enters the battlefield, return a creature you control to its owner's hand.|
+Wind-Scarred Crag|Eternal Masters|249|C||Land|||Wind-Scarred Crag enters the battlefield tapped.$When Wind-Scarred Crag enters the battlefield, you gain 1 life.${tap}: Add {R} or {W} to your mana pool.|
+Winter Orb|Eternal Masters|234|R|{2}|Artifact|||As long as Winter Orb is untapped, players can't untap more than one land during their untap steps.|
+Wonder|Eternal Masters|77|U|{3}{U}|Creature - Incarnation|2|2|Flying$As long as Wonder is in your graveyard and you control an Island, creatures you control have flying.|
+Worn Powerstone|Eternal Masters|235|U|{3}|Artifact|||Worn Powerstone enters the battlefield tapped.${tap}: Add {C}{C} to your mana pool.|
+Xantid Swarm|Eternal Masters|193|R|{G}|Creature - Insect|0|1|Flying$Whenever Xantid Swarm attacks, defending player can't cast spells this turn.|
+Yavimaya Enchantress|Eternal Masters|194|C|{2}{G}|Creature - Human Druid|2|2|Yavimaya Enchantress gets +1/+1 for each enchantment on the battlefield.|
+Young Pyromancer|Eternal Masters|155|U|{1}{R}|Creature - Human Shaman|2|1|Whenever you cast an instant or sorcery spell, put a 1/1 red Elemental creature token onto the battlefield.|
+Zealous Persecution|Eternal Masters|213|U|{W}{B}|Instant|||Until end of turn, creatures you control get +1/+1 and creatures your opponents control get -1/-1.|
Aegis Angel|Welcome Deck 2016|1|R|{4}{W}{W}|Creature - Angel|5|5|Flying$When Aegis Angel enters the battlefield, another target creature gains indestructible for as long as you control Aegis Angel.|
-Marked by Honor|Welcome Deck 2016|2|C|{3}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has vigilance.|
-Serra Angel|Welcome Deck 2016|3|R|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
Air Servant|Welcome Deck 2016|4|U|{4}{U}|Creature - Elemental|4|3|Flying${2}{U}: Tap target creature with flying.|
-Disperse|Welcome Deck 2016|5|C|{1}{U}|Instant|||Return target nonland permanent to its owner's hand.|
-Sphinx of Magosi|Welcome Deck 2016|6|R|{3}{U}{U}{U}|Creature - Sphinx|6|6|Flying${2}{U}: Draw a card, then put a +1/+1 counter on Sphinx of Magosi.|
-Mind Rot|Welcome Deck 2016|7|C|{2}{B}|Sorcery|||Target player discards two cards.|
-Nightmare|Welcome Deck 2016|8|R|{5}{B}|Creature - Nightmare Horse|*|*|Flying$Nightmare's power and toughness are each equal to the number of Swamps you control.|
-Sengir Vampire|Welcome Deck 2016|9|U|{3}{B}{B}|Creature - Vampire|4|4|Flying$Whenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.|
-Walking Corpse|Welcome Deck 2016|10|C|{1}{B}|Creature - Zombie|2|2||
Borderland Marauder|Welcome Deck 2016|11|C|{1}{R}|Creature - Human Warrior|1|2|Whenever Borderland Marauder attacks, it gets +2/+0 until end of turn.|
Cone of Flame|Welcome Deck 2016|12|U|{3}{R}{R}|Sorcery|||Cone of Flame deals 1 damage to target creature or player, 2 damage to another target creature or player, and 3 damage to a third target creature or player.|
-Shivan Dragon|Welcome Deck 2016|13|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
+Disperse|Welcome Deck 2016|5|C|{1}{U}|Instant|||Return target nonland permanent to its owner's hand.|
Incremental Growth|Welcome Deck 2016|14|U|{3}{G}{G}|Sorcery|||Put a +1/+1 counter on target creature, two +1/+1 counters on another target creature, and three +1/+1 counters on a third target creature.|
+Marked by Honor|Welcome Deck 2016|2|C|{3}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2 and has vigilance.|
+Mind Rot|Welcome Deck 2016|7|C|{2}{B}|Sorcery|||Target player discards two cards.|
+Nightmare|Welcome Deck 2016|8|R|{5}{B}|Creature - Nightmare Horse|*|*|Flying$Nightmare's power and toughness are each equal to the number of Swamps you control.|
Oakenform|Welcome Deck 2016|15|C|{2}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3.|
+Sengir Vampire|Welcome Deck 2016|9|U|{3}{B}{B}|Creature - Vampire|4|4|Flying$Whenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.|
+Serra Angel|Welcome Deck 2016|3|R|{3}{W}{W}|Creature - Angel|4|4|Flying$Vigilance (Attacking doesn't cause this creature to tap.)|
+Shivan Dragon|Welcome Deck 2016|13|R|{4}{R}{R}|Creature - Dragon|5|5|Flying${R}: Shivan Dragon gets +1/+0 until end of turn.|
Soul of the Harvest|Welcome Deck 2016|16|R|{4}{G}{G}|Creature - Elemental|6|6|Trample$Whenever another nontoken creature enters the battlefield under your control, you may draw a card.|
+Sphinx of Magosi|Welcome Deck 2016|6|R|{3}{U}{U}{U}|Creature - Sphinx|6|6|Flying${2}{U}: Draw a card, then put a +1/+1 counter on Sphinx of Magosi.|
+Walking Corpse|Welcome Deck 2016|10|C|{1}{B}|Creature - Zombie|2|2||