diff --git a/Mage.Sets/src/mage/cards/e/Epicenter.java b/Mage.Sets/src/mage/cards/e/Epicenter.java
new file mode 100644
index 00000000000..54ba912bc09
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/e/Epicenter.java
@@ -0,0 +1,107 @@
+/*
+ * 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.cards.e;
+
+import java.util.List;
+import java.util.UUID;
+import mage.abilities.Ability;
+import mage.abilities.condition.InvertCondition;
+import mage.abilities.condition.common.CardsInControllerGraveCondition;
+import mage.abilities.decorator.ConditionalOneShotEffect;
+import mage.abilities.effects.OneShotEffect;
+import mage.abilities.effects.common.SacrificeEffect;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.Outcome;
+import mage.filter.StaticFilters;
+import mage.game.Game;
+import mage.game.permanent.Permanent;
+import mage.target.TargetPlayer;
+
+/**
+ *
+ * @author TheElk801
+ */
+public class Epicenter extends CardImpl {
+
+ public Epicenter(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{R}");
+
+ // Target player sacrifices a land.
+ this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
+ new SacrificeEffect(StaticFilters.FILTER_LAND, 1, "Target player"),
+ new InvertCondition(new CardsInControllerGraveCondition(7)),
+ "Target player sacrifices a land"));
+ // Threshold - Each player sacrifices all lands he or she controls instead if seven or more cards are in your graveyard.
+ this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
+ new EpicenterEffect(),
+ new CardsInControllerGraveCondition(7),
+ "
Threshold - Each player sacrifices all lands he or she controls instead if seven or more cards are in your graveyard."));
+
+ this.getSpellAbility().addTarget(new TargetPlayer());
+ }
+
+ public Epicenter(final Epicenter card) {
+ super(card);
+ }
+
+ @Override
+ public Epicenter copy() {
+ return new Epicenter(this);
+ }
+}
+
+class EpicenterEffect extends OneShotEffect {
+
+ EpicenterEffect() {
+ super(Outcome.DestroyPermanent);
+ staticText = "Each player sacrifices all lands he or she controls";
+ }
+
+ EpicenterEffect(final EpicenterEffect effect) {
+ super(effect);
+ }
+
+ @Override
+ public boolean apply(Game game, Ability source) {
+ List permanents = game.getBattlefield().getActivePermanents(source.getControllerId(), game);
+ for (Permanent p : permanents) {
+ if (p.isLand()) {
+ p.sacrifice(source.getSourceId(), game);
+ }
+ }
+
+ return true;
+ }
+
+ @Override
+ public EpicenterEffect copy() {
+ return new EpicenterEffect(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/sets/Odyssey.java b/Mage.Sets/src/mage/sets/Odyssey.java
index 95a2a781028..5ae0522de03 100644
--- a/Mage.Sets/src/mage/sets/Odyssey.java
+++ b/Mage.Sets/src/mage/sets/Odyssey.java
@@ -155,6 +155,7 @@ public class Odyssey extends ExpansionSet {
cards.add(new SetCardInfo("Ember Beast", 190, Rarity.COMMON, mage.cards.e.EmberBeast.class));
cards.add(new SetCardInfo("Engulfing Flames", 191, Rarity.UNCOMMON, mage.cards.e.EngulfingFlames.class));
cards.add(new SetCardInfo("Entomb", 132, Rarity.RARE, mage.cards.e.Entomb.class));
+ cards.add(new SetCardInfo("Epicenter", 192, Rarity.RARE, mage.cards.e.Epicenter.class));
cards.add(new SetCardInfo("Escape Artist", 84, Rarity.COMMON, mage.cards.e.EscapeArtist.class));
cards.add(new SetCardInfo("Execute", 133, Rarity.UNCOMMON, mage.cards.e.Execute.class));
cards.add(new SetCardInfo("Extract", 85, Rarity.RARE, mage.cards.e.Extract.class));