diff --git a/forge-ai/pom.xml b/forge-ai/pom.xml index 73c7046402a..74b400846f2 100644 --- a/forge-ai/pom.xml +++ b/forge-ai/pom.xml @@ -6,7 +6,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-ai diff --git a/forge-ai/src/main/java/forge/ai/AiBlockController.java b/forge-ai/src/main/java/forge/ai/AiBlockController.java index 12bf2ffe47b..56a8514c9d8 100644 --- a/forge-ai/src/main/java/forge/ai/AiBlockController.java +++ b/forge-ai/src/main/java/forge/ai/AiBlockController.java @@ -1269,7 +1269,7 @@ public class AiBlockController { return false; } - int numSteps = ai.getStartingLife() - 5; // e.g. 15 steps between 5 life and 20 life + int numSteps = Math.max(1, ai.getStartingLife() - 5); // e.g. 15 steps between 5 life and 20 life float chanceStep = (maxRandomTradeChance - minRandomTradeChance) / numSteps; int chance = (int)Math.max(minRandomTradeChance, (maxRandomTradeChance - (Math.max(5, ai.getLife() - 5)) * chanceStep)); if (chance > maxRandomTradeChance) { diff --git a/forge-ai/src/main/java/forge/ai/ComputerUtil.java b/forge-ai/src/main/java/forge/ai/ComputerUtil.java index 0b95e2ae065..33cd0164fa1 100644 --- a/forge-ai/src/main/java/forge/ai/ComputerUtil.java +++ b/forge-ai/src/main/java/forge/ai/ComputerUtil.java @@ -736,6 +736,7 @@ public class ComputerUtil { CardCollection typeList = CardLists.getValidCards(ai.getCardsIn(ZoneType.Battlefield), type.split(";"), activate.getController(), activate, sa); // don't bounce the card we're pumping + // TODO unless it can be used as a save typeList = ComputerUtilCost.paymentChoicesWithoutTargets(typeList, sa, ai); if (typeList.size() < amount) { @@ -2066,7 +2067,7 @@ public class ComputerUtil { // Computer mulligans if there are no cards with converted mana cost of 0 in its hand public static boolean wantMulligan(Player ai, int cardsToReturn) { final CardCollectionView handList = ai.getCardsIn(ZoneType.Hand); - return scoreHand(handList, ai, cardsToReturn) <= 0; + return !handList.isEmpty() && scoreHand(handList, ai, cardsToReturn) <= 0; } public static CardCollection getPartialParisCandidates(Player ai) { diff --git a/forge-ai/src/main/java/forge/ai/GameState.java b/forge-ai/src/main/java/forge/ai/GameState.java index 48b58631072..5ad90a81653 100644 --- a/forge-ai/src/main/java/forge/ai/GameState.java +++ b/forge-ai/src/main/java/forge/ai/GameState.java @@ -1212,6 +1212,8 @@ public abstract class GameState { p.setLandsPlayedThisTurn(landsPlayed); p.setLandsPlayedLastTurn(landsPlayedLastTurn); + p.clearPaidForSA(); + for (Entry kv : playerCards.entrySet()) { PlayerZone zone = p.getZone(kv.getKey()); if (kv.getKey() == ZoneType.Battlefield) { diff --git a/forge-ai/src/main/java/forge/ai/ability/CopyPermanentAi.java b/forge-ai/src/main/java/forge/ai/ability/CopyPermanentAi.java index b36c2ac87a8..0799f5a1ba8 100644 --- a/forge-ai/src/main/java/forge/ai/ability/CopyPermanentAi.java +++ b/forge-ai/src/main/java/forge/ai/ability/CopyPermanentAi.java @@ -12,6 +12,7 @@ import forge.ai.AiPlayDecision; import forge.ai.ComputerUtil; import forge.ai.ComputerUtilAbility; import forge.ai.ComputerUtilCard; +import forge.ai.ComputerUtilCost; import forge.ai.SpecialCardAi; import forge.ai.SpellAbilityAi; import forge.game.Game; @@ -35,7 +36,6 @@ import forge.game.zone.ZoneType; public class CopyPermanentAi extends SpellAbilityAi { @Override protected boolean canPlayAI(Player aiPlayer, SpellAbility sa) { - // TODO - I'm sure someone can do this AI better Card source = sa.getHostCard(); PhaseHandler ph = aiPlayer.getGame().getPhaseHandler(); String aiLogic = sa.getParamOrDefault("AILogic", ""); @@ -77,6 +77,13 @@ public class CopyPermanentAi extends SpellAbilityAi { } } + if (sa.costHasManaX() && sa.getSVar("X").equals("Count$xPaid")) { + // Set PayX here to maximum value. (Osgir) + final int xPay = ComputerUtilCost.getMaxXValue(sa, aiPlayer); + + sa.setXManaCostPaid(xPay); + } + if (sa.usesTargeting() && sa.hasParam("TargetingPlayer")) { sa.resetTargets(); Player targetingPlayer = AbilityUtils.getDefinedPlayers(source, sa.getParam("TargetingPlayer"), sa).get(0); @@ -106,7 +113,7 @@ public class CopyPermanentAi extends SpellAbilityAi { return false; } } else { - return this.doTriggerAINoCost(aiPlayer, sa, false); + return doTriggerAINoCost(aiPlayer, sa, false); } } diff --git a/forge-core/pom.xml b/forge-core/pom.xml index bd5bc37a59d..3833b85bb38 100644 --- a/forge-core/pom.xml +++ b/forge-core/pom.xml @@ -6,7 +6,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-core diff --git a/forge-core/src/main/java/forge/card/CardType.java b/forge-core/src/main/java/forge/card/CardType.java index 93e945bb6f2..0a332ac2371 100644 --- a/forge-core/src/main/java/forge/card/CardType.java +++ b/forge-core/src/main/java/forge/card/CardType.java @@ -477,7 +477,7 @@ public final class CardType implements Comparable, CardTypeView { } // we assume that changes are already correctly ordered (taken from TreeMap.values()) for (final CardChangedType ct : changedCardTypes) { - if(null == newType) + if (null == newType) newType = new CardType(CardType.this); if (ct.isRemoveCardTypes()) { diff --git a/forge-game/pom.xml b/forge-game/pom.xml index 358894c0319..face1c9fea1 100644 --- a/forge-game/pom.xml +++ b/forge-game/pom.xml @@ -6,7 +6,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-game diff --git a/forge-game/src/main/java/forge/game/Direction.java b/forge-game/src/main/java/forge/game/Direction.java index a9d143c870f..38dea84fd42 100644 --- a/forge-game/src/main/java/forge/game/Direction.java +++ b/forge-game/src/main/java/forge/game/Direction.java @@ -74,7 +74,7 @@ public enum Direction { * {@inheritDoc} */ public String toString() { - switch(this) { + switch (this) { case Left: return LEFT; case Right: diff --git a/forge-game/src/main/java/forge/game/Game.java b/forge-game/src/main/java/forge/game/Game.java index 155aadcc080..fd51609471a 100644 --- a/forge-game/src/main/java/forge/game/Game.java +++ b/forge-game/src/main/java/forge/game/Game.java @@ -39,6 +39,7 @@ import com.google.common.collect.Multimap; import com.google.common.collect.Table; import com.google.common.eventbus.EventBus; +import forge.GameCommand; import forge.card.CardRarity; import forge.card.CardStateName; import forge.card.CardType.Supertype; @@ -99,6 +100,8 @@ public class Game { public final Phase endOfTurn; public final Untap untap; public final Phase upkeep; + // to execute commands for "current" phase each time state based action is checked + public final List sbaCheckedCommandList; public final MagicStack stack; public final CostPaymentStack costPaymentStack = new CostPaymentStack(); private final PhaseHandler phaseHandler; @@ -118,6 +121,9 @@ public class Game { private Table>> countersAddedThisTurn = HashBasedTable.create(); + private Map topLibsCast = Maps.newHashMap(); + private Map facedownWhileCasting = Maps.newHashMap(); + private Player monarch = null; private Player monarchBeginTurn = null; @@ -305,6 +311,8 @@ public class Game { endOfCombat = new Phase(PhaseType.COMBAT_END); endOfTurn = new Phase(PhaseType.END_OF_TURN); + sbaCheckedCommandList = new ArrayList<>(); + // update players view.updatePlayers(this); @@ -379,6 +387,17 @@ public class Game { return cleanup; } + public void addSBACheckedCommand(final GameCommand c) { + sbaCheckedCommandList.add(c); + } + public final void runSBACheckedCommands() { + for (final GameCommand c : sbaCheckedCommandList) { + c.run(); + } + sbaCheckedCommandList.clear(); + } + + public final PhaseHandler getPhaseHandler() { return phaseHandler; } @@ -1102,4 +1121,39 @@ public class Game { public void clearCounterAddedThisTurn() { countersAddedThisTurn.clear(); } + + public Card getTopLibForPlayer(Player P) { + return topLibsCast.get(P); + } + public void setTopLibsCast() { + for (Player p : getPlayers()) { + topLibsCast.put(p, p.getTopXCardsFromLibrary(1).isEmpty() ? null : p.getTopXCardsFromLibrary(1).get(0)); + } + } + public void clearTopLibsCast(SpellAbility sa) { + // if nothing left to pay + if (sa.getActivatingPlayer().getPaidForSA() == null) { + topLibsCast.clear(); + for (Card c : facedownWhileCasting.keySet()) { + // maybe it was discarded as payment? + if (c.isInZone(ZoneType.Hand)) { + c.forceTurnFaceUp(); + + // If an effect allows or instructs a player to reveal the card as it’s being drawn, + // it’s revealed after the spell becomes cast or the ability becomes activated. + final Map runParams = Maps.newHashMap(); + runParams.put(AbilityKey.Card, c); + runParams.put(AbilityKey.Number, facedownWhileCasting.get(c)); + runParams.put(AbilityKey.Player, this); + runParams.put(AbilityKey.CanReveal, true); + // need to hold trigger to clear list first + getTriggerHandler().runTrigger(TriggerType.Drawn, runParams, true); + } + } + facedownWhileCasting.clear(); + } + } + public void addFacedownWhileCasting(Card c, int numDrawn) { + facedownWhileCasting.put(c, Integer.valueOf(numDrawn)); + } } diff --git a/forge-game/src/main/java/forge/game/GameAction.java b/forge-game/src/main/java/forge/game/GameAction.java index 61159befd7c..bb0f8937db3 100644 --- a/forge-game/src/main/java/forge/game/GameAction.java +++ b/forge-game/src/main/java/forge/game/GameAction.java @@ -1229,7 +1229,7 @@ public class GameAction { } // Rule 704.5g - Destroy due to lethal damage // Rule 704.5h - Destroy due to deathtouch - else if (c.getDamage() > 0 && (c.getLethal() <= c.getDamage() || c.hasBeenDealtDeathtouchDamage())) { + else if (c.hasBeenDealtDeathtouchDamage() || (c.getDamage() > 0 && c.getLethal() <= c.getDamage())) { if (desCreats == null) { desCreats = new CardCollection(); } @@ -1371,6 +1371,9 @@ public class GameAction { if (!refreeze) { game.getStack().unfreezeStack(); } + + // Run all commands that are queued to run after state based actions are checked + game.runSBACheckedCommands(); } private boolean stateBasedAction_Saga(Card c, CardZoneTable table) { diff --git a/forge-game/src/main/java/forge/game/ability/AbilityFactory.java b/forge-game/src/main/java/forge/game/ability/AbilityFactory.java index c8723830c9a..f1a8d8c36fe 100644 --- a/forge-game/src/main/java/forge/game/ability/AbilityFactory.java +++ b/forge-game/src/main/java/forge/game/ability/AbilityFactory.java @@ -338,7 +338,6 @@ public final class AbilityFactory { final String min = mapParams.containsKey("TargetMin") ? mapParams.get("TargetMin") : "1"; final String max = mapParams.containsKey("TargetMax") ? mapParams.get("TargetMax") : "1"; - // TgtPrompt now optional final String prompt = mapParams.containsKey("TgtPrompt") ? mapParams.get("TgtPrompt") : "Select target " + mapParams.get("ValidTgts"); @@ -412,7 +411,6 @@ public final class AbilityFactory { * a {@link forge.game.spellability.SpellAbility} object. */ private static final void initializeParams(final SpellAbility sa) { - if (sa.hasParam("NonBasicSpell")) { sa.setBasicSpell(false); } @@ -456,7 +454,6 @@ public final class AbilityFactory { * @return a {@link forge.game.spellability.AbilitySub} object. */ private static final AbilitySub getSubAbility(CardState state, String sSub, final IHasSVars sVarHolder) { - if (sVarHolder.hasSVar(sSub)) { return (AbilitySub) AbilityFactory.getAbility(state, sSub, sVarHolder); } @@ -484,7 +481,7 @@ public final class AbilityFactory { } public static final SpellAbility buildFusedAbility(final Card card) { - if(!card.isSplitCard()) + if (!card.isSplitCard()) throw new IllegalStateException("Fuse ability may be built only on split cards"); CardState leftState = card.getState(CardStateName.LeftSplit); diff --git a/forge-game/src/main/java/forge/game/ability/AbilityKey.java b/forge-game/src/main/java/forge/game/ability/AbilityKey.java index eda31ec26ec..f4e4227b0dc 100644 --- a/forge-game/src/main/java/forge/game/ability/AbilityKey.java +++ b/forge-game/src/main/java/forge/game/ability/AbilityKey.java @@ -25,6 +25,7 @@ public enum AbilityKey { AttackedTarget("AttackedTarget"), Blocker("Blocker"), Blockers("Blockers"), + CanReveal("CanReveal"), CastSA("CastSA"), CastSACMC("CastSACMC"), Card("Card"), diff --git a/forge-game/src/main/java/forge/game/ability/AbilityUtils.java b/forge-game/src/main/java/forge/game/ability/AbilityUtils.java index 7cbfd343112..ec9b4116d42 100644 --- a/forge-game/src/main/java/forge/game/ability/AbilityUtils.java +++ b/forge-game/src/main/java/forge/game/ability/AbilityUtils.java @@ -2456,11 +2456,11 @@ public class AbilityUtils { partyTypes.removeAll(chosenParty.keySet()); // Here I'm left with just the party types that I haven't selected. - for(Card multi : multityped.keySet()) { + for (Card multi : multityped.keySet()) { Set types = multityped.get(multi); types.retainAll(partyTypes); - for(String type : types) { + for (String type : types) { chosenParty.put(type, multi); partyTypes.remove(type); break; diff --git a/forge-game/src/main/java/forge/game/ability/SpellAbilityEffect.java b/forge-game/src/main/java/forge/game/ability/SpellAbilityEffect.java index c84d0c0eb1a..73eb9fec5aa 100644 --- a/forge-game/src/main/java/forge/game/ability/SpellAbilityEffect.java +++ b/forge-game/src/main/java/forge/game/ability/SpellAbilityEffect.java @@ -753,10 +753,10 @@ public abstract class SpellAbilityEffect { } else if ("UntilUntaps".equals(duration)) { host.addUntapCommand(until); } else if ("UntilUnattached".equals(duration)) { - sa.getHostCard().addUnattachCommand(until); + host.addUnattachCommand(until); } else if ("UntilFacedown".equals(duration)) { - sa.getHostCard().addFacedownCommand(until); - }else { + host.addFacedownCommand(until); + } else { game.getEndOfTurn().addUntil(until); } } diff --git a/forge-game/src/main/java/forge/game/ability/effects/ChangeZoneEffect.java b/forge-game/src/main/java/forge/game/ability/effects/ChangeZoneEffect.java index 5ed22a22f26..45372f42268 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/ChangeZoneEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/ChangeZoneEffect.java @@ -919,8 +919,7 @@ public class ChangeZoneEffect extends SpellAbilityEffect { String prompt; if (defined) { prompt = Localizer.getInstance().getMessage("lblPutThatCardFromPlayerOriginToDestination", "{player's}", Lang.joinHomogenous(origin, ZoneType.Accessors.GET_TRANSLATED_NAME).toLowerCase(), destination.getTranslatedName().toLowerCase()); - } - else { + } else { prompt = Localizer.getInstance().getMessage("lblSearchPlayerZoneConfirm", "{player's}", Lang.joinHomogenous(origin, ZoneType.Accessors.GET_TRANSLATED_NAME).toLowerCase()); } String message = MessageUtil.formatMessage(prompt , decider, player); diff --git a/forge-game/src/main/java/forge/game/ability/effects/EffectEffect.java b/forge-game/src/main/java/forge/game/ability/effects/EffectEffect.java index 9da9fa7df9c..809c3d775e6 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/EffectEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/EffectEffect.java @@ -283,31 +283,24 @@ public class EffectEffect extends SpellAbilityEffect { if ((duration == null) || duration.equals("EndOfTurn")) { game.getEndOfTurn().addUntil(endEffect); - } - else if (duration.equals("UntilHostLeavesPlay")) { + } else if (duration.equals("UntilHostLeavesPlay")) { hostCard.addLeavesPlayCommand(endEffect); - } - else if (duration.equals("UntilHostLeavesPlayOrEOT")) { + } else if (duration.equals("UntilHostLeavesPlayOrEOT")) { game.getEndOfTurn().addUntil(endEffect); hostCard.addLeavesPlayCommand(endEffect); - } - else if (duration.equals("UntilYourNextTurn")) { + } else if (duration.equals("UntilYourNextTurn")) { game.getCleanup().addUntil(controller, endEffect); - } - else if (duration.equals("UntilYourNextUpkeep")) { + } else if (duration.equals("UntilYourNextUpkeep")) { game.getUpkeep().addUntil(controller, endEffect); - } - else if (duration.equals("UntilEndOfCombat")) { + } else if (duration.equals("UntilEndOfCombat")) { game.getEndOfCombat().addUntil(endEffect); - } - else if (duration.equals("UntilTheEndOfYourNextTurn")) { + } else if (duration.equals("UntilTheEndOfYourNextTurn")) { if (game.getPhaseHandler().isPlayerTurn(controller)) { game.getEndOfTurn().registerUntilEnd(controller, endEffect); } else { game.getEndOfTurn().addUntilEnd(controller, endEffect); } - } - else if (duration.equals("ThisTurnAndNextTurn")) { + } else if (duration.equals("ThisTurnAndNextTurn")) { game.getUntap().addAt(new GameCommand() { private static final long serialVersionUID = -5054153666503075717L; @@ -316,6 +309,8 @@ public class EffectEffect extends SpellAbilityEffect { game.getEndOfTurn().addUntil(endEffect); } }); + } else if (duration.equals("UntilStateBasedActionChecked")) { + game.addSBACheckedCommand(endEffect); } } diff --git a/forge-game/src/main/java/forge/game/ability/effects/FightEffect.java b/forge-game/src/main/java/forge/game/ability/effects/FightEffect.java index e6f82bfb9f8..562c1fa85a5 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/FightEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/FightEffect.java @@ -51,14 +51,14 @@ public class FightEffect extends DamageBaseEffect { if (fighters.size() < 2) { return; } - + if (sa.hasParam("RememberObjects")) { final String remembered = sa.getParam("RememberObjects"); for (final Object o : AbilityUtils.getDefinedObjects(host, remembered, sa)) { host.addRemembered(o); } } - + Player controller = host.getController(); boolean isOptional = sa.hasParam("Optional"); diff --git a/forge-game/src/main/java/forge/game/ability/effects/RepeatEachEffect.java b/forge-game/src/main/java/forge/game/ability/effects/RepeatEachEffect.java index f15c6f5991c..0853ba03dbc 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/RepeatEachEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/RepeatEachEffect.java @@ -46,6 +46,10 @@ public class RepeatEachEffect extends SpellAbilityEffect { final Player player = sa.getActivatingPlayer(); final Game game = player.getGame(); + if (sa.hasParam("Optional") && sa.hasParam("OptionPrompt") && //for now, OptionPrompt is needed + !player.getController().confirmAction(sa, null, sa.getParam("OptionPrompt"))) { + return; + } boolean useImprinted = sa.hasParam("UseImprinted"); diff --git a/forge-game/src/main/java/forge/game/card/Card.java b/forge-game/src/main/java/forge/game/card/Card.java index 57858df614d..fb8e8365cec 100644 --- a/forge-game/src/main/java/forge/game/card/Card.java +++ b/forge-game/src/main/java/forge/game/card/Card.java @@ -2005,7 +2005,6 @@ public class Card extends GameEntity implements Comparable, IHasSVars { } else if (keyword.startsWith("Strive") || keyword.startsWith("Escalate") || keyword.startsWith("ETBReplacement") || keyword.startsWith("Affinity") - || keyword.equals("CARDNAME enters the battlefield tapped.") || keyword.startsWith("UpkeepCost")) { } else if (keyword.equals("Provoke") || keyword.equals("Ingest") || keyword.equals("Unleash") || keyword.equals("Soulbond") || keyword.equals("Partner") || keyword.equals("Retrace") @@ -3453,7 +3452,13 @@ public class Card extends GameEntity implements Comparable, IHasSVars { if (changedCardTypes.isEmpty() && changedCardTypesCharacterDefining.isEmpty()) { return state.getType(); } - return state.getType().getTypeWithChanges(getChangedCardTypes()); + // CR 506.4 attacked planeswalkers leave combat + boolean checkCombat = state.getType().isPlaneswalker() && game.getCombat() != null && !game.getCombat().getAttackersOf(this).isEmpty(); + CardTypeView types = state.getType().getTypeWithChanges(getChangedCardTypes()); + if (checkCombat && !types.isPlaneswalker()) { + game.getCombat().removeFromCombat(this); + } + return types; } public Iterable getChangedCardTypes() { @@ -3521,7 +3526,6 @@ public class Card extends GameEntity implements Comparable, IHasSVars { final boolean removeLandTypes, final boolean removeCreatureTypes, final boolean removeArtifactTypes, final boolean removeEnchantmentTypes, final long timestamp, final boolean updateView, final boolean cda) { - (cda ? changedCardTypesCharacterDefining : changedCardTypes).put(timestamp, new CardChangedType( addType, removeType, removeSuperTypes, removeCardTypes, removeSubTypes, removeLandTypes, removeCreatureTypes, removeArtifactTypes, removeEnchantmentTypes)); @@ -5188,7 +5192,6 @@ public class Card extends GameEntity implements Comparable, IHasSVars { // This is used by the AI to forecast an effect (so it must not change the game state) @Override public final int staticReplaceDamage(final int damage, final Card source, final boolean isCombat) { - int restDamage = damage; for (Card c : getGame().getCardsIn(ZoneType.Battlefield)) { if (c.getName().equals("Sulfuric Vapors")) { @@ -5264,8 +5267,7 @@ public class Card extends GameEntity implements Comparable, IHasSVars { } /** - * This function handles damage after replacement and prevention effects are - * applied. + * This function handles damage after replacement and prevention effects are applied. */ @Override public final int addDamageAfterPrevention(final int damageIn, final Card source, final boolean isCombat, GameEntityCounterTable counterTable) { diff --git a/forge-game/src/main/java/forge/game/card/CardFactory.java b/forge-game/src/main/java/forge/game/card/CardFactory.java index b5de258fe41..94d3b84e117 100644 --- a/forge-game/src/main/java/forge/game/card/CardFactory.java +++ b/forge-game/src/main/java/forge/game/card/CardFactory.java @@ -116,7 +116,6 @@ public class CardFactory { //out.setFaceDown(in.isFaceDown()); return out; - } /** @@ -740,7 +739,6 @@ public class CardFactory { } } - if (sa.hasParam("GainThisAbility") && (sa instanceof SpellAbility)) { SpellAbility root = ((SpellAbility) sa).getRootAbility(); diff --git a/forge-game/src/main/java/forge/game/card/CardProperty.java b/forge-game/src/main/java/forge/game/card/CardProperty.java index 46d0a2d916a..cf47baa8442 100644 --- a/forge-game/src/main/java/forge/game/card/CardProperty.java +++ b/forge-game/src/main/java/forge/game/card/CardProperty.java @@ -1421,7 +1421,14 @@ public class CardProperty { } } if (property.equals("attackingYouOrYourPW")) { - Player defender = combat.getDefenderPlayerByAttacker(card); + GameEntity defender = combat.getDefenderByAttacker(card); + if (defender instanceof Card) { + // attack on a planeswalker that was removed from combat + if (!((Card)defender).isPlaneswalker()) { + return false; + } + defender = ((Card)defender).getController(); + } if (!sourceController.equals(defender)) { return false; } diff --git a/forge-game/src/main/java/forge/game/combat/Combat.java b/forge-game/src/main/java/forge/game/combat/Combat.java index 8c0c93f5999..2ea2b30849e 100644 --- a/forge-game/src/main/java/forge/game/combat/Combat.java +++ b/forge-game/src/main/java/forge/game/combat/Combat.java @@ -602,7 +602,7 @@ public class Combat { for (Card pw : getDefendingPlaneswalkers()) { if (pw.equals(c)) { Multimap attackerBuffer = ArrayListMultimap.create(); - Collection bands = attackedByBands.get(pw); + Collection bands = attackedByBands.get(c); for (AttackingBand abPW : bands) { unregisterDefender(c, abPW); // Rule 506.4c workaround to keep creatures in combat @@ -613,6 +613,7 @@ public class Combat { } bands.clear(); attackedByBands.putAll(attackerBuffer); + break; } } diff --git a/forge-game/src/main/java/forge/game/combat/CombatUtil.java b/forge-game/src/main/java/forge/game/combat/CombatUtil.java index 61ca06ad748..c25d7ca22f5 100644 --- a/forge-game/src/main/java/forge/game/combat/CombatUtil.java +++ b/forge-game/src/main/java/forge/game/combat/CombatUtil.java @@ -425,7 +425,9 @@ public class CombatUtil { return false; } - final int blockersFromOnePlayer = CardLists.filter(combat.getAllBlockers(), CardPredicates.isController(blocker.getController())).size(); + CardCollection allOtherBlockers = combat.getAllBlockers(); + allOtherBlockers.remove(blocker); + final int blockersFromOnePlayer = CardLists.filter(allOtherBlockers, CardPredicates.isController(blocker.getController())).size(); if (blockersFromOnePlayer > 0 && game.getStaticEffects().getGlobalRuleChange(GlobalRuleChange.onlyOneBlockerPerOpponent)) { return false; } diff --git a/forge-game/src/main/java/forge/game/cost/CostExile.java b/forge-game/src/main/java/forge/game/cost/CostExile.java index 5abbc55c82f..a09b1d94d67 100644 --- a/forge-game/src/main/java/forge/game/cost/CostExile.java +++ b/forge-game/src/main/java/forge/game/cost/CostExile.java @@ -67,8 +67,7 @@ public class CostExile extends CostPartWithList { CardCollectionView typeList; if (this.sameZone) { typeList = game.getCardsIn(this.from); - } - else { + } else { typeList = payer.getCardsIn(this.from); } @@ -140,7 +139,7 @@ public class CostExile extends CostPartWithList { return list.contains(source); } - if (!type.contains("X")) { + if (!type.contains("X") || ability.getXManaCostPaid() != null) { list = CardLists.getValidCards(list, type.split(";"), payer, source, ability); } diff --git a/forge-game/src/main/java/forge/game/cost/CostPartMana.java b/forge-game/src/main/java/forge/game/cost/CostPartMana.java index 270515175b2..e36f2780aee 100644 --- a/forge-game/src/main/java/forge/game/cost/CostPartMana.java +++ b/forge-game/src/main/java/forge/game/cost/CostPartMana.java @@ -155,7 +155,6 @@ public class CostPartMana extends CostPart { @Override public boolean payAsDecided(Player payer, PaymentDecision pd, SpellAbility sa) { - // TODO Auto-generated method stub sa.clearManaPaid(); // decision not used here, the whole payment is interactive! diff --git a/forge-game/src/main/java/forge/game/mulligan/AbstractMulligan.java b/forge-game/src/main/java/forge/game/mulligan/AbstractMulligan.java index 4ee23380e8e..4e16e01a691 100644 --- a/forge-game/src/main/java/forge/game/mulligan/AbstractMulligan.java +++ b/forge-game/src/main/java/forge/game/mulligan/AbstractMulligan.java @@ -29,6 +29,7 @@ public abstract class AbstractMulligan { public void mulligan() { CardCollection toMulligan = new CardCollection(player.getCardsIn(ZoneType.Hand)); + if (toMulligan.isEmpty()) return; revealPreMulligan(toMulligan); for (final Card c : toMulligan) { player.getGame().getAction().moveToLibrary(c, null); diff --git a/forge-game/src/main/java/forge/game/player/Player.java b/forge-game/src/main/java/forge/game/player/Player.java index 3667af7abc5..52ca6af870d 100644 --- a/forge-game/src/main/java/forge/game/player/Player.java +++ b/forge-game/src/main/java/forge/game/player/Player.java @@ -1219,20 +1219,6 @@ public class Player extends GameEntity implements Comparable { return false; } - public final boolean canDraw() { - if (hasKeyword("You can't draw cards.")) { - return false; - } - if (hasKeyword("You can't draw more than one card each turn.")) { - return numDrawnThisTurn < 1; - } - return true; - } - - public final CardCollectionView drawCard() { - return drawCards(1, null); - } - public void surveil(int num, SpellAbility cause, CardZoneTable table) { final Map repParams = AbilityKey.mapFromAffected(this); repParams.put(AbilityKey.Source, cause); @@ -1300,12 +1286,25 @@ public class Player extends GameEntity implements Comparable { return !getZone(ZoneType.Hand).isEmpty(); } + public final boolean canDraw() { + if (hasKeyword("You can't draw cards.")) { + return false; + } + if (hasKeyword("You can't draw more than one card each turn.")) { + return numDrawnThisTurn < 1; + } + return true; + } + + public final CardCollectionView drawCard() { + return drawCards(1, null); + } + public final CardCollectionView drawCards(final int n) { return drawCards(n, null); } public final CardCollectionView drawCards(final int n, SpellAbility cause) { final CardCollection drawn = new CardCollection(); - final Map toReveal = Maps.newHashMap(); // Replacement effects final Map repRunParams = AbilityKey.mapFromAffected(this); @@ -1317,6 +1316,7 @@ public class Player extends GameEntity implements Comparable { // always allow drawing cards before the game actually starts (e.g. Maralen of the Mornsong Avatar) final boolean gameStarted = game.getAge().ordinal() > GameStage.Mulligan.ordinal(); + final Map toReveal = Maps.newHashMap(); for (int i = 0; i < n; i++) { if (gameStarted && !canDraw()) { @@ -1358,7 +1358,6 @@ public class Player extends GameEntity implements Comparable { } List pList = Lists.newArrayList(); - for (Player p : getAllOtherPlayers()) { if (c.mayPlayerLook(p)) { pList.add(p); @@ -1385,8 +1384,16 @@ public class Player extends GameEntity implements Comparable { } view.updateNumDrawnThisTurn(this); - // Run triggers final Map runParams = Maps.newHashMap(); + + // CR 121.8 card was drawn as part of another sa (e.g. paying with Chromantic Sphere), hide it temporarily + if (game.getTopLibForPlayer(this) != null && getPaidForSA() != null && cause != null && getPaidForSA() != cause.getRootAbility()) { + c.turnFaceDown(); + game.addFacedownWhileCasting(c, numDrawnThisTurn); + runParams.put(AbilityKey.CanReveal, false); + } + + // Run triggers runParams.put(AbilityKey.Card, c); runParams.put(AbilityKey.Number, numDrawnThisTurn); runParams.put(AbilityKey.Player, this); @@ -3164,7 +3171,11 @@ public class Player extends GameEntity implements Comparable { paidForStack.push(sa); } public void popPaidForSA() { - paidForStack.pop(); + // it could be empty if spell couldn't be cast + paidForStack.poll(); + } + public void clearPaidForSA() { + paidForStack.clear(); } public boolean isMonarch() { diff --git a/forge-game/src/main/java/forge/game/spellability/SpellAbility.java b/forge-game/src/main/java/forge/game/spellability/SpellAbility.java index 5ef07d08712..e5203fbee5d 100644 --- a/forge-game/src/main/java/forge/game/spellability/SpellAbility.java +++ b/forge-game/src/main/java/forge/game/spellability/SpellAbility.java @@ -2070,7 +2070,7 @@ public abstract class SpellAbility extends CardTraitBase implements ISpellAbilit return false; } - public void checkActivationResloveSubs() { + public void checkActivationResolveSubs() { if (hasParam("ActivationNumberSacrifice")) { String comp = getParam("ActivationNumberSacrifice"); int right = Integer.parseInt(comp.substring(2)); @@ -2090,7 +2090,6 @@ public abstract class SpellAbility extends CardTraitBase implements ISpellAbilit public List getChosenList() { return chosenList; } - public void setChosenList(List choices) { chosenList = choices; } diff --git a/forge-game/src/main/java/forge/game/staticability/StaticAbilityContinuous.java b/forge-game/src/main/java/forge/game/staticability/StaticAbilityContinuous.java index 5ed3df8b676..d382546f2ca 100644 --- a/forge-game/src/main/java/forge/game/staticability/StaticAbilityContinuous.java +++ b/forge-game/src/main/java/forge/game/staticability/StaticAbilityContinuous.java @@ -873,7 +873,7 @@ public final class StaticAbilityContinuous { } } - if (mayLookAt != null) { + if (mayLookAt != null && (!affectedCard.getOwner().getTopXCardsFromLibrary(1).contains(affectedCard) || game.getTopLibForPlayer(affectedCard.getOwner()) == null || game.getTopLibForPlayer(affectedCard.getOwner()) == affectedCard)) { affectedCard.addMayLookAt(se.getTimestamp(), mayLookAt); } diff --git a/forge-game/src/main/java/forge/game/trigger/TriggerChangesZone.java b/forge-game/src/main/java/forge/game/trigger/TriggerChangesZone.java index 3c3d925496a..c599bf2d919 100644 --- a/forge-game/src/main/java/forge/game/trigger/TriggerChangesZone.java +++ b/forge-game/src/main/java/forge/game/trigger/TriggerChangesZone.java @@ -103,8 +103,8 @@ public class TriggerChangesZone extends Trigger { if (hasParam("ValidCard")) { Card moved = (Card) runParams.get(AbilityKey.Card); boolean leavesLKIZone = "Battlefield".equals(getParam("Origin")); - //TODO make this smarter if there ever is a card that lets you play anything from exile - leavesLKIZone |= "Exile".equals(getParam("Origin")) && (moved.getZone().is(ZoneType.Graveyard) || moved.getZone().is(ZoneType.Command)); + leavesLKIZone |= "Exile".equals(getParam("Origin")) && (moved.getZone().is(ZoneType.Graveyard) || + moved.getZone().is(ZoneType.Command) || hasParam("UseLKI")); if (leavesLKIZone) { moved = (Card) runParams.get(AbilityKey.CardLKI); diff --git a/forge-game/src/main/java/forge/game/trigger/TriggerDrawn.java b/forge-game/src/main/java/forge/game/trigger/TriggerDrawn.java index 517760610a6..2a6ada5654c 100644 --- a/forge-game/src/main/java/forge/game/trigger/TriggerDrawn.java +++ b/forge-game/src/main/java/forge/game/trigger/TriggerDrawn.java @@ -86,6 +86,18 @@ public class TriggerDrawn extends Trigger { return false; } + if (runParams.containsKey(AbilityKey.CanReveal)) { + // while drawing this is only set if false + boolean canReveal = (boolean) runParams.get(AbilityKey.CanReveal); + if (hasParam("ForReveal")) { + if (!canReveal) { + return false; + } + } else if (canReveal) { + return false; + } + } + return true; } diff --git a/forge-game/src/main/java/forge/game/trigger/WrappedAbility.java b/forge-game/src/main/java/forge/game/trigger/WrappedAbility.java index ea8cafc7107..1460f9f175e 100644 --- a/forge-game/src/main/java/forge/game/trigger/WrappedAbility.java +++ b/forge-game/src/main/java/forge/game/trigger/WrappedAbility.java @@ -555,4 +555,11 @@ public class WrappedAbility extends Ability { public void setCardState(CardState state) { sa.setCardState(state); } + + public List getChosenList() { + return sa.getChosenList(); + } + public void setChosenList(List choices) { + sa.setChosenList(choices); + } } \ No newline at end of file diff --git a/forge-game/src/main/java/forge/game/zone/MagicStack.java b/forge-game/src/main/java/forge/game/zone/MagicStack.java index f6a83e3bb93..f233027ca99 100644 --- a/forge-game/src/main/java/forge/game/zone/MagicStack.java +++ b/forge-game/src/main/java/forge/game/zone/MagicStack.java @@ -134,7 +134,7 @@ public class MagicStack /* extends MyObservable */ implements Iterablejar -Xms1024m -Xmx1536m - 1.6.43.001 + 1.6.44.001 keystore alias storepass @@ -19,7 +19,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-gui-android diff --git a/forge-gui-desktop/pom.xml b/forge-gui-desktop/pom.xml index 5a28257e038..6532f5c8a01 100644 --- a/forge-gui-desktop/pom.xml +++ b/forge-gui-desktop/pom.xml @@ -4,7 +4,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-gui-desktop diff --git a/forge-gui-desktop/src/main/java/forge/ImageCache.java b/forge-gui-desktop/src/main/java/forge/ImageCache.java index 274b09fc289..ee0206a0de1 100644 --- a/forge-gui-desktop/src/main/java/forge/ImageCache.java +++ b/forge-gui-desktop/src/main/java/forge/ImageCache.java @@ -256,8 +256,10 @@ public class ImageCache { legalString = "Illus. " + ipc.getArtist() + " ©" + year + " WOTC"; } FCardImageRenderer.drawCardImage(original.createGraphics(), card, altState, width, height, art, legalString); - if (art != null || !fetcherEnabled) - _CACHE.put(originalKey, original); + // Skip store cache since the rendering speed seems to be fast enough + // Also the scaleImage below will already cache re-sized image for CardPanel anyway + // if (art != null || !fetcherEnabled) + // _CACHE.put(originalKey, original); } else { original = _defaultImage; } diff --git a/forge-gui-desktop/src/main/java/forge/toolbox/CardFaceSymbols.java b/forge-gui-desktop/src/main/java/forge/toolbox/CardFaceSymbols.java index 7c6df066a1f..b2f89d46342 100644 --- a/forge-gui-desktop/src/main/java/forge/toolbox/CardFaceSymbols.java +++ b/forge-gui-desktop/src/main/java/forge/toolbox/CardFaceSymbols.java @@ -64,6 +64,7 @@ public class CardFaceSymbols { MANA_IMAGES.put("W", FSkin.getImage(FSkinProp.IMG_MANA_W)); MANA_IMAGES.put("WB", FSkin.getImage(FSkinProp.IMG_MANA_HYBRID_WB)); MANA_IMAGES.put("WU", FSkin.getImage(FSkinProp.IMG_MANA_HYBRID_WU)); + MANA_IMAGES.put("P", FSkin.getImage(FSkinProp.IMG_MANA_PHRYX)); MANA_IMAGES.put("PW", FSkin.getImage(FSkinProp.IMG_MANA_PHRYX_W)); MANA_IMAGES.put("PR", FSkin.getImage(FSkinProp.IMG_MANA_PHRYX_R)); MANA_IMAGES.put("PU", FSkin.getImage(FSkinProp.IMG_MANA_PHRYX_U)); diff --git a/forge-gui-desktop/src/main/java/forge/toolbox/FSkin.java b/forge-gui-desktop/src/main/java/forge/toolbox/FSkin.java index e38fc09f2be..0268eecefd9 100644 --- a/forge-gui-desktop/src/main/java/forge/toolbox/FSkin.java +++ b/forge-gui-desktop/src/main/java/forge/toolbox/FSkin.java @@ -1405,6 +1405,7 @@ public class FSkin { addEncodingSymbol("2/B", FSkinProp.IMG_MANA_2B); addEncodingSymbol("2/R", FSkinProp.IMG_MANA_2R); addEncodingSymbol("2/G", FSkinProp.IMG_MANA_2G); + addEncodingSymbol("P", FSkinProp.IMG_MANA_PHRYX); addEncodingSymbol("P/W", FSkinProp.IMG_MANA_PHRYX_W); addEncodingSymbol("P/U", FSkinProp.IMG_MANA_PHRYX_U); addEncodingSymbol("P/B", FSkinProp.IMG_MANA_PHRYX_B); diff --git a/forge-gui-ios/pom.xml b/forge-gui-ios/pom.xml index 6235c60b5a9..2e6f1a4b267 100644 --- a/forge-gui-ios/pom.xml +++ b/forge-gui-ios/pom.xml @@ -6,13 +6,13 @@ jar -Xms128m -Xmx2048m - 1.6.43.001 + 1.6.44.001 forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-gui-ios diff --git a/forge-gui-mobile-dev/pom.xml b/forge-gui-mobile-dev/pom.xml index d9991f8e241..fa30139d8cb 100644 --- a/forge-gui-mobile-dev/pom.xml +++ b/forge-gui-mobile-dev/pom.xml @@ -4,7 +4,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-gui-mobile-dev diff --git a/forge-gui-mobile/pom.xml b/forge-gui-mobile/pom.xml index 0848b4a9cd9..200f4636013 100644 --- a/forge-gui-mobile/pom.xml +++ b/forge-gui-mobile/pom.xml @@ -4,7 +4,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-gui-mobile diff --git a/forge-gui-mobile/src/forge/Forge.java b/forge-gui-mobile/src/forge/Forge.java index 199a1500eeb..4376d0476e3 100644 --- a/forge-gui-mobile/src/forge/Forge.java +++ b/forge-gui-mobile/src/forge/Forge.java @@ -46,7 +46,7 @@ import forge.util.Localizer; import forge.util.Utils; public class Forge implements ApplicationListener { - public static final String CURRENT_VERSION = "1.6.43.001"; + public static final String CURRENT_VERSION = "1.6.44.001"; private static final ApplicationListener app = new Forge(); private static Clipboard clipboard; diff --git a/forge-gui-mobile/src/forge/assets/FSkinImage.java b/forge-gui-mobile/src/forge/assets/FSkinImage.java index e5db8abf2ae..5f6625e9791 100644 --- a/forge-gui-mobile/src/forge/assets/FSkinImage.java +++ b/forge-gui-mobile/src/forge/assets/FSkinImage.java @@ -62,6 +62,7 @@ public enum FSkinImage implements FImage { MANA_HYBRID_UR (FSkinProp.IMG_MANA_HYBRID_UR, SourceFile.MANAICONS), MANA_HYBRID_WB (FSkinProp.IMG_MANA_HYBRID_WB, SourceFile.MANAICONS), MANA_HYBRID_WU (FSkinProp.IMG_MANA_HYBRID_WU, SourceFile.MANAICONS), + MANA_PHRYX (FSkinProp.IMG_MANA_PHRYX, SourceFile.MANAICONS), MANA_PHRYX_U (FSkinProp.IMG_MANA_PHRYX_U, SourceFile.MANAICONS), MANA_PHRYX_W (FSkinProp.IMG_MANA_PHRYX_W, SourceFile.MANAICONS), MANA_PHRYX_R (FSkinProp.IMG_MANA_PHRYX_R, SourceFile.MANAICONS), diff --git a/forge-gui-mobile/src/forge/assets/TextRenderer.java b/forge-gui-mobile/src/forge/assets/TextRenderer.java index 84b693e439f..ca516e63a8b 100644 --- a/forge-gui-mobile/src/forge/assets/TextRenderer.java +++ b/forge-gui-mobile/src/forge/assets/TextRenderer.java @@ -43,6 +43,7 @@ public class TextRenderer { symbolLookup.put("2/B", FSkinImage.MANA_2B); symbolLookup.put("2/R", FSkinImage.MANA_2R); symbolLookup.put("2/G", FSkinImage.MANA_2G); + symbolLookup.put("P", FSkinImage.MANA_PHRYX); symbolLookup.put("P/W", FSkinImage.MANA_PHRYX_W); symbolLookup.put("P/U", FSkinImage.MANA_PHRYX_U); symbolLookup.put("P/B", FSkinImage.MANA_PHRYX_B); diff --git a/forge-gui-mobile/src/forge/card/CardFaceSymbols.java b/forge-gui-mobile/src/forge/card/CardFaceSymbols.java index c2af7ed7382..0c8becebb2f 100644 --- a/forge-gui-mobile/src/forge/card/CardFaceSymbols.java +++ b/forge-gui-mobile/src/forge/card/CardFaceSymbols.java @@ -56,6 +56,7 @@ public class CardFaceSymbols { MANA_IMAGES.put("W", FSkinImage.MANA_W); MANA_IMAGES.put("WB", FSkinImage.MANA_HYBRID_WB); MANA_IMAGES.put("WU", FSkinImage.MANA_HYBRID_WU); + MANA_IMAGES.put("P", FSkinImage.MANA_PHRYX); MANA_IMAGES.put("PW", FSkinImage.MANA_PHRYX_W); MANA_IMAGES.put("PR", FSkinImage.MANA_PHRYX_R); MANA_IMAGES.put("PU", FSkinImage.MANA_PHRYX_U); diff --git a/forge-gui-mobile/src/forge/screens/match/views/VStack.java b/forge-gui-mobile/src/forge/screens/match/views/VStack.java index 7dce48b6db3..c835fc9c664 100644 --- a/forge-gui-mobile/src/forge/screens/match/views/VStack.java +++ b/forge-gui-mobile/src/forge/screens/match/views/VStack.java @@ -419,6 +419,7 @@ public class VStack extends FDropDown { newtext = TextUtil.fastReplace(TextUtil.fastReplace(newtext, " and .", ".")," .", "."); newtext = TextUtil.fastReplace(TextUtil.fastReplace(newtext, "- - ", "- "), ". .", "."); newtext = TextUtil.fastReplace(newtext, "CARDNAME", name); + newtext = TextUtil.fastReplace(newtext, name+name, name); textRenderer.drawText(g, name+" "+cId + optionalCostString +newtext, FONT, foreColor, x, y, w, h, y, h, true, Align.left, true); } } diff --git a/forge-gui/pom.xml b/forge-gui/pom.xml index 95c93831022..e942016b5b9 100644 --- a/forge-gui/pom.xml +++ b/forge-gui/pom.xml @@ -4,7 +4,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-gui diff --git a/forge-gui/release-files/ANNOUNCEMENTS.txt b/forge-gui/release-files/ANNOUNCEMENTS.txt index 71dd7c4b7fe..788c37884ee 100644 --- a/forge-gui/release-files/ANNOUNCEMENTS.txt +++ b/forge-gui/release-files/ANNOUNCEMENTS.txt @@ -1,5 +1,8 @@ #Add one announcement per line +The Throne of Eldraine quest world is the largest and most meticulously developed quest world to date, combining fascinating fairytales and interesting interactions. If you've never baked a pie into a pie, have you really played Magic? Get in the discord if you aren't yet. https://discord.gg/3v9JCVr +New Graphic Options preference: display full card scan or cropped art with everything else rendered. +Most cards from Jumpstart:Historic Horizons are now available for brewing. J:HH limited play experience is WIP. Custom cards can now be loaded from your user profile. Enable it your preferences. Fat packs and Booster Box count are now set in the Edition file for easier customization *** Android 7 & 8 support is now deprecated. Support will be dropped in an upcoming release. *** diff --git a/forge-gui/res/cardsfolder/e/egon_god_of_death_throne_of_death.txt b/forge-gui/res/cardsfolder/e/egon_god_of_death_throne_of_death.txt index 158eefdcfef..05e137e4f57 100644 --- a/forge-gui/res/cardsfolder/e/egon_god_of_death_throne_of_death.txt +++ b/forge-gui/res/cardsfolder/e/egon_god_of_death_throne_of_death.txt @@ -3,12 +3,9 @@ ManaCost:2 B Types:Legendary Creature God PT:6/6 K:Deathtouch -T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigExile | TriggerDescription$ At the beginning of your upkeep, exile two cards from your graveyard. If you can't, sacrifice NICKNAME and draw a card. -SVar:TrigExile:DB$ ChangeZone | Origin$ Graveyard | Destination$ Exile | ChangeType$ Card.YouOwn | ChangeNum$ 2 | RememberChanged$ True | Hidden$ True | Mandatory$ True | SubAbility$ DBSacSelf -SVar:DBSacSelf:DB$ Sacrifice | Defined$ Self | ConditionCheckSVar$ X | ConditionSVarCompare$ LT2 | SubAbility$ DBDraw -SVar:DBDraw:DB$ Draw | NumCards$ 1 | ConditionCheckSVar$ X | ConditionSVarCompare$ LT2 | SubAbility$ DBCleanup -SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True -SVar:X:Remembered$Amount +T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ DBSacSelf | TriggerDescription$ At the beginning of your upkeep, exile two cards from your graveyard. If you can't, sacrifice NICKNAME and draw a card. +SVar:DBSacSelf:DB$ Sacrifice | Defined$ Self | UnlessCost$ Mandatory ExileFromGrave<2/Card> | UnlessPayer$ You | UnlessResolveSubs$ WhenNotPaid | SubAbility$ DBDraw +SVar:DBDraw:DB$ Draw | NumCards$ 1 AlternateMode:Modal DeckHints:Ability$Discard & Ability$Graveyard Oracle:Deathtouch\nAt the beginning of your upkeep, exile two cards from your graveyard. If you can't, sacrifice Egon and draw a card. diff --git a/forge-gui/res/cardsfolder/e/elvish_vanguard.txt b/forge-gui/res/cardsfolder/e/elvish_vanguard.txt index c70357731da..77d1a70dc3c 100644 --- a/forge-gui/res/cardsfolder/e/elvish_vanguard.txt +++ b/forge-gui/res/cardsfolder/e/elvish_vanguard.txt @@ -3,7 +3,7 @@ ManaCost:1 G Types:Creature Elf Warrior PT:1/1 T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Elf.Other | TriggerZones$ Battlefield | Execute$ TrigPutCounter | TriggerDescription$ Whenever another Elf enters the battlefield, put a +1/+1 counter on CARDNAME. -SVar:TrigPutCounter:DB$PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1 +SVar:TrigPutCounter:DB$ PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1 SVar:BuffedBy:Elf SVar:PlayMain1:TRUE SVar:Picture:http://www.wizards.com/global/images/magic/general/elvish_vanguard.jpg diff --git a/forge-gui/res/cardsfolder/g/god_eternal_kefnet.txt b/forge-gui/res/cardsfolder/g/god_eternal_kefnet.txt index b784df0cf46..7e312c59cc7 100644 --- a/forge-gui/res/cardsfolder/g/god_eternal_kefnet.txt +++ b/forge-gui/res/cardsfolder/g/god_eternal_kefnet.txt @@ -3,7 +3,7 @@ ManaCost:2 U U Types:Legendary Creature Zombie God PT:4/5 K:Flying -T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | OptionalDecider$ You | Static$ True | Execute$ DBReveal | TriggerZones$ Battlefield | TriggerDescription$ You may reveal the first card you draw each turn as you draw it. Whenever you reveal an instant or sorcery card this way, copy that card and you may cast the copy. That copy costs {2} less to cast. +T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | OptionalDecider$ You | Static$ True | ForReveal$ True | Execute$ DBReveal | TriggerZones$ Battlefield | TriggerDescription$ You may reveal the first card you draw each turn as you draw it. Whenever you reveal an instant or sorcery card this way, copy that card and you may cast the copy. That copy costs {2} less to cast. SVar:DBReveal:DB$ Reveal | Defined$ You | RevealDefined$ TriggeredCard | RememberRevealed$ True | SubAbility$ DBTrigger | AILogic$ Kefnet SVar:DBTrigger:DB$ ImmediateTrigger | RememberObjects$ RememberedCard | ConditionDefined$ Remembered | ConditionPresent$ Instant,Sorcery | SubAbility$ DBCleanup | Execute$ DBPlay | TriggerDescription$ Whenever you reveal an instant or sorcery card this way, copy that card and you may cast the copy. That copy costs {2} less to cast. SVar:DBPlay:DB$ Play | Defined$ DelayTriggerRemembered | ValidSA$ Spell | PlayReduceCost$ 2 | Optional$ True | CopyCard$ True @@ -11,4 +11,3 @@ SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard,Exile | ValidCard$ Card.Self | Execute$ TriReturn | OptionalDecider$ You | TriggerController$ TriggeredCardController | TriggerDescription$ When CARDNAME dies or is put into exile from the battlefield, you may put it into its owner's library third from the top. SVar:TriReturn:DB$ ChangeZone | Defined$ TriggeredNewCardLKICopy | Destination$ Library | LibraryPosition$ 2 Oracle:Flying\nYou may reveal the first card you draw each turn as you draw it. Whenever you reveal an instant or sorcery card this way, copy that card and you may cast the copy. That copy costs {2} less to cast.\nWhen God-Eternal Kefnet dies or is put into exile from the battlefield, you may put it into its owner's library third from the top. - diff --git a/forge-gui/res/cardsfolder/h/hellrider.txt b/forge-gui/res/cardsfolder/h/hellrider.txt index 06ce5e8e0bc..3b90484cfa2 100644 --- a/forge-gui/res/cardsfolder/h/hellrider.txt +++ b/forge-gui/res/cardsfolder/h/hellrider.txt @@ -4,7 +4,7 @@ Types:Creature Devil PT:3/3 K:Haste T:Mode$ Attacks | ValidCard$ Creature.YouCtrl | Execute$ TrigDealDamage | TriggerZones$ Battlefield | TriggerDescription$ Whenever a creature you control attacks, CARDNAME deals 1 damage to the player or planeswalker it's attacking. -SVar:TrigDealDamage:DB$DealDamage | Defined$ TriggeredDefendingPlayer | NumDmg$ 1 +SVar:TrigDealDamage:DB$ DealDamage | Defined$ TriggeredDefender | NumDmg$ 1 SVar:HasAttackEffect:TRUE SVar:Picture:http://www.wizards.com/global/images/magic/general/hellrider.jpg Oracle:Haste\nWhenever a creature you control attacks, Hellrider deals 1 damage to the player or planeswalker it's attacking. diff --git a/forge-gui/res/cardsfolder/k/keranos_god_of_storms.txt b/forge-gui/res/cardsfolder/k/keranos_god_of_storms.txt index 3ddfd4b76c9..20661b73b97 100644 --- a/forge-gui/res/cardsfolder/k/keranos_god_of_storms.txt +++ b/forge-gui/res/cardsfolder/k/keranos_god_of_storms.txt @@ -5,7 +5,7 @@ PT:6/5 K:Indestructible S:Mode$ Continuous | Affected$ Card.Self | RemoveType$ Creature | CheckSVar$ X | SVarCompare$ LT7 | Description$ As long as your devotion to blue and red is less than seven, CARDNAME isn't a creature. SVar:X:Count$DevotionDual.Blue.Red -T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | Static$ True | Execute$ DBReveal | TriggerZones$ Battlefield | PlayerTurn$ True | TriggerDescription$ Reveal the first card you draw on each of your turns. Whenever you reveal a land card this way, draw a card. Whenever you reveal a nonland card this way, CARDNAME deals 3 damage to any target. +T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | Static$ True | Execute$ DBReveal | ForReveal$ True | TriggerZones$ Battlefield | PlayerTurn$ True | TriggerDescription$ Reveal the first card you draw on each of your turns. Whenever you reveal a land card this way, draw a card. Whenever you reveal a nonland card this way, CARDNAME deals 3 damage to any target. SVar:DBReveal:DB$ Reveal | Defined$ You | RevealDefined$ TriggeredCard | RememberRevealed$ True | SubAbility$ DBTriggerLand SVar:DBTriggerLand:DB$ ImmediateTrigger | ConditionDefined$ Remembered | ConditionPresent$ Card.Land+YouCtrl | SubAbility$ DBTriggerNonLand | Execute$ TrigDraw | TriggerDescription$ Whenever you reveal a land card this way, draw a card. SVar:DBTriggerNonLand:DB$ ImmediateTrigger | ConditionDefined$ Remembered | ConditionPresent$ Card.nonLand+YouCtrl | SubAbility$ DBCleanup | Execute$ TrigDmg | TriggerDescription$ Whenever you reveal a nonland card this way, CARDNAME deals 3 damage to any target. diff --git a/forge-gui/res/cardsfolder/k/king_narfis_betrayal.txt b/forge-gui/res/cardsfolder/k/king_narfis_betrayal.txt index 13f34ea2e29..0932dc5546e 100644 --- a/forge-gui/res/cardsfolder/k/king_narfis_betrayal.txt +++ b/forge-gui/res/cardsfolder/k/king_narfis_betrayal.txt @@ -3,8 +3,10 @@ ManaCost:1 U B Types:Enchantment Saga K:Saga:3:DBMill,DBEffect,DBEffect SVar:DBMill:DB$ Mill | NumCards$ 4 | Defined$ Player | SubAbility$ DBRepeatEach | SpellDescription$ Each player mills four cards. Then you may exile a creature or planeswalker card from each graveyard. -SVar:DBRepeatEach:DB$ RepeatEach | RepeatPlayers$ Player | RepeatSubAbility$ DBExile -SVar:DBExile:DB$ ChangeZone | Origin$ Graveyard | Destination$ Exile | ChangeType$ Creature.RememberedPlayerCtrl,Planeswalker.RememberedPlayerCtrl | ChangeNum$ 1 | Chooser$ You | Optional$ True | Hidden$ True +SVar:DBRepeatEach:DB$ RepeatEach | Optional$ True | OptionPrompt$ Do you want to exile a creature or planeswalker card from each graveyard? | RepeatPlayers$ Player | RepeatSubAbility$ DBChooseCard | SubAbility$ DBExile +SVar:DBChooseCard:DB$ ChooseCard | Defined$ You | Choices$ Creature.RememberedPlayerCtrl,Planeswalker.RememberedPlayerCtrl | ChoiceZone$ Graveyard | ChoiceTitle$ Select a creature or planeswalker | Mandatory$ True | RememberChosen$ True +SVar:DBExile:DB$ ChangeZoneAll | Origin$ Graveyard | Destination$ Exile | ChangeType$ Card.IsRemembered +SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True | ClearChosenCard$ True SVar:DBEffect:DB$ Effect | StaticAbilities$ PlayExile | SpellDescription$ Until end of turn, you may cast spells from among cards exiled with CARDNAME, and you may spend mana as though it were mana of any color to cast those spells. SVar:PlayExile:Mode$ Continuous | MayPlayIgnoreType$ True | MayPlayIgnoreColor$ True | MayPlay$ True | Affected$ Card.ExiledWithEffectSource | AffectedZone$ Exile | Description$ You may play cards exiled with EFFECTSOURCE, and you may spend mana as though it were mana of any color to cast those spells. DeckHas:Ability$Mill diff --git a/forge-gui/res/cardsfolder/k/koma_cosmos_serpent.txt b/forge-gui/res/cardsfolder/k/koma_cosmos_serpent.txt index 6adad3b55d8..33f3d99c91a 100644 --- a/forge-gui/res/cardsfolder/k/koma_cosmos_serpent.txt +++ b/forge-gui/res/cardsfolder/k/koma_cosmos_serpent.txt @@ -6,8 +6,8 @@ K:CARDNAME can't be countered. T:Mode$ Phase | Phase$ Upkeep | TriggerZones$ Battlefield | Execute$ TrigToken | TriggerDescription$ At the beginning of each upkeep, create a 3/3 blue Serpent creature token named Koma's Coil. SVar:TrigToken:DB$ Token | TokenAmount$ 1 | TokenScript$ komas_coil | TokenOwner$ You A:AB$ Charm | Cost$ Sac<1/Serpent.Other/another Serpent> | Choices$ DBTap,DBPump -SVar:DBTap:DB$ Tap | ValidTgts$ Permanent | TgtPrompt$ Select target permanent | SubAbility$ DBConstrict | SpellDescription$ Tap target permanent. Its activated abilities can't be activated this turn. -SVar:DBConstrict:DB$ Pump | Defined$ ParentTarget | KW$ HIDDEN CARDNAME's activated abilities can't be activated. +SVar:DBTap:DB$ Tap | ValidTgts$ Permanent | TgtPrompt$ Select target permanent | SubAbility$ DBConstrict | StackDescription$ Tap {c:Targeted}. Its activated abilities can't be activated this turn. | SpellDescription$ Tap target permanent. Its activated abilities can't be activated this turn. +SVar:DBConstrict:DB$ Pump | Defined$ ParentTarget | KW$ HIDDEN CARDNAME's activated abilities can't be activated. | StackDescription$ None SVar:DBPump:DB$ Pump | Defined$ Self | KW$ Indestructible | SpellDescription$ CARDNAME gains indestructible until end of turn. DeckHas:Ability$Token & Ability$Sacrifice Oracle:This spell can't be countered.\nAt the beginning of each upkeep, create a 3/3 blue Serpent creature token named Koma's Coil.\nSacrifice another Serpent: Choose one —\n• Tap target permanent. Its activated abilities can't be activated this turn.\n• Koma, Cosmos Serpent gains indestructible until end of turn. diff --git a/forge-gui/res/cardsfolder/l/living_death.txt b/forge-gui/res/cardsfolder/l/living_death.txt index c7acaa134bb..eabd10da944 100644 --- a/forge-gui/res/cardsfolder/l/living_death.txt +++ b/forge-gui/res/cardsfolder/l/living_death.txt @@ -2,9 +2,9 @@ Name:Living Death ManaCost:3 B B Types:Sorcery A:SP$ ChangeZoneAll | Cost$ 3 B B | ChangeType$ Creature | Origin$ Graveyard | Destination$ Exile | RememberChanged$ True | ForgetOtherRemembered$ True | SubAbility$ DBSacrifice | AILogic$ LivingDeath | SpellDescription$ Each player exiles all creature cards from their graveyard, then sacrifices all creatures they control, then puts all cards they exiled this way onto the battlefield. -SVar:DBSacrifice:DB$SacrificeAll | ValidCards$ Creature | SubAbility$ DBReturn -SVar:DBReturn:DB$ChangeZone | Defined$ Remembered | Origin$ Exile | Destination$ Battlefield | SubAbility$ DBCleanup -SVar:DBCleanup:DB$Cleanup | ClearRemembered$ True +SVar:DBSacrifice:DB$ SacrificeAll | ValidCards$ Creature | SubAbility$ DBReturn +SVar:DBReturn:DB$ ChangeZone | Defined$ Remembered | Origin$ Exile | Destination$ Battlefield | SubAbility$ DBCleanup +SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True AI:RemoveDeck:Random SVar:IsReanimatorCard:TRUE SVar:Picture:http://www.wizards.com/global/images/magic/general/living_death.jpg diff --git a/forge-gui/res/cardsfolder/m/mercurial_transformation.txt b/forge-gui/res/cardsfolder/m/mercurial_transformation.txt index 8ffc86c268e..7229fe9ed40 100644 --- a/forge-gui/res/cardsfolder/m/mercurial_transformation.txt +++ b/forge-gui/res/cardsfolder/m/mercurial_transformation.txt @@ -3,6 +3,6 @@ ManaCost:1 U Types:Sorcery Lesson A:SP$ Animate | Cost$ 1 U | ValidTgts$ Permanent.nonLand | TgtPrompt$ Select target nonland permanent | RemoveAllAbilities$ True | SubAbility$ DBChoose | SpellDescription$ Until end of turn, target nonland permanent loses all abilities and becomes your choice of a blue Frog creature with base power and toughness 1/1 or a blue Octopus creature with base power and toughness 4/4. SVar:DBChoose:DB$ GenericChoice | Defined$ You | Choices$ DBFrog,DBOctopus | StackDescription$ None -SVar:DBFrog:DB$ Animate | Power$ 1 | Toughness$ 1 | Colors$ Blue | OverwriteColors$ True | Types$ Creature,Frog | RemoveCreatureTypes$ True | IsCurse$ True | Defined$ Targeted | SpellDescription$ Until end of turn, target nonland permanent loses all abilities and becomes a blue Frog with base power and toughness 1/1. -SVar:DBOctopus:DB$ Animate | Power$ 4 | Toughness$ 4 | Colors$ Blue | OverwriteColors$ True | Types$ Creature,Octopus | RemoveCreatureTypes$ True | IsCurse$ True | Defined$ Targeted | SpellDescription$ Until end of turn, target nonland permanent loses all abilities and becomes a blue Octopus with base power and toughness 4/4. +SVar:DBFrog:DB$ Animate | Power$ 1 | Toughness$ 1 | Colors$ Blue | OverwriteColors$ True | Types$ Creature,Frog | RemoveCardTypes$ True | RemoveSubTypes$ True | IsCurse$ True | Defined$ Targeted | SpellDescription$ Until end of turn, target nonland permanent loses all abilities and becomes a blue Frog with base power and toughness 1/1. +SVar:DBOctopus:DB$ Animate | Power$ 4 | Toughness$ 4 | Colors$ Blue | OverwriteColors$ True | Types$ Creature,Octopus | RemoveCardTypes$ True | RemoveSubTypes$ True | IsCurse$ True | Defined$ Targeted | SpellDescription$ Until end of turn, target nonland permanent loses all abilities and becomes a blue Octopus with base power and toughness 4/4. Oracle:Until end of turn, target nonland permanent loses all abilities and becomes your choice of a blue Frog creature with base power and toughness 1/1 or a blue Octopus creature with base power and toughness 4/4. diff --git a/forge-gui/res/cardsfolder/p/planar_ally.txt b/forge-gui/res/cardsfolder/p/planar_ally.txt index 065fa26b486..73408cb314f 100644 --- a/forge-gui/res/cardsfolder/p/planar_ally.txt +++ b/forge-gui/res/cardsfolder/p/planar_ally.txt @@ -3,6 +3,6 @@ ManaCost:3 W W Types:Creature Angel PT:3/3 K:Flying -T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ DBVenture | TriggerDescription$ Whenever CARDNAME enters the battlefield or attacks, venture into the dungeon. (Enter the first room or advance to the next room.) +T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ DBVenture | TriggerDescription$ Whenever CARDNAME attacks, venture into the dungeon. (Enter the first room or advance to the next room.) SVar:DBVenture:DB$ Venture | Defined$ You Oracle:Flying\nWhenever Planar Ally attacks, venture into the dungeon. (Enter the first room or advance to the next room.) diff --git a/forge-gui/res/cardsfolder/p/prey_upon.txt b/forge-gui/res/cardsfolder/p/prey_upon.txt index c5fff12bcf4..dd42d714b8b 100644 --- a/forge-gui/res/cardsfolder/p/prey_upon.txt +++ b/forge-gui/res/cardsfolder/p/prey_upon.txt @@ -1,7 +1,6 @@ Name:Prey Upon ManaCost:G Types:Sorcery -A:SP$ Pump | Cost$ G | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Choose target creature you control | SubAbility$ DBFight | SpellDescription$ Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.) -SVar:DBFight:DB$ Fight | Defined$ ParentTarget | ValidTgts$ Creature.YouDontCtrl | TgtPrompt$ Choose target creature you don't control -SVar:Picture:http://www.wizards.com/global/images/magic/general/prey_upon.jpg +A:SP$ Pump | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Choose target creature you control | SubAbility$ DBFight | StackDescription$ Target creature you control [{c:ThisTargetedCard}] | SpellDescription$ Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.) +SVar:DBFight:DB$ Fight | Defined$ ParentTarget | ValidTgts$ Creature.YouDontCtrl | TgtPrompt$ Choose target creature you don't control | StackDescription$ fights target creature you don't control [{c:ThisTargetedCard}]. (Each deals damage equal to its power to the other.) Oracle:Target creature you control fights target creature you don't control. (Each deals damage equal to its power to the other.) diff --git a/forge-gui/res/cardsfolder/p/primitive_etchings.txt b/forge-gui/res/cardsfolder/p/primitive_etchings.txt index 71a23e3e023..9b78721ff92 100644 --- a/forge-gui/res/cardsfolder/p/primitive_etchings.txt +++ b/forge-gui/res/cardsfolder/p/primitive_etchings.txt @@ -1,7 +1,7 @@ Name:Primitive Etchings ManaCost:2 G G Types:Enchantment -T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | Static$ True | Execute$ DBReveal | TriggerZones$ Battlefield | TriggerDescription$ Reveal the first card you draw each turn. Whenever you reveal a creature card this way, draw a card. +T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | Static$ True | ForReveal$ True | Execute$ DBReveal | TriggerZones$ Battlefield | TriggerDescription$ Reveal the first card you draw each turn. Whenever you reveal a creature card this way, draw a card. SVar:DBReveal:DB$ Reveal | Defined$ You | RevealDefined$ TriggeredCard | RememberRevealed$ True | SubAbility$ DBTrigger SVar:DBTrigger:DB$ ImmediateTrigger | ConditionDefined$ Remembered | ConditionPresent$ Card.Creature+YouCtrl | SubAbility$ DBCleanup | Execute$ TrigDraw | TriggerDescription$ Whenever you reveal a creature card this way, draw a card. SVar:TrigDraw:DB$Draw | NumCards$ 1 diff --git a/forge-gui/res/cardsfolder/r/rals_dispersal.txt b/forge-gui/res/cardsfolder/r/rals_dispersal.txt index 09cb7abfd99..506f315aa88 100644 --- a/forge-gui/res/cardsfolder/r/rals_dispersal.txt +++ b/forge-gui/res/cardsfolder/r/rals_dispersal.txt @@ -1,7 +1,7 @@ Name:Ral's Dispersal ManaCost:3 U U Types:Instant -A:SP$ ChangeZone | Cost$ 3 U U | ValidTgts$ Creature | TgtPrompt$ Select target creature | Origin$ Battlefield | Destination$ Hand | SubAbility$ DBSearch | SpellDescription$ Return target creature to its owner's hand. You may search you library and/or graveyard for a card named, Ral, Caller of Storms and put it in your hand. If you search your library this way, shuffle it. +A:SP$ ChangeZone | Cost$ 3 U U | ValidTgts$ Creature | TgtPrompt$ Select target creature | Origin$ Battlefield | Destination$ Hand | SubAbility$ DBSearch | SpellDescription$ Return target creature to its owner's hand. You may search your library and/or graveyard for a card named, Ral, Caller of Storms and put it in your hand. If you search your library this way, shuffle it. SVar:DBSearch:DB$ ChangeZone | Origin$ Library | OriginChoice$ True | OriginAlternative$ Graveyard | AlternativeMessage$ Would you like to search your library with this ability? If you do, your library will be shuffled. | Destination$ Hand | ChangeType$ Card.namedRal; Caller of Storms | ChangeNum$ 1 | Optional$ True DeckNeeds:Name$Ral, Caller of Storms Oracle:Return target creature to its owner's hand. You may search your library and/or graveyard for a card named Ral, Caller of Storms, reveal it, and put it into your hand. If you search your library this way, shuffle. diff --git a/forge-gui/res/cardsfolder/r/rowen.txt b/forge-gui/res/cardsfolder/r/rowen.txt index 0e1962d9d52..c0b3df98fba 100644 --- a/forge-gui/res/cardsfolder/r/rowen.txt +++ b/forge-gui/res/cardsfolder/r/rowen.txt @@ -1,7 +1,7 @@ Name:Rowen ManaCost:2 G G Types:Enchantment -T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | Static$ True | Execute$ DBReveal | TriggerZones$ Battlefield | TriggerDescription$ Reveal the first card you draw each turn. Whenever you reveal a basic land card this way, draw a card. +T:Mode$ Drawn | ValidCard$ Card.YouOwn | Number$ 1 | Static$ True | Execute$ DBReveal | ForReveal$ True | TriggerZones$ Battlefield | TriggerDescription$ Reveal the first card you draw each turn. Whenever you reveal a basic land card this way, draw a card. SVar:DBReveal:DB$ Reveal | Defined$ You | RevealDefined$ TriggeredCard | RememberRevealed$ True | SubAbility$ DBTrigger SVar:DBTrigger:DB$ ImmediateTrigger | ConditionDefined$ Remembered | ConditionPresent$ Land.Basic+YouCtrl | SubAbility$ DBCleanup | Execute$ TrigDraw | TriggerDescription$ Whenever you reveal a basic land card this way, draw a card. SVar:TrigDraw:DB$Draw | NumCards$ 1 diff --git a/forge-gui/res/cardsfolder/r/runeforge_champion.txt b/forge-gui/res/cardsfolder/r/runeforge_champion.txt index e015f4d8360..45629c42836 100644 --- a/forge-gui/res/cardsfolder/r/runeforge_champion.txt +++ b/forge-gui/res/cardsfolder/r/runeforge_champion.txt @@ -4,6 +4,6 @@ Types:Creature Dwarf Warrior PT:2/3 S:Mode$ Continuous | Affected$ Card.Rune+YouCtrl | AddKeyword$ Alternative Cost:1 | AffectedZone$ Hand,Graveyard,Exile,Library,Command | Description$ You may pay {1} rather than pay the mana cost for Rune spells you cast. T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.Self | Execute$ TrigChange | OptionalDecider$ You | TriggerDescription$ When CARDNAME enters the battlefield, you may search your library and/or graveyard for a Rune card, reveal it, and put it into your hand. If you search your library this way, shuffle. -SVar:TrigChange:DB$ChangeZone | Origin$ Library | Destination$ Hand | ChangeType$ Rune | ChangeNum$ 1 | ShuffleNonMandatory$ True +SVar:TrigChange:DB$ ChangeZone | Origin$ Library | OriginChoice$ True | OriginAlternative$ Graveyard | AlternativeMessage$ Would you like to search your library with this ability? If you do, your library will be shuffled. | Destination$ Hand | ChangeType$ Rune | ChangeNum$ 1 DeckNeeds:Type$Rune Oracle:When Runeforge Champion enters the battlefield, you may search your library and/or graveyard for a Rune card, reveal it, and put it into your hand. If you search your library this way, shuffle.\nYou may pay {1} rather than pay the mana cost for Rune spells you cast. diff --git a/forge-gui/res/cardsfolder/s/soul_snare.txt b/forge-gui/res/cardsfolder/s/soul_snare.txt index b3b4bbc24bf..0899ea87b1d 100644 --- a/forge-gui/res/cardsfolder/s/soul_snare.txt +++ b/forge-gui/res/cardsfolder/s/soul_snare.txt @@ -1,6 +1,6 @@ Name:Soul Snare ManaCost:W Types:Enchantment -A:AB$ ChangeZone | Cost$ W Sac<1/CARDNAME> | ValidTgts$ Creature.attacking+OppCtrl | TgtPrompt$ Select target creature that's attacking you or a planeswalker you control. | Origin$ Battlefield | Destination$ Exile | SpellDescription$ Exile target creature that's attacking you or a planeswalker you control. +A:AB$ ChangeZone | Cost$ W Sac<1/CARDNAME> | ValidTgts$ Creature.attackingYouOrYourPW | TgtPrompt$ Select target creature that's attacking you or a planeswalker you control. | Origin$ Battlefield | Destination$ Exile | SpellDescription$ Exile target creature that's attacking you or a planeswalker you control. SVar:Picture:http://www.wizards.com/global/images/magic/general/soul_snare.jpg Oracle:{W}, Sacrifice Soul Snare: Exile target creature that's attacking you or a planeswalker you control. diff --git a/forge-gui/res/cardsfolder/s/sphinxs_decree.txt b/forge-gui/res/cardsfolder/s/sphinxs_decree.txt index 76ecb48438f..de6d0bc2598 100644 --- a/forge-gui/res/cardsfolder/s/sphinxs_decree.txt +++ b/forge-gui/res/cardsfolder/s/sphinxs_decree.txt @@ -4,7 +4,6 @@ Types:Sorcery A:SP$ RepeatEach | Cost$ 1 W | RepeatPlayers$ Player.Opponent | NextTurnForEachPlayer$ True | RepeatSubAbility$ DBEffect | SpellDescription$ Each opponent can't cast instant or sorcery spells during that player's next turn. SVar:DBEffect:DB$ Effect | Name$ Sphinx's Decree Effect | StaticAbilities$ STCantBeCast | EffectOwner$ Remembered SVar:STCantBeCast:Mode$ CantBeCast | ValidCard$ Instant,Sorcery | Caster$ You | EffectZone$ Command | Description$ You can't cast instant or sorcery spells. -SVar:AIPlayForSub:True AI:RemoveDeck:All SVar:Picture:http://www.wizards.com/global/images/magic/general/sphinxs_decree.jpg Oracle:Each opponent can't cast instant or sorcery spells during that player's next turn. diff --git a/forge-gui/res/cardsfolder/s/stronghold_discipline.txt b/forge-gui/res/cardsfolder/s/stronghold_discipline.txt index 5e26945cb81..c02aa3c798c 100644 --- a/forge-gui/res/cardsfolder/s/stronghold_discipline.txt +++ b/forge-gui/res/cardsfolder/s/stronghold_discipline.txt @@ -4,7 +4,6 @@ Types:Sorcery A:SP$ RepeatEach | Cost$ 2 B B | RepeatPlayers$ Player | RepeatSubAbility$ DBLoseLife | AILogic$ AllPlayerLoseLife | SpellDescription$ Each player loses 1 life for each creature they control. SVar:DBLoseLife:DB$ LoseLife | Defined$ Player.IsRemembered | LifeAmount$ X SVar:X:Count$Valid Creature.RememberedPlayerCtrl -SVar:AIPlayForSub:True AI:RemoveDeck:Random SVar:Picture:http://www.wizards.com/global/images/magic/general/stronghold_discipline.jpg Oracle:Each player loses 1 life for each creature they control. diff --git a/forge-gui/res/cardsfolder/t/toralf_god_of_fury_toralfs_hammer.txt b/forge-gui/res/cardsfolder/t/toralf_god_of_fury_toralfs_hammer.txt index ad3bafd31e6..431af7e2549 100644 --- a/forge-gui/res/cardsfolder/t/toralf_god_of_fury_toralfs_hammer.txt +++ b/forge-gui/res/cardsfolder/t/toralf_god_of_fury_toralfs_hammer.txt @@ -15,7 +15,7 @@ Name:Toralf's Hammer ManaCost:1 R Types:Legendary Artifact Equipment S:Mode$ Continuous | Affected$ Creature.EquippedBy | AddAbility$ HammerDamage | Description$ Equipped creature has "{1}{R}, {T}, Unattach CARDNAME: It deals 3 damage to any target. Return CARDNAME to it owner’s hand." -SVar:HammerDamage:AB$ DealDamage | Cost$ 1 R T Unattach | NumDmg$ 3 | DamageSource$ OriginalHost | ValidTgts$ Creature,Player,Planeswalker | TgtPrompt$ Select any target | SubAbility$ HammerCatch | SpellDescription$ ORIGINALHOST deals 1 damage to any target. Return ORIGINALHOST to its owner's hand. +SVar:HammerDamage:AB$ DealDamage | Cost$ 1 R T Unattach | NumDmg$ 3 | DamageSource$ OriginalHost | ValidTgts$ Creature,Player,Planeswalker | TgtPrompt$ Select any target | SubAbility$ HammerCatch | SpellDescription$ ORIGINALHOST deals 3 damage to any target. Return ORIGINALHOST to its owner's hand. SVar:HammerCatch:DB$ ChangeZone | Origin$ Battlefield | Destination$ Hand | Defined$ OriginalHost S:Mode$ Continuous | Affected$ Card.EquippedBy+Legendary | AddPower$ 3 | Description$ Equipped creature gets +3/+0 as long as it's legendary. K:Equip:1 R diff --git a/forge-gui/res/cardsfolder/t/tragic_lesson.txt b/forge-gui/res/cardsfolder/t/tragic_lesson.txt index c56afdf9200..cba01c5d080 100644 --- a/forge-gui/res/cardsfolder/t/tragic_lesson.txt +++ b/forge-gui/res/cardsfolder/t/tragic_lesson.txt @@ -2,6 +2,6 @@ Name:Tragic Lesson ManaCost:2 U Types:Instant A:SP$ Draw | Cost$ 2 U | NumCards$ 2 | SpellDescription$ Draw two cards. Then discard a card unless you return a land you control to its owner's hand. | SubAbility$ DBDiscard -SVar:DBDiscard:DB$Discard | Defined$ You | NumCards$ 1 | Mode$ TgtChoose | UnlessCost$ Return<1/Land> | UnlessPayer$ You +SVar:DBDiscard:DB$ Discard | Defined$ You | NumCards$ 1 | Mode$ TgtChoose | UnlessCost$ Return<1/Land> | UnlessPayer$ You SVar:Picture:http://www.wizards.com/global/images/magic/general/tragic_lesson.jpg Oracle:Draw two cards. Then discard a card unless you return a land you control to its owner's hand. \ No newline at end of file diff --git a/forge-gui/res/cardsfolder/t/treacherous_terrain.txt b/forge-gui/res/cardsfolder/t/treacherous_terrain.txt index 688aac4490f..284182fd587 100644 --- a/forge-gui/res/cardsfolder/t/treacherous_terrain.txt +++ b/forge-gui/res/cardsfolder/t/treacherous_terrain.txt @@ -5,7 +5,6 @@ A:SP$ RepeatEach | Cost$ 6 R G | RepeatPlayers$ Player.Opponent | RepeatSubAbili SVar:DmgOpp:DB$ DealDamage | Defined$ Remembered | NumDmg$ X SVar:X:Count$Valid Land.RememberedPlayerCtrl K:TypeCycling:Basic:2 -SVar:AIPlayForSub:True AI:RemoveDeck:All SVar:Picture:http://www.wizards.com/global/images/magic/general/treacherous_terrain.jpg Oracle:Treacherous Terrain deals damage to each opponent equal to the number of lands that player controls.\nBasic landcycling {2} ({2}, Discard this card: Search your library for a basic land card, reveal it, put it into your hand, then shuffle.) diff --git a/forge-gui/res/cardsfolder/t/typhoon.txt b/forge-gui/res/cardsfolder/t/typhoon.txt index 21e82841dd1..1d31df789ee 100644 --- a/forge-gui/res/cardsfolder/t/typhoon.txt +++ b/forge-gui/res/cardsfolder/t/typhoon.txt @@ -4,7 +4,6 @@ Types:Sorcery A:SP$ RepeatEach | Cost$ 2 G | RepeatPlayers$ Player.Opponent | RepeatSubAbility$ TyphoonDmg | DamageMap$ True | SpellDescription$ Typhoon deals damage to each opponent equal to the number of Islands that player controls. SVar:TyphoonDmg:DB$ DealDamage | Defined$ Remembered | NumDmg$ X SVar:X:Count$Valid Island.RememberedPlayerCtrl -SVar:AIPlayForSub:True AI:RemoveDeck:Random SVar:Picture:http://www.wizards.com/global/images/magic/general/typhoon.jpg Oracle:Typhoon deals damage to each opponent equal to the number of Islands that player controls. diff --git a/forge-gui/res/cardsfolder/upcoming/champion_of_the_perished.txt b/forge-gui/res/cardsfolder/upcoming/champion_of_the_perished.txt new file mode 100644 index 00000000000..2e3eeb8bae8 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/champion_of_the_perished.txt @@ -0,0 +1,10 @@ +Name:Champion of the Perished +ManaCost:B +Types:Creature Zombie +PT:1/1 +T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Zombie.Other+YouCtrl | TriggerZones$ Battlefield | Execute$ TrigPutCounter | TriggerDescription$ Whenever another Zombie enters the battlefield under your control, put a +1/+1 counter on CARDNAME. +SVar:TrigPutCounter:DB$ PutCounter | CounterType$ P1P1 | CounterNum$ 1 +SVar:BuffedBy:Zombie +DeckHints:Type$Zombie +DeckHas:Ability$Counters +Oracle:Whenever another Zombie enters the battlefield under your control, put a +1/+1 counter on Champion of the Perished. diff --git a/forge-gui/res/cardsfolder/upcoming/consider.txt b/forge-gui/res/cardsfolder/upcoming/consider.txt new file mode 100644 index 00000000000..76e737f6ee6 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/consider.txt @@ -0,0 +1,7 @@ +Name:Consider +ManaCost:U +Types:Instant +A:SP$ Dig | Cost$ U | DigNum$ 1 | ChangeNum$ 1 | DestinationZone$ Graveyard | Optional$ True | LibraryPosition2$ 0 | SubAbility$ DBDraw | SpellDescription$ Look at the top card of your library. You may put that card into your graveyard. Draw a card. +SVar:DBDraw:DB$ Draw | Defined$ You | NumCards$ 1 +DeckHas:Ability$Graveyard +Oracle:Look at the top card of your library. You may put that card into your graveyard. Draw a card. diff --git a/forge-gui/res/cardsfolder/upcoming/infernal_grasp.txt b/forge-gui/res/cardsfolder/upcoming/infernal_grasp.txt new file mode 100644 index 00000000000..ac5917691c9 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/infernal_grasp.txt @@ -0,0 +1,6 @@ +Name:Infernal Grasp +ManaCost:1 B +Types:Instant +A:SP$ Destroy | Cost$ 1 B | ValidTgts$ Creature | TgtPrompt$ Select target creature | SubAbility$ DBLoseLife | SpellDescription$ Destroy target creature. You lose 2 life. +SVar:DBLoseLife:DB$ LoseLife | Defined$ You | LifeAmount$ 2 +Oracle:Destroy target creature. You lose 2 life. diff --git a/forge-gui/res/cardsfolder/upcoming/join_the_dance.txt b/forge-gui/res/cardsfolder/upcoming/join_the_dance.txt new file mode 100644 index 00000000000..cae46be1438 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/join_the_dance.txt @@ -0,0 +1,7 @@ +Name:Join the Dance +ManaCost:G W +Types:Sorcery +K:Flashback:3 G W +A:SP$ Token | Cost$ G W | TokenAmount$ 2 | TokenScript$ w_1_1_human | TokenOwner$ You | SpellDescription$ Create two 1/1 white Human creature tokens. +DeckHas:Ability$Token +Oracle:Create two 1/1 white Human creature tokens.\nFlashback {3}{G}{W} (You may cast this card from your graveyard for its flashback cost. Then exile it.) diff --git a/forge-gui/res/cardsfolder/upcoming/play_with_fire.txt b/forge-gui/res/cardsfolder/upcoming/play_with_fire.txt new file mode 100644 index 00000000000..418d14c1446 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/play_with_fire.txt @@ -0,0 +1,7 @@ +Name:Play with Fire +ManaCost:R +Types:Instant +A:SP$ DealDamage | Cost$ R | ValidTgts$ Creature,Player,Planeswalker | TgtPrompt$ Select any target | NumDmg$ 2 | RememberDamaged$ True | SubAbility$ DBScry | StackDescription$ SpellDescription | SpellDescription$ CARDNAME deals 2 damage to any target. If a player is dealt damage this way, scry 1. +SVar:DBScry:DB$ Scry | Defined$ You | ScryNum$ 1 | ConditionDefined$ Remembered | ConditionPresent$ Player | ConditionCompare$ GE1 | SubAbility$ DBCleanup | StackDescription$ None +SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True +Oracle:Play with Fire deals 2 damage to any target. If a player is dealt damage this way, scry 1. diff --git a/forge-gui/res/cardsfolder/upcoming/skyshroud_ambush.txt b/forge-gui/res/cardsfolder/upcoming/skyshroud_ambush.txt new file mode 100644 index 00000000000..5a93b826b81 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/skyshroud_ambush.txt @@ -0,0 +1,10 @@ +Name:Skyshroud Ambush +ManaCost:1 G +Types:Instant +A:SP$ Pump | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Choose target creature you control | ImprintCards$ ThisTargetedCard | SubAbility$ DBFight | StackDescription$ Target creature you control [{c:ThisTargetedCard}] | SpellDescription$ Target creature you control fights target creature you don't control. When the creature you control wins the fight, draw a card. +SVar:DBFight:DB$ Fight | Defined$ ParentTarget | ValidTgts$ Creature.YouDontCtrl | TgtPrompt$ Choose target creature you don't control | RememberObjects$ ThisTargetedCard | SubAbility$ DBEffect | StackDescription$ fights target creature you don't control [{c:ThisTargetedCard}]. When the creature you control wins the fight, draw a card. +SVar:DBEffect:DB$ Effect | Triggers$ TrigWin | RememberObjects$ Remembered | ImprintCards$ Imprinted | Duration$ UntilStateBasedActionChecked | SubAbility$ DBCleanup +SVar:TrigWin:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Any | ValidCard$ Creature.IsRemembered | IsPresent$ Creature.IsImprinted | NoResolvingCheck$ True | Execute$ TrigDraw | TriggerDescription$ When the creature you control wins the fight, draw a card. +SVar:TrigDraw:DB$ Draw | NumCards$ 1 +SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True | ClearImprinted$ True +Oracle:Target creature you control fights target creature you don't control. When the creature you control wins the fight, draw a card. diff --git a/forge-gui/res/cardsfolder/upcoming/triskaidekaphile.txt b/forge-gui/res/cardsfolder/upcoming/triskaidekaphile.txt new file mode 100644 index 00000000000..7721555f8a3 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/triskaidekaphile.txt @@ -0,0 +1,9 @@ +Name:Triskaidekaphile +ManaCost:1 U +Types:Creature Human Wizard +PT:1/3 +S:Mode$ Continuous | Affected$ You | SetMaxHandSize$ Unlimited | Description$ You have no maximum hand size. +T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | IsPresent$ Card.YouCtrl | PresentZone$ Hand | PresentCompare$ EQ13 | TriggerZones$ Battlefield | Execute$ TrigWin | TriggerDescription$ At the beginning of your upkeep, if you have exactly 13 cards in your hand, you win the game. +SVar:TrigWin:DB$ WinsGame | Defined$ You +A:AB$ Draw | Cost$ 3 U | Defined$ You | NumCards$ 1 +Oracle:You have no maximum hand size.\nAt the beginning of your upkeep, if you have exactly 13 cards in your hand, you win the game.\n{3}{U}: Draw a card. diff --git a/forge-gui/res/cardsfolder/upcoming/wrenn_and_seven.txt b/forge-gui/res/cardsfolder/upcoming/wrenn_and_seven.txt new file mode 100644 index 00000000000..ea0187c1657 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/wrenn_and_seven.txt @@ -0,0 +1,13 @@ +Name:Wrenn and Seven +ManaCost:3 G G +Types:Legendary Planeswalker Wrenn +Loyalty:5 +A:AB$ Dig | Cost$ AddCounter<1/LOYALTY> | Planeswalker$ True | DigNum$ 4 | Reveal$ True | ChangeNum$ All | ChangeValid$ Land | DestinationZone2$ Graveyard | SpellDescription$ Reveal the top four cards of your library. Put all land cards revealed this way into your hand and the rest into your graveyard. +A:AB$ ChangeZone | Cost$ AddCounter<0/LOYALTY> | Planeswalker$ True | Origin$ Hand | Destination$ Battlefield | ChangeType$ Land | ChangeNum$ X | Tapped$ True | StackDescription$ {p:You} puts any number of land cards from their hand onto the battlefield tapped. | SpellDescription$ Put any number of land cards from your hand onto the battlefield tapped. +A:AB$ Token | Cost$ SubCounter<3/LOYALTY> | Planeswalker$ True | TokenOwner$ You | TokenAmount$ 1 | TokenScript$ g_x_x_treefolk_reach_total_lands | SpellDescription$ Create a green Treefolk creature token with reach and "This creature's power and toughness are each equal to the number of lands you control." +A:AB$ ChangeZoneAll | Cost$ SubCounter<8/LOYALTY> | Planeswalker$ True | Ultimate$ True | Origin$ Graveyard | Destination$ Hand | ChangeType$ Card.YouOwn+Permanent | SubAbility$ DBEmblem | SpellDescription$ Return all permanent cards from your graveyard to your hand. You get an emblem with "You have no maximum hand size." +SVar:DBEmblem:DB$ Effect | Name$ Emblem - Wrenn and Seven | Image$ emblem_wrenn_and_seven | StaticAbilities$ UnlimitedHand | Stackable$ False | Duration$ Permanent | AILogic$ Always +SVar:UnlimitedHand:Mode$ Continuous | EffectZone$ Command | Affected$ You | SetMaxHandSize$ Unlimited | Description$ You have no maximum hand size. +SVar:X:Count$ValidHand Land.YouCtrl +DeckHas:Ability$Token & Ability$Graveyard +Oracle:[+1]: Reveal the top four cards of your library. Put all land cards revealed this way into your hand and the rest into your graveyard.\n[0]: Put any number of land cards from your hand onto the battlefield.\n[-3]: Create a green Treefolk creature token with reach and "This creature's power and toughness are each equal to the number of lands you control."\n[-8]: Return all permanent cards from your graveyard to your hand. You get an emblem with "You have no maximum hand size." diff --git a/forge-gui/res/cardsfolder/v/varragoth_bloodsky_sire.txt b/forge-gui/res/cardsfolder/v/varragoth_bloodsky_sire.txt index bddce0a97e4..9bbe8ba7dde 100644 --- a/forge-gui/res/cardsfolder/v/varragoth_bloodsky_sire.txt +++ b/forge-gui/res/cardsfolder/v/varragoth_bloodsky_sire.txt @@ -3,5 +3,5 @@ ManaCost:2 B Types:Legendary Creature Demon Rogue K:Deathtouch PT:2/3 -A:AB$ ChangeZone | Cost$ 1 B | ValidTgts$ Player | Origin$ Library | Destination$ Library | LibraryPosition$ 0 | Mandatory$ True | ChangeType$ Card | ChangeNum$ 1 | Boast$ True | SpellDescription$ Target player searches their library for a card, then shuffles their library and puts that card on top of it. +A:AB$ ChangeZone | Cost$ 1 B | ValidTgts$ Player | Origin$ Library | Destination$ Library | LibraryPosition$ 0 | Mandatory$ True | ChangeType$ Card | ChangeNum$ 1 | Boast$ True | Chooser$ Targeted | SpellDescription$ Target player searches their library for a card, then shuffles their library and puts that card on top of it. Oracle:Deathtouch\nBoast — {1}{B}: Target player searches their library for a card, then shuffles and puts that card on top. (Activate only if this creature attacked this turn and only once each turn.) diff --git a/forge-gui/res/cardsfolder/w/wintermoor_commander.txt b/forge-gui/res/cardsfolder/w/wintermoor_commander.txt index afb72eeef1c..9956b329af0 100644 --- a/forge-gui/res/cardsfolder/w/wintermoor_commander.txt +++ b/forge-gui/res/cardsfolder/w/wintermoor_commander.txt @@ -6,6 +6,7 @@ K:Deathtouch S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetToughness$ X | Description$ CARDNAME's toughness is equal to the number of Knights you control. SVar:X:Count$Valid Knight.YouCtrl SVar:BuffedBy:Knight +SVar:NoZeroToughnessAI:True T:Mode$ Attacks | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigPump | TriggerDescription$ Whenever CARDNAME attacks, another target Knight you control gains indestructible until end of turn. (Damage and effects that say "destroy" don't destroy it.) SVar:TrigPump:DB$ Pump | ValidTgts$ Knight.YouCtrl+Other | TgtPrompt$ Select another target Knight you control | KW$ Indestructible DeckHints:Type$Knight diff --git a/forge-gui/res/editions/Innistrad Midnight Hunt.txt b/forge-gui/res/editions/Innistrad Midnight Hunt.txt new file mode 100644 index 00000000000..c04b68ef900 --- /dev/null +++ b/forge-gui/res/editions/Innistrad Midnight Hunt.txt @@ -0,0 +1,41 @@ +[metadata] +Code=MID +Date=2021-09-24 +Name=Innistrad: Midnight Hunt +Code2=MID +MciCode=mid +Type=Expansion +ScryfallCode=MID +Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand +Prerelease=6 Boosters, 1 RareMythic+ + +[cards] +44 C Consider @Zezhou Chen +81 R Triskaidekaphile @Slawomir Maniak +91 R Champion of the Perished @Kekai Kotaki +107 U Infernal Grasp @Naomi Baker +154 U Play with Fire @Svetlin Velinov +208 M Wrenn and Seven @Heonhwa Choe +229 U Join the Dance @Raoul Vitale +268 L Plains @Alayna Danner +269 L Plains @Dan Mumford +270 L Island @Evan Cagle +271 L Island @Dan Mumford +272 L Swamp @Alayna Danner +273 L Swamp @Dan Mumford +274 L Mountain @Daria Khlebnikova +275 L Mountain @Dan Mumford +276 L Forest @Alayna Danner +277 L Forest @Dan Mumford +278 M Wrenn and Seven @Bram Sels +380 L Plains @Andreas Rocha +381 L Island @Andreas Rocha +382 L Swamp @Kasia 'Kafis' Zielińska +383 L Mountain @Muhammad Firdaus +384 L Forest @Andreas Rocha +385 R Champion of the Perished @Daarken +386 R Triskaidekaphile @Mathias Kollros +388 C Consider @Zezhou Chen +389 U Infernal Grasp @Naomi Baker +390 U Play with Fire @Svetlin Velinov +391 U Join the Dance @Raoul Vitale diff --git a/forge-gui/res/editions/Judge Gift Cards 2021.txt b/forge-gui/res/editions/Judge Gift Cards 2021.txt index 79385693d73..4431aa0944b 100644 --- a/forge-gui/res/editions/Judge Gift Cards 2021.txt +++ b/forge-gui/res/editions/Judge Gift Cards 2021.txt @@ -6,7 +6,9 @@ Type=Promo ScryfallCode=PJ21 [cards] +1 M Morophon, the Boundless @Svetlin Velinov 5 M The Gitrog Monster @Nils Hamm 6 R Grand Arbiter Augustin IV @Matt Stewart 7 M Karlov of the Ghost Council @Wisnu Tan 9 M Nicol Bolas, the Ravager @Lie Setiawan +10 M Zacama, Primal Calamity @Yigit Koroglu diff --git a/forge-gui/res/editions/Jumpstart Historic Horizons.txt b/forge-gui/res/editions/Jumpstart Historic Horizons.txt index 5ef94a8106d..f408849e34e 100644 --- a/forge-gui/res/editions/Jumpstart Historic Horizons.txt +++ b/forge-gui/res/editions/Jumpstart Historic Horizons.txt @@ -1,42 +1,793 @@ [metadata] Code=J21 -Date=2021-08-12 +Date=2021-08-26 Name=Jumpstart: Historic Horizons Type=Draft ScryfallCode=J21 [cards] -0 C Baffling Defenses -0 U Boneyard Aberration -0 C Bounty of the Deep -0 M Davriel, Soul Broker -0 C Davriel's Withering -0 C Ethereal Grasp -0 C Faceless Agent -0 M Freyalise, Skyshroud Partisan -0 M Kiora, the Tide's Fury -0 C Leonin Sanctifier -0 C Longtusk Stalker -0 C Lumbering Lightshield -0 R Managorger Phoenix -0 U Manor Guardian -0 C Mentor of Evos Isle -0 C Plaguecrafter's Familiar -0 R Pool of Vigorous Growth -0 C Reckless Ringleader -0 C Sarkhan's Scorn -0 M Sarkhan, Wanderer to Shiv -0 C Scion of Shiv -0 U Shoreline Scout -0 C Skyshroud Ambush -0 U Skyshroud Lookout -0 U Static Discharge -0 R Subversive Acolyte -0 M Teyo, Aegis Adept -0 R Tome of the Infinite -0 C Veteran Charger -0 U Wingsteed Trainer +1 C Faceless Agent @Nicholas Gregory +2 C Baffling Defenses @Andrey Kuzinskiy +3 R Benalish Partisan @Francisco Miyara +4 C Leonin Sanctifier @Jokubas Uogintas +5 C Lumbering Lightshield @Leanna Crossan +6 M Teyo, Aegis Adept @Billy Christian +7 U Wingsteed Trainer @Valera Lutfullina +8 C Bounty of the Deep @Olena Richards +9 C Ethereal Grasp @Miranda Meeks +10 M Kiora, the Tide's Fury @Magali Villeneuve +11 C Mentor of Evos Isle @Shreya Shetty +12 U Shoreline Scout @Shreya Shetty +13 R Tome of the Infinite @Joseph Meehan +14 U Boneyard Aberration @Slawomir Maniak +15 M Davriel, Soul Broker @Justine Cruz +16 C Davriel's Withering @Alex Brock +17 U Manor Guardian @Slawomir Maniak +18 C Plaguecrafter's Familiar @Nicholas Gregory +19 R Subversive Acolyte @Darren Tan +20 R Managorger Phoenix @Brian Valeza +21 C Reckless Ringleader @Brian Valeza +22 C Sarkhan's Scorn @Daarken +23 M Sarkhan, Wanderer to Shiv @Grzegorz Rutkowski +24 C Scion of Shiv @Grzegorz Rutkowski +25 U Static Discharge @Liiga Smilshkalne +26 M Freyalise, Skyshroud Partisan @Daarken +27 U Longtusk Stalker @Vincent Christiaens +28 R Pool of Vigorous Growth @Jokubas Uogintas +29 C Skyshroud Ambush @Andreas Zafiratos +30 U Skyshroud Lookout @Olena Richards +31 C Veteran Charger @Leanna Crossan +32 U Abiding Grace +33 U Abzan Battle Priest +34 U Abzan Falconer +35 U Aethershield Artificer +36 C Ainok Bond-Kin +37 U Allied Assault +38 U Alseid of Life's Bounty +39 C Angelheart Protector +40 C Angelic Edict +41 U Angelic Exaltation +42 C Angelic Purge +43 C Angel of the Dawn +44 U Angel of the God-Pharaoh +45 C Anointed Chorister +46 C Anointer of Valor +47 C Arcbound Mouser +48 C Arcbound Prototype +49 U Baffling End +50 U Barbed Spike +51 C Battlefield Promotion +52 C Battlefield Raptor +53 U Battle Screech +54 R Blade Splicer +55 C Bonds of Faith +56 R Bonescythe Sliver +57 U Boros Elite +58 C Captivating Unicorn +59 U Cast Out +60 C Celestial Enforcer +61 R Charming Prince +62 C Cloudshift +63 C Codespell Cleric +64 U Conclave Tribunal +65 C Coordinated Charge +66 U Dauntless Bodyguard +67 U Devouring Light +68 C Disciple of the Sun +69 C Djeru's Renunciation +70 C Doomed Traveler +71 C Drannith Healer +72 U Dueling Coach +73 R Elite Spellbinder +74 C Enduring Sliver +75 R Esper Sentinel +76 C Faerie Guidemother +77 C Fairgrounds Patrol +78 C Feat of Resistance +79 U Fencing Ace +80 U Fight as One +81 U First Sliver's Chosen +82 U Flourishing Fox +83 C Forsake the Worldly +84 C Fortify +85 U Gauntlets of Light +86 C Gilded Light +87 U Gird for Battle +88 U Glass Casket +89 U Glorious Enforcer +90 R Hanweir Militia Captain +91 U Healer's Flock +92 C Healer's Hawk +93 U Herald of the Sun +94 C Hive Stirrings +95 C Imposing Vantasaur +96 C Impostor of the Sixth Pride +97 C Irregular Cohort +98 U Journey to Oblivion +99 U King of the Pride +100 C Kor Skyfisher +101 U Lagonna-Band Storyteller +102 C Lancer Sliver +103 C Late to Dinner +104 C Law-Rune Enforcer +105 C Light of Hope +106 C Makeshift Battalion +107 C Martyr for the Cause +108 C Moment of Heroism +109 U Oketra's Attendant +110 C Omen of the Sun +111 U On Serra's Wings +112 C Pacifism +113 C Pious Wayfarer +114 C Radiant's Judgment +115 M Ranger-Captain of Eos +116 C Reprobation +117 R Restoration Angel +118 R Return to the Ranks +119 R Righteous Valkyrie +120 U Roc Egg +121 C Sandsteppe Outcast +122 U Scour the Desert +123 C Sea Gate Banneret +124 U Seal Away +125 C Segovian Angel +126 C Selfless Cathar +127 U Selfless Savior +128 C Sentinel Sliver +129 C Seraph of Dawn +130 U Serra Angel +131 M Serra's Emissary +132 M Serra the Benevolent +133 C Shelter +134 U Shepherd of the Flock +135 U Sigiled Contender +136 U Skyblade's Boon +137 C Snare Tactician +138 C Soul of Migration +139 U Splendor Mare +140 C Stalwart Valkyrie +141 R Starfield Mystic +142 C Star Pupil +143 C Steadfast Sentry +144 U Steelform Sliver +145 C Stirring Address +146 C Sustainer of the Realm +147 U Teyo, the Shieldmage +148 R Thalia's Lieutenant +149 C Thraben Inspector +150 C Thraben Standard Bearer +151 U Thraben Watcher +152 U Triumph of Gerrard +153 U Valiant Rescuer +154 U Valkyrie's Sword +155 U Valorous Stance +156 U Vesperlark +157 C Wall of One Thousand Cuts +158 C Winged Shepherd +159 U Wispweaver Angel +160 C Yoked Plowbeast +161 U Youthful Valkyrie +162 U Zhalfirin Decoy +163 C Aeromoeba +164 U Alirios, Enraptured +165 U Animating Faerie +166 R Archmage's Charm +167 C Aven Eternal +168 C Aviation Pioneer +169 R Bazaar Trademage +170 C Breaching Hippocamp +171 U Brineborn Cutthroat +172 C Bubble Snare +173 C Burdened Aerialist +174 C Burrog Befuddler +175 C Capture Sphere +176 U Censor +177 R Champion of Wits +178 C Choking Tethers +179 C Coralhelm Guide +180 C Crookclaw Transmuter +181 U Diffusion Sliver +182 U Dismiss +183 U Essence Capture +184 C Etherium Spinner +185 U Exclude +186 U Exclusion Mage +187 C Expedition Diviner +188 C Eyekite +189 C Faerie Duelist +190 C Faerie Seer +191 U Faerie Vandal +192 U Filigree Attendant +193 C Floodhound +194 C Foul Watcher +195 C Ghostform +196 U Ghost-Lit Drifter +197 U Giant's Amulet +198 C Glimmerbell +199 C Gust of Wind +200 C Hard Evidence +201 U Hypnotic Sprite +202 R Inniaz, the Gale Force +203 C Into the Roil +204 U Junk Winder +205 C Just the Wind +206 U Jwari Disruption +207 C Keen Glidemaster +208 C Kitesail Corsair +209 C Living Tempest +210 C Lofty Denial +211 U Manic Scribe +212 C Man-o'-War +213 C Mantle of Tides +214 R Master of the Pearl Trident +215 U Merfolk Falconer +216 U Merfolk Trickster +217 U Merrow Reejerey +218 R Mist-Syndicate Naga +219 C Mistwalker +220 C Moonblade Shinobi +221 C Mulldrifter +222 U Neutralize +223 C Ninja of the Deep Hours +224 C Ojutai's Summons +225 C Omen of the Sea +226 U Oneirophage +227 C Parcel Myr +228 C Passwall Adept +229 C Phantasmal Form +230 C Phantom Ninja +231 C Pondering Mage +232 C Prosperous Pirates +233 U Rain of Revelation +234 U Raving Visionary +235 C Recalibrate +236 C Resculpt +237 U Rewind +238 R Rise and Shine +239 C Roaming Ghostlight +240 C Rousing Read +241 C Sailor of Means +242 C Scour All Possibilities +243 U Scour the Laboratory +244 U Scuttletide +245 U Scuttling Sliver +246 C Shaper Apprentice +247 U Sigiled Starfish +248 U Silvergill Adept +249 U Skatewing Spy +250 U Skilled Animator +251 C Skyclave Squid +252 C So Shiny +253 U Specimen Collector +254 U Spectral Sailor +255 C Steelfin Whale +256 U Stitchwing Skaab +257 C Storm Sculptor +258 U Supreme Will +259 M Svyelun of Sea and Sky +260 C Tazeem Roilmage +261 R Thought Monitor +262 U Tide Skimmer +263 C Tightening Coils +264 U Tolarian Kraken +265 C Tome Anima +266 U Turn into a Pumpkin +267 U Unsubstantiate +268 C Unsummon +269 C Vexing Gull +270 R Voracious Greatshark +271 U Waker of Waves +272 U Waterkin Shaman +273 C Waterknot +274 C Watertrap Weaver +275 C Windcaller Aven +276 U Windstorm Drake +277 C Winged Words +278 C Witching Well +279 R Wonder +280 U Wormhole Serpent +281 C Abnormal Endurance +282 U Accursed Horde +283 C Alchemist's Gift +284 C Anointed Deacon +285 U Archfiend of Sorrows +286 R Asylum Visitor +287 C Azra Smokeshaper +288 C Black Cat +289 C Blighted Bat +290 C Blight Keeper +291 C Blitz Leech +292 U Blood Artist +293 C Blood Burglar +294 U Bloodchief's Thirst +295 C Blood Glutton +296 U Bond of Revival +297 C Boneclad Necromancer +298 C Bone Shards +299 C Burglar Rat +300 C Cabal Initiate +301 R Callous Bloodmage +302 U Carrier Thrall +303 C Cemetery Recruitment +304 C Changeling Outcast +305 U Clattering Augur +306 R Cordial Vampire +307 C Corpse Churn +308 R Dark Salvation +309 U Davriel, Rogue Shadowmage +310 C Davriel's Shadowfugue +311 C Deadly Alliance +312 C Deathbloom Thallid +313 U Deathless Ancient +314 C Death Wind +315 R Dire Fleet Poisoner +316 R Diregraf Colossus +317 C Discerning Taste +318 C Drainpipe Vermin +319 U Dregscape Sliver +320 C Echoing Return +321 C Elderfang Disciple +322 R Endling +323 C Epicure of Blood +324 U Eternal Taskmaster +325 C Eyeblight Assassin +326 C Facevaulter +327 C Feed the Serpent +328 C Feed the Swarm +329 U Fell Specter +330 C First-Sphere Gargantua +331 U Fleshbag Marauder +332 C Gilt-Blade Prowler +333 U Goremand +334 U Graveshifter +335 C Grim Physician +336 U Haunted Dead +337 U Heartless Act +338 U Heir of Falkenrath +339 C Hell Mongrel +340 U Indulgent Aristocrat +341 C Karfell Kennel-Master +342 C Kitchen Imp +343 U Kraul Swarm +344 U Leeching Sliver +345 U Legion Vanguard +346 U Liliana's Devotee +347 U Liliana's Elite +348 C Liliana's Steward +349 U Lord of the Accursed +350 C Macabre Waltz +351 C Marauding Blight-Priest +352 C Marauding Boneslasher +353 C Mark of the Vampire +354 U Markov Crusader +355 R Marrow-Gnawer +356 C Miasmic Mummy +357 C Mind Rake +358 U Mire Triton +359 C Mob +360 C Moment of Craving +361 C Murder +362 R Murderous Rider +363 R Necrogoyf +364 U Necromancer's Familiar +365 C Nested Shambler +366 R Nether Spirit +367 C Nezumi Cutthroat +368 R Nullpriest of Oblivion +369 C Ob Nixilis's Cruelty +370 C Okiba-Gang Shinobi +371 U Pelakka Predation +372 R Piper of the Swarm +373 U Plaguecrafter +374 C Plague Wight +375 C Putrid Goblin +376 C Queen's Agent +377 C Raise the Draugr +378 C Ransack the Lab +379 C Rat Colony +380 C Reaper of Night +381 C Ruin Rat +382 C Shambling Goblin +383 C Sinister Starfish +384 C Skullsnatcher +385 C Skymarch Bloodletter +386 U Sling-Gang Lieutenant +387 C Strangling Spores +388 C Subtle Strike +389 U Sudden Edict +390 C Supernatural Stamina +391 U Throatseeker +392 U Thwart the Grave +393 C Tourach's Canticle +394 C Typhoid Rats +395 U Unbreakable Bond +396 U Undead Augur +397 C Unexpected Fangs +398 U Urgoros, the Empty One +399 U Vampire of the Dire Moon +400 C Venomous Changeling +401 C Vermin Gorger +402 C Village Rites +403 U Void Beckoner +404 C Warteye Witch +405 M Yawgmoth, Thran Physician +406 U Young Necromancer +407 C Alchemist's Greeting +408 C Arcbound Slasher +409 C Arcbound Tracker +410 U Arcbound Whelp +411 C Barge In +412 U Battle-Rattle Shaman +413 U Battle Squadron +414 U Beetleback Chief +415 U Belligerent Sliver +416 R Birgi, God of Storytelling +417 C Bladeback Sliver +418 U Blazing Rootwalla +419 C Blisterstick Shaman +420 R Bloodbraid Marauder +421 C Bloodhaze Wolverine +422 C Blur Sliver +423 C Bogardan Dragonheart +424 R Breya's Apprentice +425 C Burn Bright +426 C Burning-Tree Vandal +427 U Captain Ripley Vance +428 C Cathartic Reunion +429 U Clamor Shaman +430 C Cleaving Sliver +431 R Conspiracy Theorist +432 R Dark-Dweller Oracle +433 C Destructive Digger +434 U Dragon Egg +435 C Dragon Fodder +436 C Dragon Hatchling +437 C Dragon Mantle +438 U Dragon's Rage Channeler +439 C Faithless Salvaging +440 C Fiery Temper +441 C Fire Prophecy +442 C Fissure Wizard +443 C Fists of Flame +444 U Flameblade Adept +445 U Flame Sweep +446 C Foundry Street Denizen +447 U Furnace Whelp +448 U Furyblade Vampire +449 R Gadrak, the Crown-Scourge +450 C Galvanic Relay +451 U Gempalm Incinerator +452 C Geomancer's Gambit +453 C Goatnap +454 C Goblin Arsonist +455 U Goblin Barrage +456 C Goblin Bird-Grabber +457 R Goblin Dark-Dwellers +458 R Goblin Engineer +459 U Goblin Morningstar +460 U Goblin Oriflamme +461 U Goblin Rally +462 C Goblin Wizardry +463 C Gouged Zealot +464 U Grinning Ignus +465 U Guttersnipe +466 R Harmonic Prodigy +467 U Hellkite Punisher +468 C Hobblefiend +469 U Hollowhead Sliver +470 U Hordeling Outburst +471 C Igneous Elemental +472 C Incendiary Oracle +473 U Incorrigible Youths +474 U Insatiable Gorgers +475 C Insolent Neonate +476 R Irencrag Pyromancer +477 C Kargan Dragonrider +478 C Keldon Raider +479 U Kinetic Augur +480 C Krenko's Command +481 U Kuldotha Flamefiend +482 U Lava Coil +483 U Lightning Axe +484 C Lightning Spear +485 C Lightning Visionary +486 U Living Lightning +487 C Mad Prophet +488 U Mad Ratter +489 C Merchant of the Vale +490 C Omen of the Forge +491 U Orcish Vandal +492 C Oread of Mountain's Blaze +493 U Ore-Scale Guardian +494 C Ornery Goblin +495 R Pashalik Mons +496 U Rage Forger +497 U Rapacious Dragon +498 U Ravenous Bloodseeker +499 U Ravenous Intruder +500 C Reckless Charge +501 U Reckless Racer +502 U Reckless Wurm +503 C Renegade Tactics +504 C Revolutionist +505 U Rust Monster +506 C Sarkhan's Rage +507 U Sarkhan's Whelp +508 C Scorching Dragonfire +509 M Seasoned Pyromancer +510 C Shivan Fire +511 U Shiv's Embrace +512 C Shock +513 C Skophos Reaver +514 U Slag Strider +515 C Sparktongue Dragon +516 C Spinehorn Minotaur +517 R Spiteful Sliver +518 U Spreading Insurrection +519 C Storm Caller +520 U Storm-Kiln Artist +521 U Strike It Rich +522 C Striking Sliver +523 C Sure Strike +524 C Thermo-Alchemist +525 C Thrill of Possibility +526 U Throes of Chaos +527 R Thunderbreak Regent +528 C Tormenting Voice +529 C Unholy Heat +530 C Viashino Lashclaw +531 U Volcanic Dragon +532 U Volley Veteran +533 C Warlord's Fury +534 C Weaselback Redcap +535 U Young Pyromancer +536 U You See a Pair of Goblins +537 C Adaptive Snapjaw +538 C Aetherstream Leopard +539 R Aeve, Progenitor Ooze +540 C Arbor Armament +541 U Armorcraft Judge +542 C Awaken the Bear +543 R Ayula, Queen Among Bears +544 C Bannerhide Krushok +545 C Battering Krasis +546 C Bear Cub +547 U Bestial Menace +548 U Biogenic Upgrade +549 C Bloom Hulk +550 R Bristling Hydra +551 C Charge Through +552 M Chatterfang, Squirrel General +553 C Chatter of the Squirrel +554 C Chatterstorm +555 R Chitterspitter +556 C Courage in Crisis +557 C Crocanura +558 C Deepwood Denizen +559 U Destiny Spinner +560 R Dragonsguard Elite +561 C Duskshell Crawler +562 U Dwynen's Elite +563 C Elderleaf Mentor +564 U Elven Bow +565 U Enlarge +566 R Esika's Chariot +567 U Evolution Sage +568 C Excavating Anurid +569 U Exuberant Wolfbear +570 C Ferocious Pup +571 C Fierce Witchstalker +572 U Flaxen Intruder +573 C Funnel-Web Recluse +574 U Ghirapur Guide +575 C Gift of Growth +576 C Glimmer Bairn +577 C Gnarlid Colony +578 R Goreclaw, Terror of Qal Sisma +579 C Grizzled Outrider +580 C Grizzly Bears +581 C Guardian Gladewalker +582 R Hardened Scales +583 C Harrow +584 U Herd Baloth +585 C Highspire Infusion +586 C Hunter's Edge +587 U Hunting Pack +588 U Incremental Growth +589 U Inspiring Call +590 U Invigorating Surge +591 U Iridescent Hornbeetle +592 C Jewel-Eyed Cobra +593 C Jungleborn Pioneer +594 C Kujar Seedsculptor +595 C Lifecraft Cavalry +596 U Littjara Glade-Warden +597 C Llanowar Elves +598 U Llanowar Tribe +599 C Llanowar Visionary +600 U Longtusk Cub +601 U Manaweft Sliver +602 R Marwyn, the Nurturer +603 U Might of the Masses +604 C Mother Bear +605 U Mowu, Loyal Companion +606 C Murasa Behemoth +607 U Nantuko Cultivator +608 U Nessian Hornbeetle +609 C Nylea's Forerunner +610 R Oran-Rief Ooze +611 U Overcome +612 C Owlbear +613 C Pack's Favor +614 U Paradise Druid +615 R Parallel Lives +616 U Peema Aether-Seer +617 C Penumbra Bobcat +618 C Pollenbright Druid +619 C Predatory Sliver +620 C Prey's Vengeance +621 C Professor of Zoomancy +622 C Riparian Tiger +623 R Rishkar, Peema Renegade +624 C Runeclaw Bear +625 C Sabertooth Mauler +626 C Sage of Shaila's Claim +627 R Sanctum Weaver +628 C Saproling Migration +629 C Sauroform Hybrid +630 C Savage Swipe +631 U Scale Up +632 C Scurrid Colony +633 U Scurry Oak +634 U Servant of the Conduit +635 C Servant of the Scale +636 C Setessan Skirmisher +637 C Skola Grovedancer +638 C Smell Fear +639 C Snakeskin Veil +640 U Song of Freyalise +641 U Spore Swarm +642 C Springbloom Druid +643 U Sprouting Renewal +644 R Squirrel Mob +645 U Squirrel Sanctuary +646 U Squirrel Sovereign +647 R Squirrel Wrangler +648 C Striped Bears +649 R Sylvan Anthem +650 C Tajuru Pathwarden +651 U Taunting Arbormage +652 U Tempered Sliver +653 C Thriving Rhino +654 U Timeless Witness +655 U Tireless Provisioner +656 C Titanic Brawl +657 C Titanic Growth +658 C Trufflesnout +659 C Trumpeting Herd +660 C Twin-Silk Spider +661 U Ulvenwald Mysteries +662 C Urban Daggertooth +663 U Vastwood Fortification +664 R Verdant Command +665 C Vivien's Grizzly +666 U Webweaver Changeling +667 C Wildheart Invoker +668 U Wild Onslaught +669 U Wildwood Scourge +670 C Winding Way +671 U Woodland Champion +672 U Wren's Run Hydra +673 C Yavimaya Sapherd +674 U Acolyte of Affliction +675 C Aeromunculus +676 C Applied Biomancy +677 U Arcbound Shikari +678 U Arcus Acolyte +679 U Ascent of the Worthy +680 C Breathless Knight +681 U Bred for the Hunt +682 C Captured by Lagacs +683 R Chainer, Nightmare Adept +684 C Chrome Courier +685 R Cloudshredder Sliver +686 U Combine Chrysalis +687 C Drey Keeper +688 U Elusive Krasis +689 U Etchings of the Chosen +690 U Fall of the Impostor +691 M The First Sliver +692 U Glowspore Shaman +693 C Goblin Anarchomancer +694 U Good-Fortune Unicorn +695 U Graceful Restoration +696 U Improbable Alliance +697 U Ingenious Infiltrator +698 U Jungle Creeper +699 U Justice Strike +700 R Knight of Autumn +701 U Lavabelly Sliver +702 U Lazotep Chancellor +703 R Lonis, Cryptozoologist +704 R Lord of Extinction +705 U Munitions Expert +706 U Nimbus Swimmer +707 R Priest of Fell Rites +708 U Prophetic Titan +709 U Rakdos Headliner +710 R Reap the Past +711 U Rip Apart +712 U Rotwidow Pack +713 U Ruination Rioter +714 C Shambleshark +715 U Sharktocrab +716 R Simic Ascendancy +717 U Skull Prophet +718 U Soulherder +719 U Spire Patrol +720 R Sterling Grove +721 C Storm God's Oracle +722 R Sythis, Harvest's Hand +723 C Terminal Agony +724 R Territorial Kavu +725 U Thundering Djinn +726 C Wavesifter +727 U Loch Dragon +728 U Ravenous Squirrel +729 C Scuttlegator +730 U Fast // Furious +731 U Integrity // Intervention +732 R Abandoned Sarcophagus +733 U Altar of the Goyf +734 C Amorphous Axe +735 U Batterbone +736 U Birthing Boughs +737 U Bloodline Pretender +738 C Bonded Construct +739 C Chromatic Sphere +740 C Cogworker's Puzzleknot +741 U Foundry Inspector +742 C Ichor Wellspring +743 U Icy Manipulator +744 C Implement of Combustion +745 C Implement of Examination +746 C Iron Bully +747 C Lightning-Core Excavator +748 U Monoskelion +749 C Myr Enforcer +750 C Myr Scrapling +751 C Myr Sire +752 R Nettlecyst +753 C Ornithopter of Paradise +754 C Prophetic Prism +755 U Sanctuary Raptor +756 R Scrap Trawler +757 C Sparring Construct +758 U Treasure Keeper +759 C Universal Automaton +760 C Weapon Rack +761 U Witch's Oven +762 R Zabaz, the Glimmerwasp +763 C Barren Moor +764 C Bloodfell Caves +765 C Blossoming Sands +766 C Dismal Backwater +767 C Evolving Wilds +768 C Forgotten Cave +769 C Jungle Hollow +770 C Khalni Garden +771 C Lonely Sandbar +772 C Rugged Highlands +773 C Rupture Spire +774 C Scoured Barrens +775 C Secluded Steppe +776 R Sliver Hive +777 C Swiftwater Cliffs +778 C Thornwood Falls +779 C Tranquil Cove +780 C Tranquil Thicket +781 C Unknown Shores +782 C Wind-Scarred Crag [tokens] - -u_8_8_kraken \ No newline at end of file +u_8_8_kraken diff --git a/forge-gui/res/editions/Secret Lair Drop Series.txt b/forge-gui/res/editions/Secret Lair Drop Series.txt index 945538eb892..cd84f9bcac1 100644 --- a/forge-gui/res/editions/Secret Lair Drop Series.txt +++ b/forge-gui/res/editions/Secret Lair Drop Series.txt @@ -321,6 +321,12 @@ ScryfallCode=SLD 573 C Forest @Alayna Danner 573 C Forest @Alayna Danner 581 M Lucille @Jason Felix +582 R Brainstorm @Mark Poole +589 R Arcane Signet @Dan Frazier +591 R Crash Through @Tyler Walpole +603 M Eldrazi Monument @Cosmin Podar +604 R Ornithopter @Cosmin Podar +606 R Swiftfoot Boots @Cosmin Podar [tokens] b_1_1_faerie_rogue_flying diff --git a/forge-gui/res/formats/Sanctioned/Historic.txt b/forge-gui/res/formats/Sanctioned/Historic.txt index c8c6dbb7895..187fd07d7a2 100644 --- a/forge-gui/res/formats/Sanctioned/Historic.txt +++ b/forge-gui/res/formats/Sanctioned/Historic.txt @@ -4,5 +4,5 @@ Type:Digital Subtype:Arena Effective:2019-11-21 Order:142 -Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AKR, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR +Sets:XLN, RIX, DOM, M19, GRN, G18, RNA, WAR, M20, ELD, HA1, THB, HA2, IKO, HA3, M21, JMP, AKR, ZNR, KLR, KHM, HA4, STX, STA, HA5, AFR, J21 Banned:Agent of Treachery; Channel; Counterspell; Dark Ritual; Demonic Tutor; Field of the Dead; Fires of Invention; Lightning Bolt; Oko, Thief of Crowns; Omnath, Locus of Creation; Natural Order; Nexus of Fate; Once Upon a Time; Swords to Plowshares; Teferi, Time Raveler; Thassa's Oracle; Time Warp; Veil of Summer; Uro, Titan of Nature's Wrath; Wilderness Reclamation; Winota, Joiner of Forces diff --git a/forge-gui/res/languages/ja-JP.properties b/forge-gui/res/languages/ja-JP.properties index 3c2e2a34f49..f4f79519e18 100644 --- a/forge-gui/res/languages/ja-JP.properties +++ b/forge-gui/res/languages/ja-JP.properties @@ -621,7 +621,8 @@ lblNetArchivePioneerDecks=ネットアーカイブデッキ パイオニア lblNetArchiveModernDecks=ネットアーカイブデッキ モダン lblNetArchiveLegacyDecks=ネットアーカイブデッキ レガシー lblNetArchiveVintageDecks=ネットアーカイブデッキ ビンテージ -lblNetArchiveBlockDecks=ネットアーカイブデッキ パウパー +lblNetArchiveBlockDecks=ネットアーカイブデッキ ブロック +lblNetArchivePauperDecks=ネットアーカイブデッキ パウパー #VSubmenuTutorial lblTutorial=チュートリアル lblTutorialMode=チュートリアルモード diff --git a/forge-gui/res/languages/zh-CN.properties b/forge-gui/res/languages/zh-CN.properties index dbb2f7a8351..5c91cf0566b 100644 --- a/forge-gui/res/languages/zh-CN.properties +++ b/forge-gui/res/languages/zh-CN.properties @@ -621,7 +621,8 @@ lblNetArchiveModernDecks=网络摩登套牌存档 lblNetArchivePioneerDecks=网络先驱套牌存档 lblNetArchiveLegacyDecks=网络薪传套牌存档 lblNetArchiveVintageDecks=网络特选套牌存档 -lblNetArchiveBlockDecks=网络全铁套牌存档 +lblNetArchiveBlockDecks=网络环境构筑套牌存档 +lblNetArchivePauperDecks=网络全铁套牌存档 #VSubmenuTutorial lblTutorial=教程 lblTutorialMode=教程模式 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Acclaimed Contender.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Acclaimed Contender.dck new file mode 100755 index 00000000000..5496e294e98 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Acclaimed Contender.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Acclaimed Contender +OpponentName=The Contenders +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Name=ELD Challenge: Acclaimed Contender +Title=Acclaimed Contender +Difficulty=medium +Description="Every champion was once a contender that refused to give up."\n-Rocky Balboa, Rocky +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +[Main] +30 Acclaimed Contender|ELD|2 +30 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Arcanist's Owl.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Arcanist's Owl.dck new file mode 100755 index 00000000000..c4d2369251d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Arcanist's Owl.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Arcanist's Owl +OpponentName=The Owls +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Mystic Sanctuary +HumanExtras= +[metadata] +Title=Arcanist's Owl +Difficulty=hard +Description=The owls start with a land. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Arcanist's Owl +[Main] +30 Arcanist's Owl|ELD +30 Island|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Archon of Absolution.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Archon of Absolution.dck new file mode 100755 index 00000000000..a8a994dacb7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Archon of Absolution.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Archon of Absolution +OpponentName=The Archons +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Name=ELD Challenge: Archon of Absolution +Title=Archon of Absolution +Difficulty=medium +Description="It is the confession, not the priest, that gives us absolution."\n-Oscar Wilde +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +[Main] +30 Archon of Absolution|ELD +30 Plains|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Beanstalk Giant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Beanstalk Giant.dck new file mode 100755 index 00000000000..c08ff42fd74 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Beanstalk Giant.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Beanstalk Giant +OpponentName=The Giants +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Beanstalk Giant +Difficulty=easy +Description=Fee-fi-fo-fum,\nI smell the blood of an Englishman,\nBe he alive, or be he dead\nI'll grind his bones to make my bread. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Beanstalk Giant +[Main] +30 Beanstalk Giant|ELD|2 +30 Forest|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Bonecrusher Giant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Bonecrusher Giant.dck new file mode 100755 index 00000000000..415d17e84dc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Bonecrusher Giant.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Bonecrusher Giant +OpponentName=The Giants +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Bonecrusher Giant +Difficulty=medium +Description=Not every tale ends in glory. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Bonecrusher Giant +[Main] +30 Bonecrusher Giant|ELD|2 +30 Mountain|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Brazen Borrower.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Brazen Borrower.dck new file mode 100755 index 00000000000..ac4d23382cc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Brazen Borrower.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Brazen Borrower +OpponentName=The Borrowers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Brazen Borrower +Difficulty=medium +Description="Human beans are for Borrowers--like bread's for butter!"\n-Arrietty, Mary Norton's The Borrowers +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Brazen Borrower +[Main] +30 Brazen Borrower|ELD|2 +30 Island|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Brimstone Trebuchet.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Brimstone Trebuchet.dck new file mode 100755 index 00000000000..ebb8d06e73d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Brimstone Trebuchet.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Brimstone Trebuchet +OpponentName=The Trebuchets +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Brimstone Trebuchet +Difficulty=easy +Description=Roses are red\nWater comes in liters\nTrebuchets can launch a 90kg stone\nOver 300 meters +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Brimstone Trebuchet +[Main] +30 Brimstone Trebuchet|ELD +4 Castle Embereth|ELD|1 +26 Mountain|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Cauldron Familiar.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Cauldron Familiar.dck new file mode 100755 index 00000000000..143588a05a9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Cauldron Familiar.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Cauldron Familiar +OpponentName=The Familiars +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Midnight Clock +HumanExtras= +[metadata] +Title=Cauldron Familiar +Difficulty=medium +Description=Every day the cat returns to kill the same mouse, which sinks again into the cauldron's brew. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Cauldron Familiar +[Main] +40 Cauldron Familiar|ELD +20 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Clackbridge Troll.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Clackbridge Troll.dck new file mode 100755 index 00000000000..e9475d1ef2e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Clackbridge Troll.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Clackbridge Troll +OpponentName=The Trolls +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Witch's Cottage +HumanExtras= +[metadata] +Title=Clackbridge Troll +Difficulty=medium +Description="Lolololo lol, lololol, lololol. La la la la yaah.\nTrolololol, la-la-la, la-la-la,\nOhoh hahahoh! Hahah hahahoh! Ohoh hahahoh! Hahah hahahoh!\nLolol lol lololol, lolol lol lololol, lolol lol lololol, lolol lolol!"\n-Eduard Khil +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Clackbridge Troll +[Main] +30 Clackbridge Troll|ELD|2 +30 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Clockwork Servant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Clockwork Servant.dck new file mode 100755 index 00000000000..07f4d695653 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Clockwork Servant.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Clockwork Servant +OpponentName=The Servants +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Improbable Alliance +HumanExtras= +[metadata] +Title=Clockwork Servant +Difficulty=medium +Description=The servants start with an Improbable Alliance. +Icon=Dungeon Crawling Colorless.jpg +Deck Type=constructed +Name=ELD Challenge: Clockwork Servant +[Main] +30 Clockwork Servant|ELD +30 Mountain|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Eye Collector.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Eye Collector.dck new file mode 100755 index 00000000000..782c1592295 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Eye Collector.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Eye Collector +OpponentName=The Collectors +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Eye Collector +Difficulty=easy +Description="Lord Rankle will see you now--all he asks is a small token of tribute." +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Eye Collector +[Main] +40 Eye Collector|ELD +20 Swamp|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fae of Wishes.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fae of Wishes.dck new file mode 100755 index 00000000000..e24073617c9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fae of Wishes.dck @@ -0,0 +1,22 @@ +[quest] +id=ELD Challenge: Fae of Wishes +OpponentName=The Fae +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Lucky Clover +HumanExtras= +[metadata] +Title=Fae of Wishes +Difficulty=medium +Description=The fae start with a Lucky Clover. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Fae of Wishes +[Main] +30 Fae of Wishes|ELD|2 +30 Island|ELD|4 +[Sideboard] +100 Heraldic Banner|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Faerie Guidemother.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Faerie Guidemother.dck new file mode 100755 index 00000000000..4d3ab5529c1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Faerie Guidemother.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Faerie Guidemother +OpponentName=The Guidemothers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=The Magic Mirror +HumanExtras= +[metadata] +Title=Faerie Guidemother +Difficulty=medium +Description=The faeries start with the Magic Mirror.\n\n"Somebody bring me something deep fried and smothered in chocolate!"\n-The Fairy Godmother, Shrek 2 +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Faerie Guidemother +[Main] +40 Faerie Guidemother|ELD|2 +20 Plains|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Faerie Vandal.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Faerie Vandal.dck new file mode 100755 index 00000000000..6639b19cbb4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Faerie Vandal.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Faerie Vandal +OpponentName=The Vandals +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=The Magic Mirror +HumanExtras= +[metadata] +Title=Faerie Vandal +Difficulty=hard +Description=The vandals start with the Magic Mirror. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Faerie Vandal +[Main] +30 Faerie Vandal|ELD +30 Island|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Feasting Troll King.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Feasting Troll King.dck new file mode 100755 index 00000000000..eaf4ae2244f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Feasting Troll King.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Feasting Troll King +OpponentName=The Troll Kings +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Feasting Troll King +Difficulty=medium +Description=DO NOT FEED THE TROLLS +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Feasting Troll King +[Main] +30 Feasting Troll King|ELD|2 +30 Gingerbread Cabin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fervent Champion.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fervent Champion.dck new file mode 100755 index 00000000000..7cb4bc889c6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fervent Champion.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Fervent Champion +OpponentName=The Champions +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Embercleave +HumanExtras= +[metadata] +Title=Fervent Champion +Difficulty=hard +Description=The champions start with Embercleave. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Fervent Champion +[Main] +40 Fervent Champion|ELD|2 +20 Mountain|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fire Giants.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fire Giants.dck new file mode 100755 index 00000000000..b7ac586cb56 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Fire Giants.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Fire Giants +OpponentName=The Giants +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Fires of Invention +HumanExtras= +[metadata] +Title=Fire Giants +Difficulty=hard +Description=The giants start with the Fires of Invention. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Fire Giants +[Main] +30 Beanstalk Giant|ELD|2 +30 Forest|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Flutterfox.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Flutterfox.dck new file mode 100755 index 00000000000..78a0c0bcc9c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Flutterfox.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Flutterfox +OpponentName=The Foxes +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Fortifying Provisions +HumanExtras= +[metadata] +Title=Flutterfox +Difficulty=easy +Description="The fox grinned. 'How about a bet, dragon? If I win, the skies are mine.' After he stopped laughing, the dragon agreed."\nTales of the Fae +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Flutterfox +[Main] +40 Flutterfox|ELD +20 Plains|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Foulmire Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Foulmire Knight.dck new file mode 100755 index 00000000000..d4677265942 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Foulmire Knight.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Foulmire Knight +OpponentName=The Knights +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Lucky Clover|Giant's Skewer +HumanExtras= +[metadata] +Title=Foulmire Knight +Difficulty=medium +Description=The knights start with a Lucky Clover and a Giant's Skewer. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Foulmire Knight +[Main] +30 Foulmire Knight|ELD|2 +10 Heraldic Banner|ELD +20 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Garruk, Cursed Huntsman.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Garruk, Cursed Huntsman.dck new file mode 100755 index 00000000000..c65c8046c88 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Garruk, Cursed Huntsman.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Garruk +OpponentName=Garruk, Cursed Huntsman +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Castle Garenbrig|Castle Locthwain|Revenge of Ravens +HumanExtras= +[metadata] +Title=Garruk, Cursed Huntsman +Difficulty=hard +Description=Garruk starts with two lands and a Revenge of Ravens. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Garruk, Cursed Huntsman +[Main] +15 Forest|ELD|2 +30 Garruk, Cursed Huntsman|ELD|2 +15 Swamp|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Giant Opportunity.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Giant Opportunity.dck new file mode 100755 index 00000000000..9de0d8602db --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Giant Opportunity.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Giant Opportunity +OpponentName=The Giants +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Giant Opportunity +Difficulty=medium +Description="Look, if you had one shot\nOne Giant Opportunity\nTo get a 7/7 Giant token\nWould you sac the Food, or just let it slip?"\n-Eminem, Lose Yourself +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Giant Opportunity +[Main] +30 Giant Opportunity|ELD +30 Gingerbread Cabin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Gilded Goose.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Gilded Goose.dck new file mode 100755 index 00000000000..a6ff24c9fba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Gilded Goose.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Gilded Goose +OpponentName=Gilded Goose +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=The Great Henge +HumanExtras= +[metadata] +Title=Gilded Goose +Difficulty=hard +Description=The geese start with the Great Henge. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Gilded Goose +[Main] +20 Forest|ELD|3 +34 Gilded Goose|ELD|2 +6 The Great Henge|ELD \ No newline at end of file diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Glitterbrute.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Glitterbrute.dck new file mode 100755 index 00000000000..67332ac23bf --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Glitterbrute.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Glitterbrute +OpponentName=Glitterbrute +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Glitterbrute +Difficulty=easy +Description="You put the boom-boom into my heart\nYou send my soul sky-high when your hatin' starts\nGlitterbrute into my brain\nGoes a bang-bang-bang 'til my feet do the same"\n-Wham, Wake Me Up Before You Go-Go +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Glitterbrute +[Main] +20 All That Glitters|ELD +20 Gingerbrute|ELD +20 Plains|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Happily Ever After.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Happily Ever After.dck new file mode 100755 index 00000000000..702a71c479a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Happily Ever After.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Happily Ever After +OpponentName=The Royal Family +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=The Great Henge +HumanExtras= +[metadata] +Title=Happily Ever After +Difficulty=easy +Description=Who doesn't love a happy ending? +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Happily Ever After +[Main] +1000 Happily Ever After|ELD|1 +1000 Plains|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Harmonious Archon.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Harmonious Archon.dck new file mode 100755 index 00000000000..f4b1f733f4e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Harmonious Archon.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Harmonious Archon +OpponentName=The Archons +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Idyllic Grange|Idyllic Grange +HumanExtras= +[metadata] +Title=Harmonious Archon +Difficulty=very hard +Description=The archons start with two lands. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Harmonious Archon +[Main] +30 Harmonious Archon|ELD|2 +30 Plains|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Hushbringer.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Hushbringer.dck new file mode 100755 index 00000000000..612cb8ccefa --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Hushbringer.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Hushbringer +OpponentName=The Hushbringers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Fires of Invention +HumanExtras= +[metadata] +Title=Hushbringer +Difficulty=hard +Description=The hushbringers start with the Fires of Invention. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Hushbringer +[Main] +20 Hushbringer|ELD|2 +20 Plains|ELD|4 +20 Heraldic Banner|ELD \ No newline at end of file diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Hypnotic Sprite.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Hypnotic Sprite.dck new file mode 100755 index 00000000000..0df0e865d5e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Hypnotic Sprite.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Hypnotic Sprite +OpponentName=The Sprites +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Hypnotic Sprite +Difficulty=easy +Description=Faerie, Faerie, Faerie Dead\n-Secret Lair +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Hypnotic Sprite +[Main] +40 Hypnotic Sprite|ELD|2 +20 Island|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Inspiring Veteran.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Inspiring Veteran.dck new file mode 100755 index 00000000000..d51c562a577 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Inspiring Veteran.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Inspiring Veteran +OpponentName=The Veterans +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Inspiring Veteran +Difficulty=very hard +Description="I fight for my daughter, who may not set foot on a battlefield for many years. Remember who you fight for." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Inspiring Veteran +[Main] +40 Inspiring Veteran|ELD|2 +20 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Irencrag Pyromancer.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Irencrag Pyromancer.dck new file mode 100755 index 00000000000..bf5de596cb0 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Irencrag Pyromancer.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Irencrag Pyromancer +OpponentName=The Pyromancers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Irencrag Pyromancer +Difficulty=medium +Description="Fear of fire is a sensible instinct. If I were you, I'd be terrified." +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Irencrag Pyromancer +[Main] +20 Golden Egg|ELD +20 Irencrag Pyromancer|ELD|2 +20 Mountain|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Lovestruck Beast.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Lovestruck Beast.dck new file mode 100755 index 00000000000..4331939a5e6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Lovestruck Beast.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Lovestruck Beast +OpponentName=The Beasts +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Lovestruck Beast +Difficulty=hard +Description="If he could learn to love another, and earn her love in return by the time the last petal fell, then the spell would be broken. If not, he would be doomed to remain a beast for all time... For who could ever learn to love a beast?"\n-Disney's 1991 animated feature film Beauty & the Beast +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Lovestruck Beast +[Main] +30 Forest|ELD|1 +30 Lovestruck Beast|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Mad Ratter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Mad Ratter.dck new file mode 100755 index 00000000000..3656f0c4406 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Mad Ratter.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Mad Ratter +OpponentName=The Ratters +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Mad Ratter +Difficulty=easy +Description="Gather round and tell me all from the courts and castles." +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Mad Ratter +[Main] +20 Golden Egg|ELD +20 Mad Ratter|ELD +20 Mountain|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Maraleaf Pixie.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Maraleaf Pixie.dck new file mode 100755 index 00000000000..d7ce2982b80 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Maraleaf Pixie.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Maraleaf Pixie +OpponentName=The Pixies +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Maraleaf Pixie +Difficulty=easy +Description=Neither hostile nor friendly, pixies flit through the forest seeking the treasures of the wilds. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Maraleaf Pixie +[Main] +30 Maraleaf Pixie|ELD +20 Thornwood Falls|ELD +10 Oko, the Trickster|ELD \ No newline at end of file diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Merfolk Secretkeeper.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Merfolk Secretkeeper.dck new file mode 100755 index 00000000000..e7f6fd2717d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Merfolk Secretkeeper.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Merfolk Secretkeeper +OpponentName=The Secretkeepers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Merfolk Secretkeeper +Difficulty=medium +Description=Merfolk curiosity usually has dire consequences, but rarely for the merfolk. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Merfolk Secretkeeper +[Main] +20 Island|ELD|1 +40 Merfolk Secretkeeper|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Moonlit Scavengers.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Moonlit Scavengers.dck new file mode 100755 index 00000000000..5355b5d0e21 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Moonlit Scavengers.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Moonlit Scavengers +OpponentName=The Scavengers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Revenge of Ravens|Revenge of Ravens +HumanExtras= +[metadata] +Title=Moonlit Scavengers +Difficulty=medium +Description=The scavengers start with Revenge of Ravens. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Moonlit Scavengers +[Main] +30 Island|ELD|1 +30 Moonlit Scavengers|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Murderous Rider.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Murderous Rider.dck new file mode 100755 index 00000000000..92e305bb41e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Murderous Rider.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Murderous Rider +OpponentName=The Riders +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Murderous Rider +Difficulty=medium +Description="And I looked, and behold a pale horse: and his name that sat on him was Death, and Hell followed with him."\n-The Bible, Revelation 6:8 +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Murderous Rider +[Main] +30 Murderous Rider|ELD|2 +30 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Oathsworn Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Oathsworn Knight.dck new file mode 100755 index 00000000000..739471a7938 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Oathsworn Knight.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Oathsworn Knight +OpponentName=The Knights +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Knights' Charge +HumanExtras= +[metadata] +Title=Oathsworn Knight +Difficulty=medium +Description="None shall pass!"\n-The Black Knight, Monty Python and the Holy Grail +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Oathsworn Knight +[Main] +30 Oathsworn Knight|ELD|2 +30 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Oko, Thief of Crowns.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Oko, Thief of Crowns.dck new file mode 100755 index 00000000000..05eae4f202c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Oko, Thief of Crowns.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Oko, Thief of Crowns +OpponentName=Oko +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Oko, Thief of Crowns +Difficulty=medium +Description="Oh deer!"\n-Oko +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Oko, Thief of Crowns +[Main] +20 Golden Egg|ELD +20 Oko, Thief of Crowns|ELD|2 +20 Thornwood Falls|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Outlaws' Merriment.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Outlaws' Merriment.dck new file mode 100755 index 00000000000..732c40bfbdb --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Outlaws' Merriment.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Outlaws' Merriment +OpponentName=The Outlaws +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Outlaws' Merriment +HumanExtras= +[metadata] +Title=Outlaws' Merriment +Difficulty=very hard +Description=The Outlaws start with Merriment. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Outlaws' Merriment +[Main] +30 Outlaws' Merriment|ELD +30 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Overwhelmed Apprentice.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Overwhelmed Apprentice.dck new file mode 100755 index 00000000000..cc3ea636b9b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Overwhelmed Apprentice.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Overwhelmed Apprentice +OpponentName=The Apprentices +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Overwhelmed Apprentice +Difficulty=easy +Description="Is this going to be on the test?" +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Overwhelmed Apprentice +[Main] +20 Island|ELD|1 +40 Overwhelmed Apprentice|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Raging Redcap.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Raging Redcap.dck new file mode 100755 index 00000000000..390ed0bfeeb --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Raging Redcap.dck @@ -0,0 +1,21 @@ +[quest] +id=ELD Challenge: Raging Redcap +OpponentName=The Redcaps +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Ferocity of the Wilds|Steelclaw Lance +HumanExtras= +[metadata] +Title=Raging Redcap +Difficulty=medium +Description=Many tales of redcap terror begin with two simple things: bloodlust and stolen steel. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Raging Redcap +[Main] +10 Castle Embereth|ELD|2 +20 Mountain|ELD|2 +30 Raging Redcap|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Rankle, Master of Pranks.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Rankle, Master of Pranks.dck new file mode 100755 index 00000000000..d79678ec534 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Rankle, Master of Pranks.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Rankle, Master of Pranks +OpponentName=Rankle +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Castle Locthwain|Mace of the Valiant +HumanExtras= +[metadata] +Title=Rankle, Master of Pranks +Difficulty=medium +Description=Rankle starts with a land and a Mace of the Valiant. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Rankle, Master of Pranks +[Main] +30 Rankle, Master of Pranks|ELD|2 +30 Swamp|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Realm-Cloaked Giant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Realm-Cloaked Giant.dck new file mode 100755 index 00000000000..74fbea59445 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Realm-Cloaked Giant.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Realm-Cloaked Giant +OpponentName=The Giants +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Spinning Wheel|Spinning Wheel +HumanExtras= +[metadata] +Title=Realm-Cloaked Giant +Difficulty=hard +Description=The giants start with two Spinning Wheels. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Realm-Cloaked Giant +[Main] +30 Plains|ELD|3 +30 Realm-Cloaked Giant|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Robber of the Rich.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Robber of the Rich.dck new file mode 100755 index 00000000000..684e6c0eba9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Robber of the Rich.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Robber of the Rich +OpponentName=The Robbers +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Fires of Invention +HumanExtras= +[metadata] +Title=Robber of the Rich +Difficulty=hard +Description=The robbers start with the Fires of Invention. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Robber of the Rich +[Main] +30 Mountain|ELD|4 +30 Robber of the Rich|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Seven Dwarves.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Seven Dwarves.dck new file mode 100755 index 00000000000..f252832c0b5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Seven Dwarves.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Seven Dwarves +OpponentName=The Dwarves +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Name=ELD Challenge: Seven Dwarves +Title=Seven Dwarves +Difficulty=very hard +Description="The gleam of rubies and my brothers and sisters by my side... what more could I want?"\n-Brognold the Third +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +[Main] +40 Seven Dwarves|ELD +20 Mountain|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Shambling Suit.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Shambling Suit.dck new file mode 100755 index 00000000000..65e309de1c8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Shambling Suit.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Shambling Suit +OpponentName=The Suits +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Shining Armor|Shining Armor +HumanExtras= +[metadata] +Title=Shambling Suit +Difficulty=medium +Description=How does a suit of armor wear a suit of armor? +Icon=Dungeon Crawling Colorless.jpg +Deck Type=constructed +Name=ELD Challenge: Shambling Suit +[Main] +30 Shambling Suit|ELD +30 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Silverwing Squadron.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Silverwing Squadron.dck new file mode 100755 index 00000000000..17455e8b786 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Silverwing Squadron.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Silverwing Squadron +OpponentName=The Silverwings +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Castle Ardenvale|Castle Ardenvale +HumanExtras= +[metadata] +Title=Silverwing Squadron +Difficulty=medium +Description=The Silverwings start with two lands. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Silverwing Squadron +[Main] +30 Plains|ELD|1 +30 Silverwing Squadron|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Stonecoil Serpent.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Stonecoil Serpent.dck new file mode 100755 index 00000000000..bde1b66483d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Stonecoil Serpent.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Stonecoil Serpent +OpponentName=The Serpents +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Stonecoil Serpent +Difficulty=medium +Description=Cast out of Garenbrig for his crimes, Ennor turned to fae magic to fashion the perfect weapon for his revenge. +Icon=Dungeon Crawling Colorless.jpg +Deck Type=constructed +Name=ELD Challenge: Stonecoil Serpent +[Main] +30 Forest|ELD|2 +30 Stonecoil Serpent|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Stormfist Crusader.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Stormfist Crusader.dck new file mode 100755 index 00000000000..07ac475dcca --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Stormfist Crusader.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Stormfist Crusader +OpponentName=The Crusaders +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Steelclaw Lance +HumanExtras= +[metadata] +Title=Stormfist Crusader +Difficulty=medium +Description="As she reached the pinnacle, lightning flashed and her eyes blazed with newfound power."\n-Legend of the Gilded Knights +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Stormfist Crusader +[Main] +30 Stormfist Crusader|ELD|2 +30 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Sundering Stroke.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Sundering Stroke.dck new file mode 100755 index 00000000000..1d0febd144f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Sundering Stroke.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Sundering Stroke +OpponentName=The Highlander +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Castle Embereth|Castle Embereth|Castle Embereth +HumanExtras= +[metadata] +Title=Sundering Stroke +Difficulty=very hard +Description=The Highlander starts with three lands.\n\n"There can be only one!"\n-Connor McLeod from the clan McLeod, Highlander +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD Challenge: Sundering Stroke +[Main] +30 Mountain|ELD|4 +30 Sundering Stroke|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Syr Konrad, the Grim.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Syr Konrad, the Grim.dck new file mode 100755 index 00000000000..f7c02c36f15 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Syr Konrad, the Grim.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Syr Konrad, the Grim +OpponentName=Syr Konrad +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Witch's Cottage|Witch's Cottage|Witch's Cottage|Witch's Cottage +HumanExtras=Roving Keep +[metadata] +Title=Syr Konrad, the Grim +Difficulty=medium +Description=Syr Konrad starts with four lands.\nYou start with a Roving Keep. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD Challenge: Syr Konrad, the Grim +[Main] +20 Syr Konrad, the Grim|ELD +40 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Vantress Gargoyle.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Vantress Gargoyle.dck new file mode 100755 index 00000000000..e580e5e3f96 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Vantress Gargoyle.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Vantress Gargoyle +OpponentName=The Gargoyles +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Vantress Gargoyle +Difficulty=medium +Description="Take it from an old spectator. Life's not a spectator sport. If watchin' is all you're gonna do, then you're gonna watch your life go by without ya."\n-Laverne the Gargoyle, Disney's 1996 animated feature film Hunchback of the Notre Dame +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD Challenge: Vantress Gargoyle +[Main] +30 Castle Vantress|ELD|2 +30 Vantress Gargoyle|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Venerable Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Venerable Knight.dck new file mode 100755 index 00000000000..ba0b4ad70c0 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Venerable Knight.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Venerable Knight +OpponentName=The Knights +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Venerable Knight +Difficulty=easy +Description="May this blade guide you on your great journey, as it did me on mine." +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Venerable Knight +[Main] +20 Idyllic Grange|ELD +40 Venerable Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Wintermoor Commander.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Wintermoor Commander.dck new file mode 100755 index 00000000000..dd52546804c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Wintermoor Commander.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Wintermoor Commander +OpponentName=The Commanders +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Doom Foretold|Golden Egg +HumanExtras= +[metadata] +Title=Wintermoor Commander +Difficulty=hard +Description=The commanders start with Doom Foretold. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Wintermoor Commander +[Main] +20 Tournament Grounds|ELD +40 Wintermoor Commander|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Wolf's Quarry.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Wolf's Quarry.dck new file mode 100755 index 00000000000..7881103f1cd --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Wolf's Quarry.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Wolf's Quarry +OpponentName=The Little Piggies +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=Gingerbread Cabin|Gingerbread Cabin|Gingerbread Cabin|Gingerbread Cabin +HumanExtras= +[metadata] +Title=Wolf's Quarry +Difficulty=medium +Description=This little piggy went to market,\nThis little piggy stayed home,\nAnd this little piggy started with four lands. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD Challenge: Wolf's Quarry +[Main] +30 Forest|ELD|2 +30 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Worthy Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Worthy Knight.dck new file mode 100755 index 00000000000..04faa6f633b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Challenge Worthy Knight.dck @@ -0,0 +1,20 @@ +[quest] +id=ELD Challenge: Worthy Knight +OpponentName=The Knights +AILife=20 +Repeat=true +Wins=0 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras= +HumanExtras= +[metadata] +Title=Worthy Knight +Difficulty=hard +Description=Every Ardenvale aspirant must step through the flame. Their honor determines whether they burn or shine. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD Challenge: Worthy Knight +[Main] +30 Plains|ELD|1 +30 Worthy Knight|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Final Challenge.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Final Challenge.dck new file mode 100755 index 00000000000..c3b632e6f80 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/challenges/ELD Final Challenge.dck @@ -0,0 +1,23 @@ +[quest] +id=ELD Challenge: Final Challenge +OpponentName=The Final Challenge +AILife=20 +Repeat=true +WinMessage=Congratulations!\n\nYou have completed the ultimate challenge in Eldraine and have proven that you are strong enough to defeat the deadliest of opponents.\n\nYou are free to continue playing this quest for as long as you desire or start a new one and try proving yourself yet again. +Wins=20 +Card Reward=chosen card sets:ELD +Credit Reward=120 +AIExtras=The Circle of Loyalty|The Magic Mirror|The Cauldron of Eternity|Embercleave|The Great Henge|Happily Ever After|Mirrormade|Revenge of Ravens|Fires of Invention|Trail of Crumbs|The Royal Scions +HumanExtras= +[metadata] +Title=The Final Challenge +Difficulty=hard +Description=Your opponent starts with a whole bunch of stuff. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD Challenge: Final Challenge +[Main] +40 Plains|ELD|1 +12 Happily Ever After|ELD|1 +4 Silverflame Ritual|ELD +4 Inquisitive Puppet|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Brambles - BG.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Brambles - BG.dck new file mode 100755 index 00000000000..7408c4eca34 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Brambles - BG.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Art: Brambles +Difficulty=easy +Description="Another angry mob? When will they learn to leave me be?"\n-Terryn, Edgewall outcast +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Brambles - BG +[Main] +4 Bramblefort Fink|ELD +4 Deathless Knight|ELD +4 Eye Collector|ELD +4 Foreboding Fruit|ELD +8 Forest|ELD|1 +4 Gingerbread Cabin|ELD +4 Lash of Thorns|ELD +4 Locthwain Paladin|ELD +4 Savvy Hunter|ELD +16 Swamp|ELD|4 +4 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Brambles - GW.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Brambles - GW.dck new file mode 100755 index 00000000000..4f17c284946 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Brambles - GW.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Art: Brambles +Difficulty=easy +Description="Be careful, dear. Some people deserve their curses."\n-Marawen, barrow witch +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Brambles - GW +[Main] +4 Ardenvale Paladin|ELD +4 Bramblefort Fink|ELD +4 Curious Pair|ELD|1 +4 Faeburrow Elder|ELD|1 +10 Forest|ELD|1 +4 Gingerbread Cabin|ELD +4 Lonesome Unicorn|ELD|2 +14 Plains|ELD|4 +4 Trail of Crumbs|ELD +4 True Love's Kiss|ELD +4 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Dinner.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Dinner.dck new file mode 100755 index 00000000000..cebcfea76ab --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Dinner.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Art: Dinner +Difficulty=easy +Description="It's gingerbread, like Mother makes. What is there to be afraid of?" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Dinner +[Main] +4 Bake into a Pie|ELD +2 Curious Pair|ELD|1 +2 Curious Pair|ELD|2 +4 Fabled Passage|ELD|1 +4 Foreboding Fruit|ELD +2 Forest|ELD|2 +4 Frogify|ELD +4 Gingerbread Cabin|ELD +4 Gingerbrute|ELD +4 Inquisitive Puppet|ELD +1 Island|ELD|4 +13 Swamp|ELD|4 +4 Taste of Death|ELD +4 Tempting Witch|ELD +4 Thornwood Falls|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Doggos.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Doggos.dck new file mode 100755 index 00000000000..d8472b7c8ac --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Doggos.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Art: Doggos +Difficulty=easy +Description=You think these walls will protect you? My, you have a dim view of the power of the wilds."\n-Marawen, barrow witch +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Doggos +[Main] +4 Blow Your House Down|ELD +4 Fabled Passage|ELD|1 +4 Fell the Pheasant|ELD +4 Fierce Witchstalker|ELD +4 Flutterfox|ELD +10 Forest|ELD|2 +2 Garruk, Cursed Huntsman|ELD|1 +2 Garruk, Cursed Huntsman|ELD|2 +4 Glass Casket|ELD|1 +4 Mountain|ELD|3 +2 Oakhame Ranger|ELD|1 +2 Oakhame Ranger|ELD|2 +6 Plains|ELD|3 +4 Swamp|ELD|4 +4 Wildwood Tracker|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Fruit.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Fruit.dck new file mode 100755 index 00000000000..b8c6abb4701 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Fruit.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Art: Fruit +Difficulty=easy +Description="Murder clad in crimson beauty,\nAn end to life and love and duty."\n-Barrow witch incantation +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Fruit +[Main] +4 Enchanted Carriage|ELD +4 Fabled Passage|ELD|1 +3 Foreboding Fruit|ELD +4 Forest|ELD|2 +3 Frogify|ELD +4 Inquisitive Puppet|ELD +3 Insatiable Appetite|ELD +5 Island|ELD|4 +4 Maraleaf Pixie|ELD +3 Return to Nature|ELD +9 Swamp|ELD|4 +3 Taste of Death|ELD +4 Tempting Witch|ELD +4 Thornwood Falls|ELD +3 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Horses.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Horses.dck new file mode 100755 index 00000000000..842ca28204d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Horses.dck @@ -0,0 +1,50 @@ +[metadata] +Title=Art: Horses +Difficulty=easy +Description="A good steed will carry you home. A great steed will carry you to glory."\n-Syr Alin, the Lion's Claw +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Horses +[Main] +2 Belle of the Brawl|ELD +1 Blacklance Paragon|ELD|1 +2 Burning-Yard Trainer|ELD +2 Deathless Knight|ELD +4 Fabled Passage|ELD|1 +2 Fell the Pheasant|ELD +2 Fervent Champion|ELD|1 +2 Fireborn Knight|ELD +1 Forest|ELD|1 +1 Forest|ELD|2 +1 Forest|ELD|3 +1 Forest|ELD|4 +1 Island|ELD|1 +1 Island|ELD|2 +1 Island|ELD|3 +1 Island|ELD|4 +2 Joust|ELD +1 Knights' Charge|ELD +2 Locthwain Paladin|ELD +1 Lost Legion|ELD +1 Mountain|ELD|1 +1 Mountain|ELD|2 +1 Mountain|ELD|3 +1 Mountain|ELD|4 +1 Murderous Rider|ELD|1 +1 Murderous Rider|ELD|2 +1 Plains|ELD|1 +1 Plains|ELD|2 +1 Plains|ELD|3 +1 Plains|ELD|4 +2 Resolute Rider|ELD +2 Rowan's Stalwarts|ELD +1 Steelclaw Lance|ELD +1 Swamp|ELD|1 +1 Swamp|ELD|2 +1 Swamp|ELD|3 +1 Swamp|ELD|4 +2 Syr Gwyn, Hero of Ashvale|ELD +1 Syr Konrad, the Grim|ELD +2 Wandermare|ELD +4 Wind-Scarred Crag|ELD +1 Wintermoor Commander|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Ladies' Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Ladies' Knight.dck new file mode 100755 index 00000000000..7134a38fcbc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Ladies' Knight.dck @@ -0,0 +1,33 @@ +[metadata] +Title=Art: Ladies' Knight +Difficulty=easy +Description=These strong, independent women don't need no man. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Ladies' Knight +[Main] +2 Acclaimed Contender|ELD|1 +2 Ardenvale Paladin|ELD +2 Ardenvale Tactician|ELD|1 +2 Belle of the Brawl|ELD +2 Blacklance Paragon|ELD|1 +4 Fabled Passage|ELD|1 +4 Joust|ELD +2 Locthwain Paladin|ELD +1 Lonesome Unicorn|ELD|1 +3 Mountain|ELD|4 +2 Order of Midnight|ELD|1 +5 Plains|ELD|1 +1 Rowan's Battleguard|ELD +1 Rowan, Fearless Sparkmage|ELD +2 Slaying Fire|ELD|1 +2 Stormfist Crusader|ELD|1 +5 Swamp|ELD|2 +1 Syr Carah, the Bold|ELD +1 Syr Gwyn, Hero of Ashvale|ELD +2 Thrill of Possibility|ELD +4 Tournament Grounds|ELD +2 True Love's Kiss|ELD +2 Venerable Knight|ELD +4 Wind-Scarred Crag|ELD +2 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Livestock.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Livestock.dck new file mode 100755 index 00000000000..85852fa682d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Livestock.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Art: Livestock +Difficulty=easy +Description=At the market, no one heeded Hilda's frantic mooing. The fae curse was turning out even worse than she had feared. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Livestock +[Main] +4 Bartered Cow|ELD +4 Clackbridge Troll|ELD|1 +2 Fell the Pheasant|ELD +5 Forest|ELD|4 +4 Giant's Skewer|ELD +4 Gilded Goose|ELD|1 +4 Gingerbread Cabin|ELD +4 Gluttonous Troll|ELD +4 Golden Egg|ELD +4 Idyllic Grange|ELD +5 Plains|ELD|1 +2 Shepherd of the Flock|ELD|1 +2 Shepherd of the Flock|ELD|2 +6 Swamp|ELD|3 +4 Witch's Cottage|ELD +2 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Roses.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Roses.dck new file mode 100755 index 00000000000..838a874e2ef --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Roses.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Art: Roses +Difficulty=easy +Description=Fate will decide whether it's a bed or a tomb. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Roses +[Main] +4 Blacklance Paragon|ELD|1 +4 Curious Pair|ELD|2 +4 Fabled Passage|ELD|1 +6 Forest|ELD|1 +4 Glass Casket|ELD|1 +4 Locthwain Paladin|ELD +2 Lovestruck Beast|ELD|1 +2 Lovestruck Beast|ELD|2 +8 Plains|ELD|4 +4 Realm-Cloaked Giant|ELD|2 +4 Resolute Rider|ELD +2 Rosethorn Acolyte|ELD|1 +2 Rosethorn Acolyte|ELD|2 +4 Rosethorn Halberd|ELD +6 Swamp|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Ruins.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Ruins.dck new file mode 100755 index 00000000000..55fb6ca8095 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Ruins.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Art: Ruins +Difficulty=easy +Description="It wandered slowly across the landscape, calling out in its lonely voice, but no other castles answered its cries."\n-Beyond the Great Henge +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Ruins +[Main] +4 Feasting Troll King|ELD|1 +4 Fierce Witchstalker|ELD +14 Forest|ELD|1 +4 Into the Story|ELD +10 Island|ELD|2 +4 Mistford River Turtle|ELD +4 Mystic Sanctuary|ELD +4 Rosethorn Acolyte|ELD|1 +4 Roving Keep|ELD +4 Shimmer Dragon|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Into the Woods.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Into the Woods.dck new file mode 100755 index 00000000000..03a699d805b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Into the Woods.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Storybook: Into the Woods +Difficulty=easy +Description="Storybook" art showcase for adventurer cards.\n\nNo one is so lost that a faerie can't find them. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Storybook: Into the Woods +[Main] +4 Beanstalk Giant|ELD|2 +3 Curious Pair|ELD|2 +4 Faerie Guidemother|ELD|2 +3 Flaxen Intruder|ELD|2 +14 Forest|ELD|3 +4 Garenbrig Carver|ELD|2 +3 Lonesome Unicorn|ELD|2 +3 Lovestruck Beast|ELD|2 +3 Oakhame Ranger|ELD|2 +10 Plains|ELD|1 +3 Realm-Cloaked Giant|ELD|2 +3 Rosethorn Acolyte|ELD|2 +3 Tuinvale Treefolk|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Knights & Squires.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Knights & Squires.dck new file mode 100755 index 00000000000..b5e867e1726 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Knights & Squires.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Storybook: Knights & Squires +Difficulty=easy +Description="Storybook" art showcase for adventurer cards.\n\n"My quest? Why, to marry Ayara. Or die trying." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Storybook: Knights & Squires +[Main] +3 Ardenvale Tactician|ELD|2 +4 Foulmire Knight|ELD|2 +4 Giant Killer|ELD|2 +4 Murderous Rider|ELD|2 +4 Order of Midnight|ELD|2 +10 Plains|ELD|1 +4 Reaper of Night|ELD|2 +3 Shepherd of the Flock|ELD|2 +4 Silverflame Squire|ELD|2 +4 Smitten Swordmaster|ELD|2 +16 Swamp|ELD|2 +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Wanderers.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Wanderers.dck new file mode 100755 index 00000000000..3190cb9e763 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Art Storybook Wanderers.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Storybook: Wanderers +Difficulty=easy +Description="Storybook" art showcase for adventurer cards.\n\n"Buying old, worn-out junk. Selling marvels of real value." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Art: Storybook: Wanderers +[Main] +3 Animating Faerie|ELD|2 +4 Bonecrusher Giant|ELD|2 +4 Brazen Borrower|ELD|2 +3 Embereth Shieldbreaker|ELD|2 +4 Fae of Wishes|ELD|2 +3 Hypnotic Sprite|ELD|2 +16 Island|ELD|3 +3 Merchant of the Vale|ELD|2 +4 Merfolk Secretkeeper|ELD|2 +10 Mountain|ELD|3 +3 Queen of Ice|ELD|2 +3 Rimrock Knight|ELD|2 +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 1 Loyalty.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 1 Loyalty.dck new file mode 100755 index 00000000000..0f97f63eaa7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 1 Loyalty.dck @@ -0,0 +1,17 @@ +[metadata] +Title=Errantry: Loyalty +Difficulty=easy +Description=Ardenvale knights never gonna run around and desert you. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 1 Errantry 1 Loyalty +[Main] +4 Ardenvale Paladin|ELD +4 Beloved Princess|ELD +4 Fireborn Knight|ELD +4 Fortifying Provisions|ELD +4 Lonesome Unicorn|ELD|1 +4 Outflank|ELD +28 Plains|ELD|4 +4 True Love's Kiss|ELD +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 3 Persistence.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 3 Persistence.dck new file mode 100755 index 00000000000..a0db7b15030 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 3 Persistence.dck @@ -0,0 +1,18 @@ +[metadata] +Title=Errantry: Persistence +Difficulty=easy +Description=Locthwain knights never gonna give you up. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 1 Errantry 3 Persistence +[Main] +4 Belle of the Brawl|ELD +4 Blacklance Paragon|ELD|1 +4 Epic Downfall|ELD +4 Locthwain Paladin|ELD +4 Lost Legion|ELD +4 Oathsworn Knight|ELD|1 +4 Resolute Rider|ELD +4 Smitten Swordmaster|ELD|1 +26 Swamp|ELD|3 +2 Syr Konrad, the Grim|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 4 Courage.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 4 Courage.dck new file mode 100755 index 00000000000..f71b09d9fef --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Errantry 4 Courage.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Errantry: Courage +Difficulty=easy +Description=Embereth knights never gonna let you down. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 1 Errantry 4 Courage +[Main] +4 Elite Headhunter|ELD +4 Embereth Paladin|ELD +4 Embereth Skyblazer|ELD +4 Irencrag Pyromancer|ELD|1 +16 Mountain|ELD|3 +2 Rowan, Fearless Sparkmage|ELD +4 Slaying Fire|ELD|1 +4 Steelclaw Lance|ELD +4 Stormfist Crusader|ELD|1 +10 Swamp|ELD|1 +4 Thrill of Possibility|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Reprints.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Reprints.dck new file mode 100755 index 00000000000..33ad508e8e7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Reprints.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Deja Vu +Difficulty=easy +Description="Feel like I've been here before"\n-Iron Maiden, Deja Vu +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Reprints +[Main] +2 Bastion Enforcer|AER +2 Claustrophobia|ISD +2 Enforcer Griffin|WAR +3 Forest|LEA|2 +4 Island|LEA|2 +2 Mountain|LEA|1 +4 Opt|INV +5 Plains|LEA|2 +4 Reave Soul|ORI +4 Return to Nature|WAR +2 Sorcerous Spyglass|XLN +4 Sporecap Spider|ROE +4 Swamp|LEA|2 +4 Thornwood Falls|KTK +2 Thought Collapse|RNA +4 Thrill of Possibility|THB|1 +4 Wind-Scarred Crag|KTK +4 Youthful Knight|STH diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Beyond the Great Henge.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Beyond the Great Henge.dck new file mode 100755 index 00000000000..5211a7a5bf6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Beyond the Great Henge.dck @@ -0,0 +1,18 @@ +[metadata] +Title=Beyond the Great Henge +Difficulty=easy +Description=Everything that inhabits Garenbrig is affected by the wild magic flowing through the Great Henge. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Beyond the Great Henge +[Main] +4 Crystal Slipper|ELD +4 Henge Walker|ELD +4 Inquisitive Puppet|ELD +14 Island|ELD|3 +14 Mountain|ELD|3 +4 Roving Keep|ELD +4 Shambling Suit|ELD +4 Sorcerer's Broom|ELD +4 Spinning Wheel|ELD +4 Workshop Elders|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Beauty and the Beast.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Beauty and the Beast.dck new file mode 100755 index 00000000000..1d0b2bab037 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Beauty and the Beast.dck @@ -0,0 +1,31 @@ +[metadata] +Title=Fairytale: Beauty and the Beast +Difficulty=easy +Description=No one's slick as Garruk / No one's quick as Garruk / No one's neck's as incredibly thick as Garruk's\nNo one fights like Garruk / Douses lights like Garruk / In a wrestling match nobody bites like Garruk!\nFor there's no one as burly and brawny / Not a bit of him's scraggly or scrawny / My what a guy, that Garruk! +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Beauty and the Beast +[Main] +2 Animating Faerie|ELD|1 +4 Belle of the Brawl|ELD +2 Charming Prince|ELD|1 +3 Clockwork Servant|ELD +2 Corridor Monitor|ELD +4 Fabled Passage|ELD|1 +2 Fierce Witchstalker|ELD +4 Forest|ELD|2 +2 Garenbrig Carver|ELD|2 +3 Garruk, Cursed Huntsman|ELD|1 +2 Happily Ever After|ELD|1 +4 Idyllic Grange|ELD +1 Island|ELD|3 +4 Lovestruck Beast|ELD|2 +3 Once Upon a Time|ELD|1 +2 Plains|ELD|3 +5 Swamp|ELD|1 +2 The Magic Mirror|ELD|1 +4 Thornwood Falls|ELD +3 Trapped in the Tower|ELD +2 True Love's Kiss|ELD +[Sideboard] +1 Dance of the Manse|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Cinderella.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Cinderella.dck new file mode 100755 index 00000000000..e739a80ecd2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Cinderella.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Fairytale: Cinderella +Difficulty=easy +Description=The classic fairytale. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Cinderella +[Main] +4 Beloved Princess|ELD +4 Charming Prince|ELD|1 +2 Crystal Slipper|ELD +3 Enchanted Carriage|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|2 +1 Forest|ELD|3 +2 Happily Ever After|ELD|1 +1 Island|ELD|2 +2 Midnight Clock|ELD|1 +1 Mountain|ELD|4 +2 Once Upon a Time|ELD|1 +6 Plains|ELD|1 +2 Return to Nature|ELD +2 Revenge of Ravens|ELD +5 Swamp|ELD|2 +4 Thornwood Falls|ELD +2 Turn into a Pumpkin|ELD +3 Wicked Guardian|ELD +2 Wildwood Tracker|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Hansel and Gretel.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Hansel and Gretel.dck new file mode 100755 index 00000000000..7c9cce1bdb7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Hansel and Gretel.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Fairytale: Hansel and Gretel +Difficulty=easy +Description=The classic fairytale. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Hansel and Gretel +[Main] +4 Bake into a Pie|ELD +4 Curious Pair|ELD|2 +10 Forest|ELD|2 +4 Garenbrig Carver|ELD|2 +4 Gingerbread Cabin|ELD +4 Insatiable Appetite|ELD +4 Once Upon a Time|ELD|1 +10 Swamp|ELD|4 +4 Tempting Witch|ELD +4 Trail of Crumbs|ELD +4 Wicked Guardian|ELD +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Jack and the Beanstalk.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Jack and the Beanstalk.dck new file mode 100755 index 00000000000..4435bf58a5b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Jack and the Beanstalk.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Fairytale: Jack and the Beanstalk +Difficulty=easy +Description=The classic fairytale. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Jack and the Beanstalk +[Main] +4 Bartered Cow|ELD +4 Beanstalk Giant|ELD|2 +16 Forest|ELD|4 +4 Giant Killer|ELD|2 +4 Giant Opportunity|ELD +4 Gilded Goose|ELD|1 +4 Golden Egg|ELD +3 Happily Ever After|ELD|1 +4 Once Upon a Time|ELD|1 +11 Plains|ELD|1 +2 Tall as a Beanstalk|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Red Riding Hood.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Red Riding Hood.dck new file mode 100755 index 00000000000..8ef4a47e932 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Red Riding Hood.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Fairytale: Red Riding Hood +Difficulty=easy +Description="Hey there Little Red Riding Hood / You sure are looking good +You're everything a big bad wolf could want"\nLi'l Red Riding Hood, Sam the Sham and the Pharoahs +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Red Riding Hood +[Main] +4 Blow Your House Down|ELD +4 Fabled Passage|ELD|1 +4 Fierce Witchstalker|ELD +11 Forest|ELD|3 +4 Golden Egg|ELD +4 Insatiable Appetite|ELD +8 Mountain|ELD|4 +4 Once Upon a Time|ELD|1 +4 Rowan, Fearless Sparkmage|ELD +4 Savvy Hunter|ELD +4 Sundering Stroke|ELD|1 +5 Swamp|ELD|2 +[Sideboard] +4 Wicked Wolf|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Sleeping Beauty.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Sleeping Beauty.dck new file mode 100755 index 00000000000..4f0ef2854b0 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Sleeping Beauty.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Fairytale: Sleeping Beauty +Difficulty=easy +Description="Okay, yeah. We're going to have to do the foot inspector thing."\n-Prince "Charming" Marcus, KittyUnpretty.com +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Sleeping Beauty +[Main] +4 Beloved Princess|ELD +3 Charmed Sleep|ELD +4 Charming Prince|ELD|1 +4 Fae of Wishes|ELD|2 +4 Faerie Guidemother|ELD|2 +3 Happily Ever After|ELD|1 +9 Island|ELD|3 +17 Plains|ELD|4 +4 Spinning Wheel|ELD +4 Thornwood Falls|ELD +4 True Love's Kiss|ELD +[Sideboard] +1 Charmed Sleep|ELD +1 Happily Ever After|ELD|1 +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Snow White.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Snow White.dck new file mode 100755 index 00000000000..b34f7e091e7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Fairytale Snow White.dck @@ -0,0 +1,30 @@ +[metadata] +Title=Fairytale: Snow White +Difficulty=easy +Description=The classic fairytale. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Fairytale: Snow White +[Main] +4 Beloved Princess|ELD +2 Charmed Sleep|ELD +3 Charming Prince|ELD|1 +1 Dwarven Mine|ELD +4 Fabled Passage|ELD|1 +2 Foreboding Fruit|ELD +1 Forest|ELD|2 +3 Garruk, Cursed Huntsman|ELD|1 +2 Glass Casket|ELD|1 +2 Happily Ever After|ELD|1 +1 Island|ELD|3 +1 Mountain|ELD|2 +2 Once Upon a Time|ELD|1 +3 Plains|ELD|3 +7 Seven Dwarves|ELD +6 Swamp|ELD|1 +2 Taste of Death|ELD +3 Tempting Witch|ELD +1 The Magic Mirror|ELD|1 +4 Thornwood Falls|ELD +2 True Love's Kiss|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Holy Grail.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Holy Grail.dck new file mode 100755 index 00000000000..04f620c9c65 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Holy Grail.dck @@ -0,0 +1,22 @@ +[metadata] +Title=King Arthur: The Holy Grail +Difficulty=easy +Description=The Holy Grail is a treasure that serves as an important motif in Arthurian literature. Different traditions describe it as a cup, dish or stone with miraculous powers that provide happiness, eternal youth or sustenance in infinite abundance, often in the custody of the Fisher King. The term "holy grail" is often used to denote an elusive object or goal that is sought after for its great significance. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: King Arthur: The Holy Grail +[Main] +4 Ayara, First of Locthwain|ELD|1 +4 Castle Ardenvale|ELD|1 +4 Doom Foretold|ELD|1 +4 Kenrith, the Returned King|ELD +4 Oathsworn Knight|ELD|1 +4 Plains|ELD|1 +4 Smitten Swordmaster|ELD|2 +10 Swamp|ELD|2 +4 Syr Gwyn, Hero of Ashvale|ELD +4 Syr Konrad, the Grim|ELD +2 The Cauldron of Eternity|ELD|1 +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Once and Future King.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Once and Future King.dck new file mode 100755 index 00000000000..9813fa7e5e1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Once and Future King.dck @@ -0,0 +1,20 @@ +[metadata] +Title=King Arthur: The Once and Future King +Difficulty=easy +Description=A collection of Arthurian legends. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: King Arthur: The Once and Future King +[Main] +4 Castle Ardenvale|ELD|1 +12 Forest|ELD|3 +4 Garenbrig Paladin|ELD +4 Kenrith, the Returned King|ELD +4 Once and Future|ELD +11 Plains|ELD|1 +3 Questing Beast|ELD|1 +3 Silverflame Ritual|ELD +3 The Circle of Loyalty|ELD|1 +4 Venerable Knight|ELD +4 Worthy Knight|ELD|1 +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Sword in the Stone.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Sword in the Stone.dck new file mode 100755 index 00000000000..765b2dc8bde --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story King Arthur The Sword in the Stone.dck @@ -0,0 +1,19 @@ +[metadata] +Title=King Arthur: The Sword in the Stone +Difficulty=easy +Description="Whoso pulleth out this sword of this stone and anvil is rightwise king born of England."\n-Disney's 1963 animated feature film +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: King Arthur: The Sword in the Stone +[Main] +4 Arcanist's Owl|ELD +4 Claim the Firstborn|ELD +4 Embercleave|ELD|1 +4 Frogify|ELD +4 Gadwick, the Wizened|ELD|1 +16 Island|ELD|2 +4 Jousting Dummy|ELD +8 Mountain|ELD|4 +4 Overwhelmed Apprentice|ELD +4 Sorcerer's Broom|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Legend of the Gilded Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Legend of the Gilded Knights.dck new file mode 100755 index 00000000000..e66c71dc335 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Legend of the Gilded Knights.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Legend of the Gilded Knights +Difficulty=easy +Description="As she reached the pinnacle, lightning flashed and her eyes blazed with newfound power. The Northern Beacon flared, and even before the drawbridge finished its descent, the knights charged out. With the drum of hooves and a flash of blades, the monster's terrifying roar changed to a cry of fear."\n-Legend of the Gilded Knights +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Legend of the Gilded Knights +[Main] +4 Crashing Drawbridge|ELD +4 Elite Headhunter|ELD +4 Epic Downfall|ELD +4 Fireborn Knight|ELD +5 Mountain|ELD|4 +4 Outflank|ELD +4 Plains|ELD|1 +4 Searing Barrage|ELD +4 Shining Armor|ELD +4 Stormfist Crusader|ELD|1 +7 Swamp|ELD|2 +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Movie Fantasia.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Movie Fantasia.dck new file mode 100755 index 00000000000..6591f1577c7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Movie Fantasia.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Movie: Fantasia +Difficulty=easy +Description=Disney's 1940 animated feature film. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Movie: Phantasia +[Main] +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Folio of Fancies|ELD|1 +4 Gadwick, the Wizened|ELD|1 +4 Hushbringer|ELD|1 +13 Island|ELD|4 +4 Lonesome Unicorn|ELD|1 +4 Mysterious Pathlighter|ELD +4 Overwhelmed Apprentice|ELD +11 Plains|ELD|2 +4 Sorcerer's Broom|ELD +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Movie Legend.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Movie Legend.dck new file mode 100755 index 00000000000..3a824b291c8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Movie Legend.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Movie: Legend +Difficulty=easy +Description="The creature is crowned with a single spiral, reaching like an antenna straight to heaven."\n-Darkness, the 1985 movie Legend, starring Tom Cruise, Mia Sara, and Tim Curry. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Movie: Legend +[Main] +3 Bake into a Pie|ELD +4 Beloved Princess|ELD +2 Clackbridge Troll|ELD|1 +4 Fabled Passage|ELD|1 +4 Giant Killer|ELD|1 +3 Hushbringer|ELD|1 +4 Lonesome Unicorn|ELD|1 +3 Mountain|ELD|3 +5 Plains|ELD|4 +4 Reaper of Night|ELD|1 +4 Redcap Raiders|ELD +7 Seven Dwarves|ELD +2 Shining Armor|ELD +7 Swamp|ELD|1 +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Tales & Fables.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Tales & Fables.dck new file mode 100755 index 00000000000..3d06ad99fd8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story Tales & Fables.dck @@ -0,0 +1,37 @@ +[metadata] +Title=Tales & Fables +Difficulty=easy +Description="Will! They have a copy of Tales of the Fae here! Want me to read you a bedtime story?"\n-Rowan Kenrith +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: Tales & Fables +[Main] +3 Banish into Fable|ELD +3 Bog Naughty|ELD +4 Chulane, Teller of Tales|ELD +3 Claim the Firstborn|ELD +4 Fabled Passage|ELD|1 +3 Flutterfox|ELD +1 Island|ELD|1 +1 Island|ELD|2 +1 Island|ELD|3 +1 Island|ELD|4 +4 Keeper of Fables|ELD +1 Mountain|ELD|1 +1 Mountain|ELD|2 +1 Mountain|ELD|3 +1 Mountain|ELD|4 +1 Plains|ELD|1 +1 Plains|ELD|2 +1 Plains|ELD|3 +1 Plains|ELD|4 +4 Prized Griffin|ELD +4 Raging Redcap|ELD +4 Return to Nature|ELD +1 Swamp|ELD|1 +1 Swamp|ELD|2 +1 Swamp|ELD|3 +1 Swamp|ELD|4 +2 Thornwood Falls|ELD +2 Wind-Scarred Crag|ELD +4 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story The Wildered Quest.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story The Wildered Quest.dck new file mode 100755 index 00000000000..3f1197bf8a8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 Story The Wildered Quest.dck @@ -0,0 +1,43 @@ +[metadata] +Title=Throne of Eldraine: The Wildered Quest +Difficulty=easy +Description=The young warrior-mage twins Rowan and Will Kenrith quest for their missing father, High King Kenrith. Venturing far from the safety of the Realm, their search takes them deep into the Wilds--a hostile land of faeries, monsters, and untamed magic. Can the royal scions unravel the mystery of their father's disappearance and restore him to his rightful throne before his absence shatters the peace of their home?\n-The official Throne of Eldraine novel by Kate Elliot. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 Story: The Wildered Quest +[Main] +1 Ardenvale Tactician|ELD|1 +1 Ayara, First of Locthwain|ELD|1 +1 Castle Ardenvale|ELD|1 +1 Castle Garenbrig|ELD|1 +1 Castle Locthwain|ELD|1 +1 Castle Vantress|ELD|1 +4 Fabled Passage|ELD|1 +3 Forest|ELD|4 +1 Garrison Griffin|ELD +2 Garruk, Cursed Huntsman|ELD|1 +3 Happily Ever After|ELD|1 +2 Island|ELD|4 +3 Kenrith's Transformation|ELD|2 +1 Kenrith, the Returned King|ELD +1 Linden, the Steadfast Queen|ELD|1 +1 Memory Theft|ELD +1 Mountain|ELD|4 +2 Oko, Thief of Crowns|ELD|1 +1 Plains|ELD|3 +2 Redcap Raiders|ELD +3 Return of the Wildspeaker|ELD|1 +1 Skullknocker Ogre|ELD +4 Swamp|ELD|1 +1 The Cauldron of Eternity|ELD|1 +1 The Great Henge|ELD|1 +1 The Magic Mirror|ELD|1 +2 The Royal Scions|ELD|1 +4 Thornwood Falls|ELD +3 Unexplained Vision|ELD +4 Wind-Scarred Crag|ELD +1 Witch's Cottage|ELD +1 Witching Well|ELD +1 Yorvo, Lord of Garenbrig|ELD|1 +[Sideboard] +1 Flaxen Intruder|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Elves.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Elves.dck new file mode 100755 index 00000000000..fbb0e00cb3b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Elves.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Fair Folk: The Elves +Difficulty=easy +Description=Among the fair folk, elves are most home in the deep forests of the wilds. They are adept at hiding among the trees and attuned to the mana of the forests. Most elves are lithe and stand just shorter than a human, with a range of skin tones and tall, pointed ears. Due to their innate connection to the natural world, elves often patrol the forests as rangers, archers, scouts, and druids. The elves remember being driven from their realm. Encounters between elves and humans do not always erupt in violence, but they are never warm. Some elves actively hunt humans, just as they hunt deer and boars in the forest. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Fair Folk: The Elves +[Main] +4 Ayara, First of Locthwain|ELD|1 +4 Bake into a Pie|ELD +15 Forest|ELD|1 +4 Maraleaf Rider|ELD +4 Oakhame Adversary|ELD +4 Oakhame Ranger|ELD|1 +4 Rosethorn Acolyte|ELD|1 +4 Rosethorn Halberd|ELD +9 Swamp|ELD|3 +4 Wildborn Preserver|ELD|1 +4 Wildwood Tracker|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Meddling Fae.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Meddling Fae.dck new file mode 100755 index 00000000000..b2700e3113b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Meddling Fae.dck @@ -0,0 +1,24 @@ +[metadata] +Title=The Fair Folk: The Meddling Fae +Difficulty=easy +Description=Meddling fae love to pry into human lives, either to help those in need or harm those they deem deserving. These fae are about the size of an adult human with long, flowing white garments and an eerie, angelic glow. They are fickle, helping you one day and becoming your enemy the next. Occasionally a meddling faerie will actively attempt to lure knights away from their company with floating lights or magical visions. Unlike other kinds of fae, meddling fae are known to sometimes be truly benevolent, helping unfortunate souls or granting desperate wishes. Still, most humans are wary to put their fates in the hands of a faerie. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Fair Folk: The Meddling Fae +[Main] +4 Animating Faerie|ELD|1 +4 Enchanted Carriage|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Glass Casket|ELD|1 +4 Hushbringer|ELD|1 +4 Inquisitive Puppet|ELD +8 Island|ELD|3 +4 Mysterious Pathlighter|ELD +12 Plains|ELD|4 +4 Spinning Wheel|ELD +[Sideboard] +2 Charmed Sleep|ELD +2 Frogify|ELD +2 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Prankster Fae.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Prankster Fae.dck new file mode 100755 index 00000000000..6111eebc34b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Prankster Fae.dck @@ -0,0 +1,20 @@ +[metadata] +Title=The Fair Folk: The Prankster Fae +Difficulty=easy +Description=Prankster fae have gray skin and are about the size of a human child, with sullen yellow eyes and feathery black wings. Don't let the name mislead you, a faerie prank is anything but innocent. These fae love to cause annoyance, anger, and pain to all those they encounter. They are perhaps the most mercurial of the fae and laugh at the idea of persistence. The only predictable thing about a pranking faerie is that it will always change its mind. As one faerie put it, the best pranks usually involve at least one death. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Fair Folk: The Prankster Fae +[Main] +4 Bog Naughty|ELD +4 Eye Collector|ELD +4 Fabled Passage|ELD|1 +4 Frogify|ELD +8 Island|ELD|3 +4 Mistford River Turtle|ELD +4 Rankle, Master of Pranks|ELD|1 +4 Sorcerer's Broom|ELD +4 Stonecoil Serpent|ELD|1 +14 Swamp|ELD|4 +2 The Cauldron of Eternity|ELD|1 +4 Wishclaw Talisman|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Thieving Fae.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Thieving Fae.dck new file mode 100755 index 00000000000..c93bb304800 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Thieving Fae.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Fair Folk: The Thieving Fae +Difficulty=easy +Description=Thieving fae steal whatever they can lay their hands on and attempt to sow confusion and frustration wherever they go. These tricksters are small, no taller than an apple, and have sharp, pointed blue wings and hair. They file stolen keys into swords and wear rags of scrap fabric torn from human clothes. Despite their size, thieving fae are cocky and boastful, always leaving marks of their crimes behind so their human victims know exactly who got the best of them. Thieving fae are the most common type of faerie to be found in the realm, where they enjoy infiltrating human homes and castles to pilfer their possessions. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 1 The Fair Folk: The Thieving Fae +[Main] +4 Brazen Borrower|ELD|1 +4 Didn't Say Please|ELD +4 Faerie Formation|ELD +4 Faerie Vandal|ELD +4 Hypnotic Sprite|ELD|1 +24 Island|ELD|4 +4 Oko's Accomplices|ELD +4 So Tiny|ELD +4 Stolen by the Fae|ELD|1 +4 Tome Raider|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Undines.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Undines.dck new file mode 100755 index 00000000000..25818401236 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Fair Folk The Undines.dck @@ -0,0 +1,20 @@ +[metadata] +Title=The Fair Folk: The Undines +Difficulty=easy +Description=The merfolk of Eldraine are defined by their compulsive curiosity. They are obsessed with learning all they can, occasionally to the brink of madness. Merfolk hoard secrets and lord them over others. As a result, little is known about merfolk origins, customs, or magic. Their connection to knowledge and secrets leads many to take up residence in Lochmere near the Magic Mirror, which they can visit when it is fully submerged. Any potential ties between the merfolk and the Mirror remain a mystery even to those in Vantress, though they are often seen sulking in the shadows whenever human aspirants descend the spiral stairs. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Fair Folk: The Undines +[Main] +4 Drown in the Loch|ELD +2 Emry, Lurker of the Loch|ELD|1 +16 Island|ELD|3 +4 Mantle of Tides|ELD +4 Merfolk Secretkeeper|ELD|1 +4 Moonlit Scavengers|ELD +4 Mystical Dispute|ELD +4 Sage of the Falls|ELD +3 Sorcerous Spyglass|ELD|1 +8 Swamp|ELD|3 +4 Thornwood Falls|ELD +3 Wishful Merfolk|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Great Quest.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Great Quest.dck new file mode 100755 index 00000000000..e108840f0fc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Great Quest.dck @@ -0,0 +1,42 @@ +[metadata] +Title=The Great Quest +Difficulty=easy +Description=About once a generation, a mysterious creature called the Questing Beast chooses an extraordinary knight to undertake a grueling challenge, called the Great Quest, to claim the High Throne of the realm. Those seeking the High Throne must achieve knighthood from all five of the realm's royal courts, proving they are virtuous enough to be worthy of the loftiest position in the realm. In the last fifty years, two individuals have been charged with the High Quest: the current High King Kenrith and his wife, Queen Linden of Ardenvale. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Great Quest +[Main] +1 Ardenvale Paladin|ELD +2 Ayara, First of Locthwain|ELD|1 +4 Castle Ardenvale|ELD|1 +4 Castle Embereth|ELD|1 +4 Castle Garenbrig|ELD|1 +4 Castle Locthwain|ELD|1 +4 Castle Vantress|ELD|1 +2 Embercleave|ELD|1 +1 Embereth Paladin|ELD +4 Fabled Passage|ELD|1 +1 Fervent Champion|ELD|1 +1 Forest|ELD|3 +1 Gadwick, the Wizened|ELD|1 +1 Garenbrig Paladin|ELD +1 Garenbrig Squire|ELD +1 Island|ELD|2 +2 Kenrith, the Returned King|ELD +1 Locthwain Paladin|ELD +1 Mountain|ELD|4 +1 Plains|ELD|1 +3 Questing Beast|ELD|1 +1 Smitten Swordmaster|ELD|1 +1 Swamp|ELD|2 +1 Syr Alin, the Lion's Claw|ELD +1 Syr Carah, the Bold|ELD +1 Syr Elenora, the Discerning|ELD +1 Syr Faren, the Hengehammer|ELD +1 Syr Gwyn, Hero of Ashvale|ELD +1 Syr Konrad, the Grim|ELD +2 The Circle of Loyalty|ELD|1 +2 The Magic Mirror|ELD|1 +1 Vantress Paladin|ELD +1 Worthy Knight|ELD|1 +2 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Ashvale.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Ashvale.dck new file mode 100755 index 00000000000..8e9c33b66cc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Ashvale.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Realm: Ashvale +Difficulty=easy +Description="By hoof, wing, or paw. For the realm!"\n-Syr Gwyn, Hero of Ashvale +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Ashvale +[Main] +4 Elite Headhunter|ELD +4 Epic Downfall|ELD +4 Fireborn Knight|ELD +4 Knights' Charge|ELD +8 Mountain|ELD|3 +4 Order of Midnight|ELD|1 +3 Plains|ELD|3 +4 Steelclaw Lance|ELD +4 Stormfist Crusader|ELD|1 +9 Swamp|ELD|2 +4 Syr Gwyn, Hero of Ashvale|ELD +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Castle Locthwain.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Castle Locthwain.dck new file mode 100755 index 00000000000..8af523bb914 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Castle Locthwain.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Realm: Castle Locthwain +Difficulty=easy +Description=Castle Locthwain itself is a mobile, flying fortress--an enormous structure floating on rainclouds, constantly moving. The weather beneath the castle varies between a light drizzle and a thundering storm, depending (or so it is said) on the mood of its queen. It can settle down to earth, either on land or water, and the same magic that holds it aloft can lower its knights down to the ground on smaller, temporary rainclouds.\n\nThe interior of Locthwain is a labyrinth of narrow passages connecting great halls. Knights from other courts who have wandered in the maze have compared it to the wilds, suggesting that elven magic contributes to the sense of disorientation and, eventually, terror that claims those who become lost in the castle. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Castle Locthwain +[Main] +4 Ayara, First of Locthwain|ELD|1 +4 Bake into a Pie|ELD +4 Belle of the Brawl|ELD +4 Castle Locthwain|ELD|1 +4 Festive Funeral|ELD +4 Locthwain Gargoyle|ELD +4 Malevolent Noble|ELD +4 Order of Midnight|ELD|1 +20 Swamp|ELD|2 +4 Syr Konrad, the Grim|ELD +4 Wicked Guardian|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Castle Vantress.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Castle Vantress.dck new file mode 100755 index 00000000000..5ac5a15540e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Castle Vantress.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Realm: Castle Vantress +Difficulty=easy +Description=Castle Vantress rises like an island up from the surface of Lochmere, a mist-shrouded lake in a remote part of the realm. Banners and pennants fly from its spires and water flows freely throughout the fortress like an elaborate fountain. The castle rests on top of a large shaft that is normally full of water. At the bottom of this shaft is a dim, cave-like space where the Magic Mirror rests. Castle Vantress is renowned as a center of scholarship in the realm, and researchers and questioners from the other courts often make the difficult journey to Vantress to find information that can't be found anywhere else. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Castle Vantress +[Main] +4 Castle Vantress|ELD|1 +4 Clockwork Servant|ELD +4 Corridor Monitor|ELD +4 Folio of Fancies|ELD|1 +20 Island|ELD|1 +4 Midnight Clock|ELD|1 +4 Mirrormade|ELD|1 +4 Opt|ELD +4 Overwhelmed Apprentice|ELD +4 The Magic Mirror|ELD|1 +4 Unexplained Vision|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Edgewall Keep.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Edgewall Keep.dck new file mode 100755 index 00000000000..48674eea445 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Edgewall Keep.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Realm: Edgewall Keep +Difficulty=easy +Description="Warmth. Safety. A fully-stocked larder. You'll find nothing like Edgewall Keep in the wilds, I promise you that!" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Edgewall Keep +[Main] +4 Edgewall Innkeeper|ELD +11 Forest|ELD|4 +4 Fortifying Provisions|ELD +4 Knight of the Keep|ELD +4 Lonesome Unicorn|ELD|1 +4 Lucky Clover|ELD +4 Once and Future|ELD +4 Outflank|ELD +4 Outmuscle|ELD +13 Plains|ELD|3 +4 Wandermare|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Embereth's Protectors.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Embereth's Protectors.dck new file mode 100755 index 00000000000..2113051ac3b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Embereth's Protectors.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Embereth's Protectors +Difficulty=easy +Description=Embereth's knights are famously optimistic, singularly certain that anything is achievable so long as you face it head-on. They are gregarious and confident, and always willing to try new experiences, though they're not particularly long-lived. As a show of courage, Embereth knights never carry shields and often incorporate the broken shields of opponents into their armor. Embereth's knights are intrigued by irrationally dangerous quests, believing that the most frightening challenges are the ones most worth conquering. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Embereth's Protectors +[Main] +4 Brimstone Trebuchet|ELD +4 Castle Embereth|ELD|1 +4 Crystal Slipper|ELD +4 Embereth Shieldbreaker|ELD|1 +4 Embereth Skyblazer|ELD +4 Jousting Dummy|ELD +4 Merchant of the Vale|ELD|1 +20 Mountain|ELD|1 +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +4 Sundering Stroke|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Garenbrig.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Garenbrig.dck new file mode 100755 index 00000000000..45ddcf3a01e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Garenbrig.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Realm: Garenbrig +Difficulty=easy +Description=Built by giants long before the ascendancy of humans in the realm, Castle Garenbrig is an enormous and strikingly odd structure. The main bulk of Garenbrig is its relic, the Great Henge, which sits atop a jutting stone outcropping. The large, central stone of Garenbrig forms the gnomon of a sundial. At certain times and dates, the monoliths surrounding the central stone align with the path of celestial bodies and open a temporary gateway into the deepest, darkest parts of the wilds. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Garenbrig +[Main] +4 Castle Garenbrig|ELD|1 +4 Fell the Pheasant|ELD +20 Forest|ELD|4 +4 Garenbrig Carver|ELD|1 +4 Garenbrig Squire|ELD +4 Henge Walker|ELD +4 Once and Future|ELD +4 Syr Faren, the Hengehammer|ELD +4 Tall as a Beanstalk|ELD +4 The Great Henge|ELD|1 +4 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Lochmere.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Lochmere.dck new file mode 100755 index 00000000000..6d275c78673 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Lochmere.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Realm: Lochmere +Difficulty=easy +Description=Undine scavengers comb the shallows of Lochmere for relics of a bygone era. And if they happen upon a lone traveler, all the better. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Lochmere +[Main] +4 Drown in the Loch|ELD +2 Emry, Lurker of the Loch|ELD|1 +14 Island|ELD|1 +4 Loch Dragon|ELD +4 Lochmere Serpent|ELD|1 +4 Mantle of Tides|ELD +4 Merfolk Secretkeeper|ELD|1 +4 Moonlit Scavengers|ELD +4 Mystic Sanctuary|ELD +2 Sorcerous Spyglass|ELD|1 +8 Swamp|ELD|1 +2 Wishful Merfolk|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Ardenvale Garrison.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Ardenvale Garrison.dck new file mode 100755 index 00000000000..5b108ea4243 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Ardenvale Garrison.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Ardenvale Garrison +Difficulty=easy +Description=The knights of Ardenvale are loyal above all else--not just to its rulers, but to each other, and to the entire community that makes up the court. A true knight's loyalty trumps any sense of arrogance or self-importance: victory belongs to the group, not to any individual member, and even a lone knight's glory accrues to Ardenvale as a whole. Ardenvale knights are fierce in battle, and all the more so when fighting in a group. They rarely quest alone, and loyalty means that no knight is ever left behind in the clutches of the enemy. They love to gather at the court for company and conversation, treasures they value above all others. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Ardenvale Garrison +[Main] +4 Ardenvale Tactician|ELD|1 +4 Castle Ardenvale|ELD|1 +4 Crashing Drawbridge|ELD +4 Garrison Griffin|ELD +8 Mountain|ELD|4 +8 Plains|ELD|1 +4 Rowan's Battleguard|ELD +4 Rowan's Stalwarts|ELD +4 Rowan, Fearless Sparkmage|ELD +4 Shining Armor|ELD +4 Silverwing Squadron|ELD +4 Venerable Knight|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Burning Yard.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Burning Yard.dck new file mode 100755 index 00000000000..cd6a54935eb --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Burning Yard.dck @@ -0,0 +1,22 @@ +[metadata] +Title=The Realm: The Burning Yard +Difficulty=easy +Description=While nobles throughout the realm may refer to "Castle" Embereth, any who have seen it with their own eyes would be remiss to call Embereth a true castle. Indeed, the knights who call Embereth home chuckle at the misnomer. To the locals, Embereth refers to the entire surrounding free city, while the large tournament complex some call a castle is known by its "true" name: The Burning Yard. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Burning Yard +[Main] +4 Acclaimed Contender|ELD|1 +4 Burning-Yard Trainer|ELD +4 Castle Embereth|ELD|1 +4 Embercleave|ELD|1 +4 Fervent Champion|ELD|1 +4 Heraldic Banner|ELD +4 Inspiring Veteran|ELD|1 +4 Joust|ELD +8 Mountain|ELD|1 +4 Plains|ELD|3 +4 Redcap Melee|ELD +4 Syr Carah, the Bold|ELD +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Court of Ardenvale.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Court of Ardenvale.dck new file mode 100755 index 00000000000..11c3af00039 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Court of Ardenvale.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Realm: The Court of Ardenvale +Difficulty=easy +Description=Perched on top of a hill overlooking the pastures and fields of the realm is Castle Ardenvale. Within its great white walls are acres of manicured lawns and precise, lush gardens. Near the top of the castle's central tower, the Circle of Loyalty is protected by dozens of loyal guards. Ardenvale is a beacon of peace in the realm, standing as both a symbolic and literal object of power. Merely speaking its name is thought to weave subtle magic of protection around the speaker and their allies. The castle is home to both High King Kenrith and Queen Linden, along with their four children: Rowan, Will, Hazel, and Eric. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Court of Ardenvale +[Main] +4 Castle Ardenvale|ELD|1 +4 Charming Prince|ELD|1 +4 Happily Ever After|ELD|1 +4 Kenrith, the Returned King|ELD +4 Linden, the Steadfast Queen|ELD|1 +20 Plains|ELD|1 +4 Scalding Cauldron|ELD +4 Silverflame Ritual|ELD +4 Syr Alin, the Lion's Claw|ELD +4 The Circle of Loyalty|ELD|1 +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Loremages.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Loremages.dck new file mode 100755 index 00000000000..f8e7f32b16f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Loremages.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Loremages +Difficulty=easy +Description=Vantress wizards (often called loremages, chroniclers, or riddleseekers) seek out the lore of the wilds and dig into the secrets of the convoluted magic of the fair folk. They are surprisingly daring and well-traveled scholars; it is not uncommon for knights of every court to journey into a remote swamp or delve a firefly-lit cavern and find a loremage of Vantress already there. Vantress wizards are experts in contracts with supernatural beings, resolving transformations, and the terms and consequences of faerie promises. A word of warning: when you consult a chronicler of lore, be prepared to endure her answers in exhaustive detail. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Loremages +[Main] +4 Arcanist's Owl|ELD +4 Castle Vantress|ELD|1 +4 Charmed Sleep|ELD +4 Gadwick, the Wizened|ELD|1 +24 Island|ELD|1 +4 Queen of Ice|ELD|1 +4 Steelgaze Griffin|ELD +4 Syr Elenora, the Discerning|ELD +4 Vantress Gargoyle|ELD|1 +4 Workshop Elders|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Nobility.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Nobility.dck new file mode 100755 index 00000000000..a420b730f43 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Nobility.dck @@ -0,0 +1,31 @@ +[metadata] +Title=The Nobility +Difficulty=easy +Description="The last rulers of Castle Ardenvale favored their relatives and cronies. They turned their magic to petty, selfish, wicked purposes. They betrayed the virtues they should have upheld. That's how so many spurs of the Wilds were able to grow back into the countryside where they'd been eradicated long ago. We must hold ourselves to a higher standard, so the Wilds can't devour us because of our own faults and failures."\n-Queen Linden, Throne of Eldraine by Kate Elliott +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Nobility +[Main] +2 Ayara, First of Locthwain|ELD|1 +3 Beloved Princess|ELD +1 Castle Ardenvale|ELD|1 +1 Castle Embereth|ELD|1 +1 Castle Garenbrig|ELD|1 +1 Castle Locthwain|ELD|1 +1 Castle Vantress|ELD|1 +3 Charming Prince|ELD|1 +4 Fabled Passage|ELD|1 +4 Forest|ELD|4 +3 Happily Ever After|ELD|1 +2 Island|ELD|1 +2 Kenrith, the Returned King|ELD +2 Linden, the Steadfast Queen|ELD|1 +3 Malevolent Noble|ELD +3 Mountain|ELD|1 +6 Plains|ELD|1 +3 Queen of Ice|ELD|1 +2 Rowan, Fearless Sparkmage|ELD +6 Swamp|ELD|2 +2 The Royal Scions|ELD|1 +3 Wicked Guardian|ELD +2 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Peasantry.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Peasantry.dck new file mode 100755 index 00000000000..0e9239a45f8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Peasantry.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Peasantry +Difficulty=easy +Description="I'm sorry, is this some sort of peasant joke that I'm too rich to understand?"\n-Sir Knight, Horrible Histories +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Peasantry +[Main] +4 Bartered Cow|ELD +4 Curious Pair|ELD|1 +4 Edgewall Innkeeper|ELD +12 Forest|ELD|3 +4 Giant Killer|ELD|1 +4 Idyllic Grange|ELD +4 Merchant of the Vale|ELD|1 +4 Mountain|ELD|4 +4 Once and Future|ELD +4 Plains|ELD|3 +4 Shepherd of the Flock|ELD|1 +4 Trail of Crumbs|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Vale.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Vale.dck new file mode 100755 index 00000000000..8059b9a18c2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm The Vale.dck @@ -0,0 +1,20 @@ +[metadata] +Title=The Realm: The Vale +Difficulty=easy +Description=The multiverse is home to many beautiful vistas and picturesque countrysides, but few are as tranquil as those found in the realm of Eldraine. On most days, life in the realm is simple and calm, and the folk who call it home, mostly humans, like it that way. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: The Vale +[Main] +4 Bartered Cow|ELD +4 Giant Killer|ELD|1 +4 Idyllic Grange|ELD +4 Merchant of the Vale|ELD|1 +8 Mountain|ELD|4 +4 Outlaws' Merriment|ELD|1 +12 Plains|ELD|1 +4 Prized Griffin|ELD +4 Robber of the Rich|ELD|1 +4 Shepherd of the Flock|ELD|1 +4 Spinning Wheel|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Tuinvale.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Tuinvale.dck new file mode 100755 index 00000000000..318d359c6a5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Tuinvale.dck @@ -0,0 +1,22 @@ +[metadata] +Title=The Realm: Tuinvale +Difficulty=easy +Description="Right now you are a feeble stick, but I will help you grow some rings." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Tuinvale +[Main] +4 Beanstalk Giant|ELD|1 +4 Chulane, Teller of Tales|ELD +4 Fabled Passage|ELD|1 +9 Forest|ELD|3 +4 Gilded Goose|ELD|1 +4 Golden Egg|ELD +4 Harmonious Archon|ELD|1 +4 Idyllic Grange|ELD +4 Island|ELD|3 +4 Keeper of Fables|ELD +3 Plains|ELD|2 +4 Realm-Cloaked Giant|ELD|1 +4 Signpost Scarecrow|ELD +4 Tuinvale Treefolk|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Wintermoor.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Wintermoor.dck new file mode 100755 index 00000000000..a24028afc24 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Realm Wintermoor.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Realm: Wintermoor +Difficulty=easy +Description=Beacons along the borderlands are lit at any incursion from the wilds. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Realm: Wintermoor +[Main] +4 Archon of Absolution|ELD +4 Barrow Witches|ELD +4 Belle of the Brawl|ELD +14 Plains|ELD|2 +4 Rally for the Throne|ELD +4 Scalding Cauldron|ELD +4 Silverflame Squire|ELD|1 +4 Smitten Swordmaster|ELD|1 +14 Swamp|ELD|2 +4 Wintermoor Commander|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Bloodhaze Peak.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Bloodhaze Peak.dck new file mode 100755 index 00000000000..14c9f1b46fe --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Bloodhaze Peak.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Wilds: Bloodhaze Peak +Difficulty=easy +Description="Build a moat. If we're lucky, it can't swim."\n-Syr Branigan, knight of Ardenvale +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Bloodhaze Peak +[Main] +4 Bloodhaze Wolverine|ELD +4 Blow Your House Down|ELD +4 Escape to the Wilds|ELD|1 +4 Fierce Witchstalker|ELD +13 Forest|ELD|1 +15 Mountain|ELD|3 +4 Opportunistic Dragon|ELD|1 +4 Prophet of the Peak|ELD +4 Scorching Dragonfire|ELD +4 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Choking Drum.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Choking Drum.dck new file mode 100755 index 00000000000..1b2e243f359 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Choking Drum.dck @@ -0,0 +1,17 @@ +[metadata] +Title=The Wilds: Choking Drum +Difficulty=easy +Description=The forest on the mountain ridge known as Choking Drum is home to the savage redcaps. They are mischievous agents of chaos, standing about as tall as a barrel, with distorted features and red hair stained with the blood of their enemies. Redcaps fight without any sense of honor or fair play, specializing in sneak attacks and ambushes. They often launch raids into villages near the edges of the wilds. Redcaps are fierce and reckless in battle, reveling in disrupting human order by instilling fear and chaos. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Choking Drum +[Main] +4 Claim the Firstborn|ELD +4 Ferocity of the Wilds|ELD +10 Forest|ELD|2 +4 Grumgully, the Generous|ELD +4 Mad Ratter|ELD +22 Mountain|ELD|2 +4 Raging Redcap|ELD +4 Redcap Raiders|ELD +4 Weaselback Redcap|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Delirium Swamp.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Delirium Swamp.dck new file mode 100755 index 00000000000..e0b506481ab --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Delirium Swamp.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Wilds: Delirium Swamp +Difficulty=easy +Description="Headed to the wilds? Beware the dead riders who serve the Shadow Queen."\n-Scalan, Edgewall innkeeper +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Delirium Swamp +[Main] +4 Barrow Witches|ELD +4 Cauldron Familiar|ELD +4 Deathless Knight|ELD +4 Foulmire Knight|ELD|1 +4 Murderous Rider|ELD|1 +4 Reaper of Night|ELD|1 +4 Specter's Shriek|ELD +24 Swamp|ELD|4 +4 The Cauldron of Eternity|ELD|1 +4 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Faeburrow.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Faeburrow.dck new file mode 100755 index 00000000000..9cb74fe88aa --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Faeburrow.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Wilds: Faeburrow +Difficulty=easy +Description=The wide-reaching roots of its trees draw more than water. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Faeburrow +[Main] +4 Enchanted Carriage|ELD +4 Faeburrow Elder|ELD|1 +4 Faerie Guidemother|ELD|1 +12 Forest|ELD|1 +4 Hushbringer|ELD|1 +4 Inquisitive Puppet|ELD +4 Mysterious Pathlighter|ELD +12 Plains|ELD|4 +4 Questing Beast|ELD|1 +4 Return to Nature|ELD +4 Stonecoil Serpent|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Malice Rocks.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Malice Rocks.dck new file mode 100755 index 00000000000..083642ee4f5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Malice Rocks.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Wilds: Malice Rocks +Difficulty=easy +Description="Imagine having your skeleton extracted through your ear, one bone at a time."\n-Corliss the Wanderer +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Malice Rocks +[Main] +4 Bonecrusher Giant|ELD|1 +4 Clackbridge Troll|ELD|1 +4 Giant's Skewer|ELD +4 Lash of Thorns|ELD +12 Mountain|ELD|3 +4 Raging Redcap|ELD +4 Reaper of Night|ELD|1 +4 Redcap Raiders|ELD +4 Specter's Shriek|ELD +16 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Maraleaf Coven.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Maraleaf Coven.dck new file mode 100755 index 00000000000..3153d36275b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Maraleaf Coven.dck @@ -0,0 +1,20 @@ +[metadata] +Title=The Wilds: Maraleaf Coven +Difficulty=easy +Description=Witches are shadowy human warlocks that reside in the wilds, so disconnected from the rest of humanity that most consider them to be fair folk. Witches are considered vile and cruel, taking great joy in their evil deeds. Peasants tell stories of children stolen and baked into pies, poisoned food wiping out entire towns, and once-great knights bewitched into servitude. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Maraleaf Coven +[Main] +4 Bake into a Pie|ELD +4 Cauldron Familiar|ELD +4 Chittering Witch|ELD +4 Fierce Witchstalker|ELD +8 Forest|ELD|2 +4 Gingerbread Cabin|ELD +4 Gingerbrute|ELD +4 Memory Theft|ELD +4 Revenge of Ravens|ELD +4 Sporecap Spider|ELD +12 Swamp|ELD|4 +4 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Maraleaf Forest.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Maraleaf Forest.dck new file mode 100755 index 00000000000..953d8d36f52 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Maraleaf Forest.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Wilds: Maraleaf Forest +Difficulty=easy +Description=Both fox and rider hunger for battle. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Maraleaf Forest +[Main] +4 Fae of Wishes|ELD|1 +12 Forest|ELD|1 +12 Island|ELD|3 +4 Maraleaf Pixie|ELD +4 Maraleaf Rider|ELD +4 Mystical Dispute|ELD +4 Sage of the Falls|ELD +4 Thornwood Falls|ELD +4 Thunderous Snapper|ELD +4 Wildborn Preserver|ELD|1 +4 Wildwood Tracker|ELD +[Sideboard] +4 Return to Nature|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Mistford.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Mistford.dck new file mode 100755 index 00000000000..5705e197697 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Mistford.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Wilds: Mistford +Difficulty=easy +Description=The fae raised the turtle from a tiny hatchling. They taught it whom to ferry--and whom to drown. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Mistford +[Main] +4 Didn't Say Please|ELD +4 Faerie Formation|ELD +20 Island|ELD|2 +4 Mistford River Turtle|ELD +4 Mystic Sanctuary|ELD +4 Roving Keep|ELD +4 Shambling Suit|ELD +4 Shimmer Dragon|ELD +4 So Tiny|ELD +4 Stolen by the Fae|ELD|1 +4 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Oakhame.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Oakhame.dck new file mode 100755 index 00000000000..3999f7970bb --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Oakhame.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Wilds: Oakhame +Difficulty=easy +Description=The elves remember every secret path from the days when they ruled the realm. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Oakhame +[Main] +4 Flutterfox|ELD +15 Forest|ELD|1 +4 Glass Casket|ELD|2 +4 Oakhame Adversary|ELD +4 Oakhame Ranger|ELD|1 +4 Once Upon a Time|ELD|1 +9 Plains|ELD|2 +4 Rosethorn Acolyte|ELD|1 +4 Rosethorn Halberd|ELD +4 Wildborn Preserver|ELD|1 +4 Wildwood Tracker|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Ogre's Pass.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Ogre's Pass.dck new file mode 100755 index 00000000000..4c00a18b4be --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Ogre's Pass.dck @@ -0,0 +1,18 @@ +[metadata] +Title=The Wilds: Ogre's Pass +Difficulty=easy +Description=Knights kept returning from Ogre's Pass wearing nothing but bruises, so they decided to just pretend it was on their side. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Ogre's Pass +[Main] +4 Barge In|ELD +4 Beanstalk Giant|ELD|1 +4 Bonecrusher Giant|ELD|1 +4 Feasting Troll King|ELD|1 +16 Forest|ELD|3 +4 Insatiable Appetite|ELD +12 Mountain|ELD|2 +4 Ogre Errant|ELD +4 Rampart Smasher|ELD +4 Skullknocker Ogre|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Red Fell.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Red Fell.dck new file mode 100755 index 00000000000..83676466fbc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds Red Fell.dck @@ -0,0 +1,19 @@ +[metadata] +Title=The Wilds: Red Fell +Difficulty=easy +Description=Dwarves are industrious artisans who value hard work and independence. They are miners and jewelers, and control over natural resources is an important aspect of dwarf society. Dwarves create intricate jewelry and sturdy weapons from the minerals they dig up. Occasionally they sell what they find to the courts of the Realm. Dwarves take pride in the things they make and value the dignity of work. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: Red Fell +[Main] +4 Brazen Borrower|ELD|1 +4 Dwarven Mine|ELD +4 Faerie Formation|ELD +4 Fires of Invention|ELD|1 +4 Hypnotic Sprite|ELD|1 +4 Improbable Alliance|ELD|1 +11 Island|ELD|2 +10 Mountain|ELD|4 +4 Rimrock Knight|ELD|1 +7 Seven Dwarves|ELD +4 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Bramblefort.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Bramblefort.dck new file mode 100755 index 00000000000..77738393af3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Bramblefort.dck @@ -0,0 +1,27 @@ +[metadata] +Title=The Wilds: The Bramblefort +Difficulty=easy +Description=No matter the cruelty of Oko's jokes, he's always guaranteed the sycophant's laughter. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: The Bramblefort +[Main] +4 Bog Naughty|ELD +4 Bramblefort Fink|ELD +4 Eye Collector|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Forest|ELD|1 +3 Frogify|ELD +5 Island|ELD|3 +4 Oko's Accomplices|ELD +4 Rankle, Master of Pranks|ELD|1 +10 Swamp|ELD|4 +4 Thornwood Falls|ELD +3 Turn into a Pumpkin|ELD +3 Wolf's Quarry|ELD +[Sideboard] +1 Frogify|ELD +1 Once Upon a Time|ELD|1 +1 Turn into a Pumpkin|ELD +1 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Haunted Glade.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Haunted Glade.dck new file mode 100755 index 00000000000..24049331b48 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Haunted Glade.dck @@ -0,0 +1,20 @@ +[metadata] +Title=The Wilds: The Haunted Glade +Difficulty=easy +Description=Witches place curses on those who wrong them, which can only be broken when the victim makes some kind of atonement. They turn the gluttonous into swine, the lazy into sloths, and the treacherous into weasels. In a way, they are a dark power of justice in the world, though the people of the realm are loath to agree. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: The Haunted Glade +[Main] +4 Barrow Witches|ELD +4 Foreboding Fruit|ELD +4 Foulmire Knight|ELD|1 +7 Island|ELD|4 +4 Piper of the Swarm|ELD|1 +4 Reave Soul|ELD +13 Swamp|ELD|4 +4 Taste of Death|ELD +4 Tempting Witch|ELD +4 Witch's Cottage|ELD +4 Witch's Vengeance|ELD|1 +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Heart Land.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Heart Land.dck new file mode 100755 index 00000000000..a43de678656 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 1 The Wilds The Heart Land.dck @@ -0,0 +1,22 @@ +[metadata] +Title=The Wilds: The Heart Land +Difficulty=easy +Description=The heart land is home to the ruins of the old crown city of the lost elven dominion. Four pyramids guard its perimeter, each with a pair of obelisks on top. The Jade Bridge and the Obsidian Bridge cross the river that surrounds the heart realm. The Obsidian Bridge houses a deadly guardian. In the center is an amphitheater made out of the remains of a petrified dragon, where the Council of Druids meets. It is also the location for the Well of Ghosts and the Bridge of Regrets. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 1 The Wilds: The Heart Land +[Main] +4 Bog Naughty|ELD +4 Clackbridge Troll|ELD|1 +4 Fabled Passage|ELD|1 +4 Feasting Troll King|ELD|1 +5 Forest|ELD|1 +4 Gluttonous Troll|ELD +1 Island|ELD|4 +4 Merfolk Secretkeeper|ELD|1 +4 Mystical Dispute|ELD +4 Rosethorn Acolyte|ELD|1 +4 Rosethorn Halberd|ELD +10 Swamp|ELD|3 +4 Thornwood Falls|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 101 Ardenvale Paladin.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 101 Ardenvale Paladin.dck new file mode 100755 index 00000000000..b180e9dce3c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 101 Ardenvale Paladin.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Ardenvale Paladin +Difficulty=medium +Description="Even when hope is but a small flame fighting the night, I will serve the absent king." +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 2 Archetype 101 Ardenvale Paladin +[Main] +4 Arcanist's Owl|ELD +4 Ardenvale Paladin|ELD +2 Clockwork Servant|ELD +4 Fireborn Knight|ELD +2 Henge Walker|ELD +4 Heraldic Banner|ELD +4 Idyllic Grange|ELD +4 Oakhame Ranger|ELD|1 +20 Plains|ELD|1 +4 Rally for the Throne|ELD +4 Resolute Rider|ELD +4 Silverflame Ritual|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 102 Vantress Paladin.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 102 Vantress Paladin.dck new file mode 100755 index 00000000000..b80ba085ebd --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 102 Vantress Paladin.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Archetype: Vantress Paladin +Difficulty=medium +Description="Someone knows where the king is. They can't expect to keep it a secret from us." +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 2 Archetype 102 Vantress Paladin +[Main] +4 Arcanist's Owl|ELD +4 Clockwork Servant|ELD +4 Henge Walker|ELD +4 Heraldic Banner|ELD +20 Island|ELD|2 +4 Loch Dragon|ELD +4 Mystic Sanctuary|ELD +4 Thunderous Snapper|ELD +4 Turn into a Pumpkin|ELD +4 Unexplained Vision|ELD +4 Vantress Paladin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 103 Locthwain Paladin.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 103 Locthwain Paladin.dck new file mode 100755 index 00000000000..eab20f5ca69 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 103 Locthwain Paladin.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Archetype: Locthwain Paladin +Difficulty=medium +Description="I will find the king if I have to ride from summer to winter and back again." +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 2 Archetype 103 Locthwain Paladin +[Main] +4 Cauldron's Gift|ELD +4 Clockwork Servant|ELD +4 Deathless Knight|ELD +4 Elite Headhunter|ELD +4 Foreboding Fruit|ELD +4 Henge Walker|ELD +4 Heraldic Banner|ELD +4 Locthwain Paladin|ELD +4 Resolute Rider|ELD +20 Swamp|ELD|2 +4 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 104 Embereth Paladin.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 104 Embereth Paladin.dck new file mode 100755 index 00000000000..97b98da9c93 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 104 Embereth Paladin.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Embereth Paladin +Difficulty=medium +Description="The king would die for the realm. I would not hesitate to do the same for him." +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 2 Archetype 104 Embereth Paladin +[Main] +2 Clockwork Servant|ELD +4 Dwarven Mine|ELD +4 Elite Headhunter|ELD +4 Embereth Paladin|ELD +4 Fireborn Knight|ELD +2 Henge Walker|ELD +4 Heraldic Banner|ELD +4 Loch Dragon|ELD +20 Mountain|ELD|4 +4 Rampart Smasher|ELD +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 105 Garenbrig Paladin.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 105 Garenbrig Paladin.dck new file mode 100755 index 00000000000..c5999829936 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 105 Garenbrig Paladin.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Garenbrig Paladin +Difficulty=medium +Description=(Garenbrig Paladin was not available for comment. For a knight of Garenbrig, actions speak louder than words.) +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 2 Archetype 105 Garenbrig Paladin +[Main] +2 Clockwork Servant|ELD +4 Deathless Knight|ELD +20 Forest|ELD|3 +4 Garenbrig Paladin|ELD +4 Gingerbread Cabin|ELD +2 Henge Walker|ELD +4 Heraldic Banner|ELD +4 Oakhame Ranger|ELD|1 +4 Once and Future|ELD +4 Outmuscle|ELD +4 Rampart Smasher|ELD +4 Thunderous Snapper|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 201 Shinechaser.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 201 Shinechaser.dck new file mode 100755 index 00000000000..356f25bb8b9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 201 Shinechaser.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Archetype: Shinechaser +Difficulty=medium +Description=A faerie's glee at her trove quickly fades to contentment, then to boredom, then to an urge to steal more. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 201 Shinechaser +[Main] +4 All That Glitters|ELD +4 Arcanist's Owl|ELD +4 Flutterfox|ELD +4 Fortifying Provisions|ELD +9 Island|ELD|3 +4 Locthwain Gargoyle|ELD +4 Moonlit Scavengers|ELD +15 Plains|ELD|4 +4 Shambling Suit|ELD +4 Shinechaser|ELD +4 Trapped in the Tower|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 202 Wintermoor Commander.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 202 Wintermoor Commander.dck new file mode 100755 index 00000000000..9e06ea85497 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 202 Wintermoor Commander.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Archetype: Wintermoor Commander +Difficulty=medium +Description=The dragon had a lot of things going through his mind that day. He didn't expect a sword to be one of them. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 202 Wintermoor Commander +[Main] +4 Barrow Witches|ELD +4 Epic Downfall|ELD +2 Fortifying Provisions|ELD +4 Foulmire Knight|ELD|1 +4 Lonesome Unicorn|ELD|1 +10 Plains|ELD|1 +4 Resolute Rider|ELD +4 Smitten Swordmaster|ELD|1 +12 Swamp|ELD|2 +2 Syr Alin, the Lion's Claw|ELD +2 Syr Konrad, the Grim|ELD +4 Tournament Grounds|ELD +4 Wintermoor Commander|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 203 Drown in the Loch.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 203 Drown in the Loch.dck new file mode 100755 index 00000000000..e534e4f8782 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 203 Drown in the Loch.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Drown in the Loch +Difficulty=medium +Description=In the wilds, the ravens steal far more than baubles. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 203 Drown in the Loch +[Main] +4 Didn't Say Please|ELD +4 Drown in the Loch|ELD +4 Eye Collector|ELD +2 Forever Young|ELD +4 Into the Story|ELD +12 Island|ELD|1 +4 Memory Theft|ELD +2 Mystic Sanctuary|ELD +4 Overwhelmed Apprentice|ELD +4 So Tiny|ELD +12 Swamp|ELD|1 +4 Syr Konrad, the Grim|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 204 Improbable Alliance.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 204 Improbable Alliance.dck new file mode 100755 index 00000000000..020a2ad6c6d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 204 Improbable Alliance.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Archetype: Improbable Alliance +Difficulty=medium +Description="I agreed to light his way as long as he always had my back."\n-Squill, Mistford pixie +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 204 Improbable Alliance +[Main] +4 Bloodhaze Wolverine|ELD +4 Faerie Vandal|ELD +4 Improbable Alliance|ELD|1 +15 Island|ELD|3 +4 Loch Dragon|ELD +4 Mad Ratter|ELD +4 Mantle of Tides|ELD +11 Mountain|ELD|3 +4 Sage of the Falls|ELD +2 Steelgaze Griffin|ELD +4 Tome Raider|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 205 Steelclaw Lance.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 205 Steelclaw Lance.dck new file mode 100755 index 00000000000..7b957a3658a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 205 Steelclaw Lance.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Steelclaw Lance +Difficulty=medium +Description="A traditional lance is fine for the Burning Yard, but in the wilds you need a nastier bite."\n-Kenver, Embereth weaponsmith +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 205 Steelclaw Lance +[Main] +4 Belle of the Brawl|ELD +4 Elite Headhunter|ELD +4 Epic Downfall|ELD +4 Joust|ELD +11 Mountain|ELD|4 +4 Order of Midnight|ELD|1 +4 Raging Redcap|ELD +4 Smitten Swordmaster|ELD|1 +4 Steelclaw Lance|ELD +11 Swamp|ELD|2 +2 Syr Konrad, the Grim|ELD +4 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 206 Savvy Hunter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 206 Savvy Hunter.dck new file mode 100755 index 00000000000..c38eb244e61 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 206 Savvy Hunter.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Archetype: Savvy Hunter +Difficulty=medium +Description=None of the other villagers dare venture into the wilds, so she feeds the whole hamlet herself. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 206 Savvy Hunter +[Main] +4 Bake into a Pie|ELD +4 Bog Naughty|ELD +4 Cauldron Familiar|ELD +4 Deathless Knight|ELD +2 Fell the Pheasant|ELD +4 Fierce Witchstalker|ELD +10 Forest|ELD|4 +4 Giant Opportunity|ELD +4 Gingerbread Cabin|ELD +4 Savvy Hunter|ELD +12 Swamp|ELD|3 +4 Trail of Crumbs|ELD +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 207 Grumgully, the Generous.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 207 Grumgully, the Generous.dck new file mode 100755 index 00000000000..df8d9fcc938 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 207 Grumgully, the Generous.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Grumgully, the Generous +Difficulty=medium +Description="Does it matter what it is? Take it and be grateful!" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 207 Grumgully, the Generous +[Main] +4 Barge In|ELD +4 Ferocity of the Wilds|ELD +14 Forest|ELD|2 +4 Grumgully, the Generous|ELD +4 Keeper of Fables|ELD +12 Mountain|ELD|2 +4 Raging Redcap|ELD +4 Rampart Smasher|ELD +2 Redcap Raiders|ELD +2 Rosethorn Halberd|ELD +4 Wildwood Tracker|ELD +2 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 208 Inspiring Veteran.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 208 Inspiring Veteran.dck new file mode 100755 index 00000000000..78fb7c91382 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 208 Inspiring Veteran.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Archetype: Inspiring Veteran +Difficulty=medium +Description="I fight for my daughter, who may not set foot on a battlefield for many years. Remember who you fight for." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 208 Inspiring Veteran +[Main] +4 Burning-Yard Trainer|ELD +4 Fireborn Knight|ELD +4 Inspiring Veteran|ELD|1 +4 Joust|ELD +11 Mountain|ELD|4 +11 Plains|ELD|1 +4 Raging Redcap|ELD +4 Rimrock Knight|ELD|1 +2 Syr Alin, the Lion's Claw|ELD +4 Tournament Grounds|ELD +4 Venerable Knight|ELD +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 209 Wandermare.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 209 Wandermare.dck new file mode 100755 index 00000000000..596d069f826 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 209 Wandermare.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Archetype: Wandermare +Difficulty=medium +Description="A good steed will carry you home. A great steed will carry you to glory."\n-Syr Alin, the Lion's Claw +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 209 Wandermare +[Main] +4 Ardenvale Tactician|ELD|1 +4 Edgewall Innkeeper|ELD +4 Flaxen Intruder|ELD|1 +13 Forest|ELD|4 +4 Garenbrig Squire|ELD +4 Lonesome Unicorn|ELD|1 +4 Mysterious Pathlighter|ELD +4 Oakhame Ranger|ELD|1 +13 Plains|ELD|2 +2 Rosethorn Acolyte|ELD|1 +4 Wandermare|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 210 Maraleaf Pixie.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 210 Maraleaf Pixie.dck new file mode 100755 index 00000000000..771c1fb9f91 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Archetype 210 Maraleaf Pixie.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Archetype: Maraleaf Pixie +Difficulty=medium +Description=Neither hostile nor friendly, pixies flit through the forest seeking the treasures of the wilds. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Archetype 210 Maraleaf Pixie +[Main] +4 Beanstalk Giant|ELD|1 +14 Forest|ELD|4 +4 Into the Story|ELD +10 Island|ELD|1 +4 Maraleaf Pixie|ELD +4 Rosethorn Acolyte|ELD|1 +4 Spinning Wheel|ELD +4 Syr Elenora, the Discerning|ELD +4 Thornwood Falls|ELD +4 Thunderous Snapper|ELD +4 Tuinvale Treefolk|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Colorless.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Colorless.dck new file mode 100755 index 00000000000..4720e29d6f3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Colorless.dck @@ -0,0 +1,39 @@ +[metadata] +Title=Colorless +Difficulty=medium +Description="The young squire gripped her sword as the clanking stranger emerged. It was no knight that had come to challenge her."\n-Beyond the Great Henge +Icon=Dungeon Crawling Colorless.jpg +Deck Type=constructed +Name=ELD 2 Colorless +[Main] +2 Crashing Drawbridge|ELD +4 Enchanted Carriage|ELD +4 Fabled Passage|ELD|1 +1 Forest|ELD|1 +1 Forest|ELD|2 +1 Forest|ELD|3 +1 Forest|ELD|4 +4 Gingerbrute|ELD +1 Island|ELD|1 +1 Island|ELD|2 +1 Island|ELD|3 +1 Island|ELD|4 +4 Jousting Dummy|ELD +1 Mountain|ELD|1 +1 Mountain|ELD|2 +1 Mountain|ELD|3 +1 Mountain|ELD|4 +1 Plains|ELD|1 +1 Plains|ELD|2 +1 Plains|ELD|3 +1 Plains|ELD|4 +4 Prophet of the Peak|ELD +2 Roving Keep|ELD +4 Scalding Cauldron|ELD +4 Shambling Suit|ELD +4 Sorcerer's Broom|ELD +4 Stonecoil Serpent|ELD|1 +1 Swamp|ELD|1 +1 Swamp|ELD|2 +1 Swamp|ELD|3 +1 Swamp|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Dragons.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Dragons.dck new file mode 100755 index 00000000000..ef3400fe3a4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Dragons.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Dragons +Difficulty=medium +Description=Despite its ferocity, its favor can be won with a gift of something it's never seen before. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Dragons +[Main] +4 Charmed Sleep|ELD +4 Embereth Paladin|ELD +4 Embereth Skyblazer|ELD +4 Fabled Passage|ELD|1 +11 Island|ELD|2 +4 Loch Dragon|ELD +13 Mountain|ELD|2 +4 Opportunistic Dragon|ELD|1 +4 Scorching Dragonfire|ELD +4 Shimmer Dragon|ELD +4 Vantress Paladin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 01 Dance of the Manse.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 01 Dance of the Manse.dck new file mode 100755 index 00000000000..aa4b44ae876 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 01 Dance of the Manse.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Extended Art: Dance of the Manse +Difficulty=medium +Description=(Disclaimer: No actual Dance.) +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 01 Dance of the Manse +[Main] +4 Castle Vantress|ELD|2 +4 Charming Prince|ELD|2 +4 Fabled Passage|ELD|2 +4 Folio of Fancies|ELD|2 +4 Gadwick, the Wizened|ELD|2 +4 Happily Ever After|ELD|2 +4 Hushbringer|ELD|2 +10 Island|ELD|4 +4 Midnight Clock|ELD|2 +4 Mirrormade|ELD|2 +6 Plains|ELD|4 +4 The Magic Mirror|ELD|2 +4 Vantress Gargoyle|ELD|2 +[Sideboard] +4 Dance of the Manse|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 02 Doom Foretold.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 02 Doom Foretold.dck new file mode 100755 index 00000000000..e07ba8ca877 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 02 Doom Foretold.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Extended Art: Doom Foretold +Difficulty=medium +Description=In the end, death usually has its way. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 02 Doom Foretold +[Main] +4 Blacklance Paragon|ELD|2 +4 Castle Ardenvale|ELD|2 +4 Castle Locthwain|ELD|2 +4 Doom Foretold|ELD|2 +4 Fabled Passage|ELD|2 +4 Linden, the Steadfast Queen|ELD|2 +4 Oathsworn Knight|ELD|2 +4 Piper of the Swarm|ELD|2 +7 Plains|ELD|1 +9 Swamp|ELD|2 +4 The Cauldron of Eternity|ELD|2 +4 The Circle of Loyalty|ELD|2 +4 Worthy Knight|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 03 Lochmere Serpent.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 03 Lochmere Serpent.dck new file mode 100755 index 00000000000..74f84527c95 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 03 Lochmere Serpent.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Extended Art: Lochmere Serpent +Difficulty=medium +Description=The hex swept through the village, its citizens falling one by one. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 03 Lochmere Serpent +[Main] +4 Castle Vantress|ELD|2 +4 Clackbridge Troll|ELD|2 +4 Emry, Lurker of the Loch|ELD|2 +4 Fabled Passage|ELD|2 +4 Folio of Fancies|ELD|2 +8 Island|ELD|1 +4 Lochmere Serpent|ELD|2 +4 Sorcerous Spyglass|ELD|2 +12 Swamp|ELD|3 +4 Vantress Gargoyle|ELD|2 +4 Wishclaw Talisman|ELD|2 +4 Witch's Vengeance|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 04 The Royal Scions.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 04 The Royal Scions.dck new file mode 100755 index 00000000000..a3a2b0689d0 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 04 The Royal Scions.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Extended Art: The Royal Scions +Difficulty=medium +Description="Courage is the greatest virtue!"\n"Aye, with the knowledge to direct it."\n-Rowan and Will Kenrith, the Royal Scions +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 04 The Royal Scions +[Main] +4 Castle Embereth|ELD|2 +4 Castle Vantress|ELD|2 +4 Embercleave|ELD|2 +4 Fabled Passage|ELD|2 +4 Fervent Champion|ELD|2 +4 Gadwick, the Wizened|ELD|2 +4 Irencrag Pyromancer|ELD|2 +8 Island|ELD|1 +4 Mirrormade|ELD|2 +8 Mountain|ELD|4 +4 Sundering Stroke|ELD|2 +4 The Magic Mirror|ELD|2 +4 The Royal Scions|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 05 Stormfist Crusader.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 05 Stormfist Crusader.dck new file mode 100755 index 00000000000..a8bc24c5274 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 05 Stormfist Crusader.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Extended Art: Stormfist Crusader +Difficulty=medium +Description="As she reached the pinnacle, lightning flashed and her eyes blazed with newfound power."\n-Legend of the Gilded Knights +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 05 Stormfist Crusader +[Main] +4 Ayara, First of Locthwain|ELD|2 +4 Blacklance Paragon|ELD|2 +4 Castle Embereth|ELD|2 +4 Castle Locthwain|ELD|2 +4 Embercleave|ELD|2 +4 Fabled Passage|ELD|2 +4 Fervent Champion|ELD|2 +4 Irencrag Pyromancer|ELD|2 +8 Mountain|ELD|4 +4 Oathsworn Knight|ELD|2 +4 Stormfist Crusader|ELD|2 +4 Sundering Stroke|ELD|2 +8 Swamp|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 06 Garruk, Cursed Huntsman.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 06 Garruk, Cursed Huntsman.dck new file mode 100755 index 00000000000..3f77daea1d7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 06 Garruk, Cursed Huntsman.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Extended Art: Garruk, Cursed Huntsman +Difficulty=medium +Description="The curse is broken." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 06 Garruk, Cursed Huntsman +[Main] +4 Castle Garenbrig|ELD|2 +4 Clackbridge Troll|ELD|2 +4 Fabled Passage|ELD|2 +4 Feasting Troll King|ELD|2 +12 Forest|ELD|2 +4 Garruk, Cursed Huntsman|ELD|2 +4 Rankle, Master of Pranks|ELD|2 +4 Return of the Wildspeaker|ELD|2 +8 Swamp|ELD|4 +4 The Great Henge|ELD|2 +4 Wishclaw Talisman|ELD|2 +4 Yorvo, Lord of Garenbrig|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 07 Escape to the Wilds.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 07 Escape to the Wilds.dck new file mode 100755 index 00000000000..23272491536 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 07 Escape to the Wilds.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Extended Art: Escape to the Wilds +Difficulty=medium +Description=The guards kindled the hearth and locked the door to Ellwen's chamber. By morning, the fire was out and Ellwen was gone. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 07 Escape to the Wilds +[Main] +4 Escape to the Wilds|ELD|2 +4 Fabled Passage|ELD|2 +4 Feasting Troll King|ELD|2 +4 Fires of Invention|ELD|2 +12 Forest|ELD|2 +4 Gilded Goose|ELD|2 +12 Mountain|ELD|3 +4 Opportunistic Dragon|ELD|2 +4 Stonecoil Serpent|ELD|2 +4 Torbran, Thane of Red Fell|ELD|2 +4 Wildborn Preserver|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 08 Outlaws' Merriment.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 08 Outlaws' Merriment.dck new file mode 100755 index 00000000000..c29683e56fd --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 08 Outlaws' Merriment.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Extended Art: Outlaws' Merriment +Difficulty=medium +Description="Just tell us how many you want and get out of the way." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 08 Outlaws' Merriment +[Main] +4 Acclaimed Contender|ELD|2 +4 Fabled Passage|ELD|2 +4 Fires of Invention|ELD|2 +4 Happily Ever After|ELD|2 +4 Harmonious Archon|ELD|2 +10 Mountain|ELD|2 +4 Outlaws' Merriment|ELD|2 +10 Plains|ELD|3 +4 Robber of the Rich|ELD|2 +4 Stonecoil Serpent|ELD|2 +4 Torbran, Thane of Red Fell|ELD|2 +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 09 Faeburrow Elder.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 09 Faeburrow Elder.dck new file mode 100755 index 00000000000..e07fd321de6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 09 Faeburrow Elder.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Extended Art: Faeburrow Elder +Difficulty=medium +Description=Its wide-reaching roots draw more than water. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 09 Faeburrow Elder +[Main] +4 Fabled Passage|ELD|2 +4 Faeburrow Elder|ELD|2 +12 Forest|ELD|1 +4 Gilded Goose|ELD|2 +4 Happily Ever After|ELD|2 +4 Harmonious Archon|ELD|2 +4 Hushbringer|ELD|2 +4 Once Upon a Time|ELD|2 +12 Plains|ELD|4 +4 Questing Beast|ELD|2 +4 Stonecoil Serpent|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 10 Oko, Thief of Crowns.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 10 Oko, Thief of Crowns.dck new file mode 100755 index 00000000000..8e58c4960cf --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Extended Art 10 Oko, Thief of Crowns.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Extended Art: Oko, Thief of Crowns +Difficulty=medium +Description="Welcome to the feast!"\n-Oko +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Extended Art 10 Oko, Thief of Crowns +[Main] +4 Fabled Passage|ELD|2 +4 Feasting Troll King|ELD|2 +12 Forest|ELD|1 +4 Gilded Goose|ELD|2 +8 Island|ELD|4 +4 Oko, Thief of Crowns|ELD|2 +4 Once Upon a Time|ELD|2 +4 Questing Beast|ELD|2 +4 Return of the Wildspeaker|ELD|2 +4 Stolen by the Fae|ELD|2 +4 Stonecoil Serpent|ELD|2 +4 Thornwood Falls|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Planeswalker Garruk.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Planeswalker Garruk.dck new file mode 100755 index 00000000000..d4f28d5ab31 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Planeswalker Garruk.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Planeswalker Deck: Garruk +Difficulty=medium +Description=If Garruk had an official Planeswalker Deck, it would be something like this. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Planeswalker: Garruk +[Main] +1 Beanstalk Giant|ELD|1 +2 Deathless Knight|ELD +2 Epic Downfall|ELD +2 Fell the Pheasant|ELD +4 Fierce Witchstalker|ELD +15 Forest|ELD|2 +3 Garruk, Cursed Huntsman|ELD|2 +2 Gingerbrute|ELD +2 Keeper of Fables|ELD +4 Outmuscle|ELD +1 Return of the Wildspeaker|ELD|1 +3 Return to Nature|ELD +2 Savvy Hunter|ELD +10 Swamp|ELD|1 +4 Wildwood Tracker|ELD +3 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Planeswalker Will & Rowan.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Planeswalker Will & Rowan.dck new file mode 100755 index 00000000000..291fcb300f5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Planeswalker Will & Rowan.dck @@ -0,0 +1,27 @@ +[metadata] +Title=Planeswalker Deck: Will & Rowan +Difficulty=medium +Description=If Will and Rowan Kenrith had an official Planeswalker Deck, it would be something like this. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Planeswalker: Will & Rowan +[Main] +1 Castle Vantress|ELD|1 +1 Crashing Drawbridge|ELD +2 Faerie Vandal|ELD +2 Improbable Alliance|ELD|1 +13 Island|ELD|2 +2 Joust|ELD +1 Loch Dragon|ELD +11 Mountain|ELD|4 +3 Opt|ELD +2 Rimrock Knight|ELD|1 +2 Rowan's Battleguard|ELD +3 Scorching Dragonfire|ELD +3 Steelgaze Griffin|ELD +1 The Magic Mirror|ELD|1 +2 The Royal Scions|ELD|1 +2 The Royal Scions|ELD|2 +3 Unexplained Vision|ELD +3 Vantress Paladin|ELD +3 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Faerie Schemes.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Faerie Schemes.dck new file mode 100755 index 00000000000..7ef4b6f649d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Faerie Schemes.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Brawl Deck: Faerie Schemes +Difficulty=medium +Description=A curated version of the official Brawl Deck, with the non-Eldraine cards replaced. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Precon: Brawl: Faerie Schemes +[Main] +4 Alela, Artful Provocateur|ELD +2 All That Glitters|ELD +2 Animating Faerie|ELD|1 +3 Arcanist's Owl|ELD +1 Banish into Fable|ELD +4 Corridor Monitor|ELD +2 Frogify|ELD +4 Golden Egg|ELD +2 Heraldic Banner|ELD +11 Island|ELD|4 +8 Plains|ELD|4 +2 Shambling Suit|ELD +1 Shimmer Dragon|ELD +2 Shinechaser|ELD +7 Swamp|ELD|3 +4 Witching Well|ELD +1 Workshop Elders|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Knights' Charge.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Knights' Charge.dck new file mode 100755 index 00000000000..7d3874b607f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Knights' Charge.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Brawl Deck: Knights' Charge +Difficulty=medium +Description=A curated version of the official Brawl Deck, with the non-Eldraine cards replaced. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Precon: Brawl: Knights' Charge +[Main] +2 Belle of the Brawl|ELD +3 Crystal Slipper|ELD +2 Embereth Shieldbreaker|ELD|1 +1 Embereth Skyblazer|ELD +2 Fireborn Knight|ELD +2 Foulmire Knight|ELD|1 +2 Inspiring Veteran|ELD|1 +1 Knights' Charge|ELD +5 Mountain|ELD|4 +2 Order of Midnight|ELD|1 +4 Plains|ELD|1 +3 Shining Armor|ELD +1 Silverwing Squadron|ELD +4 Smitten Swordmaster|ELD|1 +2 Steelclaw Lance|ELD +8 Swamp|ELD|2 +4 Syr Gwyn, Hero of Ashvale|ELD +2 Syr Konrad, the Grim|ELD +4 Tournament Grounds|ELD +2 Venerable Knight|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Savage Hunger.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Savage Hunger.dck new file mode 100755 index 00000000000..b414f866938 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Savage Hunger.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Brawl Deck: Savage Hunger +Difficulty=medium +Description=A curated version of the official Brawl Deck, with the non-Eldraine cards replaced. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Precon: Brawl: Savage Hunger +[Main] +4 Bake into a Pie|ELD +3 Chittering Witch|ELD +9 Forest|ELD|2 +3 Gluttonous Troll|ELD +4 Golden Egg|ELD +4 Keeper of Fables|ELD +4 Korvold, Fae-Cursed King|ELD +6 Mountain|ELD|1 +4 Savvy Hunter|ELD +13 Swamp|ELD|1 +4 Syr Konrad, the Grim|ELD +2 Taste of Death|ELD +[Sideboard] +1 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Wild Bounty.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Wild Bounty.dck new file mode 100755 index 00000000000..fd74e066d69 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Brawl Wild Bounty.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Brawl Deck: Wild Bounty +Difficulty=medium +Description=A curated version of the official Brawl Deck, with the non-Eldraine cards replaced. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Precon: Brawl: Wild Bounty +[Main] +4 Beanstalk Giant|ELD|1 +4 Chulane, Teller of Tales|ELD +4 Faerie Formation|ELD +4 Faerie Vandal|ELD +10 Forest|ELD|2 +7 Island|ELD|1 +4 Keeper of Fables|ELD +4 Maraleaf Pixie|ELD +7 Plains|ELD|2 +4 Rosethorn Acolyte|ELD|1 +4 Steelbane Hydra|ELD +4 Thornwood Falls|ELD +[Sideboard] +1 Run Away Together|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Planeswalker Oko.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Planeswalker Oko.dck new file mode 100755 index 00000000000..661aeda2664 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Planeswalker Oko.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Planeswalker Deck: Oko +Difficulty=medium +Description=This official two-color Planeswalker Deck showcases what green-blue is doing in Eldraine. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Precon: Planeswalker: Oko +[Main] +1 Beanstalk Giant|ELD|1 +3 Bramblefort Fink|ELD +3 Charmed Sleep|ELD +2 Faerie Vandal|ELD +11 Forest|ELD|1 +3 Frogify|ELD +3 Garenbrig Carver|ELD|1 +10 Island|ELD|3 +2 Keeper of Fables|ELD +3 Maraleaf Pixie|ELD +2 Mistford River Turtle|ELD +4 Oko's Accomplices|ELD +3 Oko, the Trickster|ELD +1 Return of the Wildspeaker|ELD|1 +4 Thornwood Falls|ELD +3 Tome Raider|ELD +1 Tuinvale Treefolk|ELD|1 +1 Wildborn Preserver|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Planeswalker Rowan.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Planeswalker Rowan.dck new file mode 100755 index 00000000000..53f7a5ca725 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Precon Planeswalker Rowan.dck @@ -0,0 +1,30 @@ +[metadata] +Title=Planeswalker Deck: Rowan +Difficulty=medium +Description=This official two-color Planeswalker Deck showcases what white-red is doing in Eldraine. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Precon: Planeswalker: Rowan +[Main] +1 Acclaimed Contender|ELD|1 +2 Ardenvale Tactician|ELD|1 +4 Garrison Griffin|ELD +1 Giant Killer|ELD|1 +2 Inspiring Veteran|ELD|1 +2 Joust|ELD +2 Knight of the Keep|ELD +10 Mountain|ELD|4 +10 Plains|ELD|1 +2 Prized Griffin|ELD +3 Rimrock Knight|ELD|1 +3 Rowan's Battleguard|ELD +2 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +3 Scorching Dragonfire|ELD +2 Venerable Knight|ELD +1 Weaselback Redcap|ELD +4 Wind-Scarred Crag|ELD +2 Youthful Knight|ELD +[Sideboard] +1 Plains|ELD|1 +2 Weapon Rack|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 2 Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 2 Blue.dck new file mode 100755 index 00000000000..666c8ea7799 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 2 Blue.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Seven Dwarves +Difficulty=medium +Description="Brothers of the mine rejoice! Swing, swing, swing with me\nRaise your pick and raise your voice! Sing, sing, sing with me\n-Wind Rose, Diggy Diggy Hole +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Seven Dwarves 2 Blue +[Main] +2 Castle Embereth|ELD|1 +1 Embercleave|ELD|1 +4 Fabled Passage|ELD|1 +1 Ferocity of the Wilds|ELD +4 Heraldic Banner|ELD +9 Island|ELD|1 +11 Mountain|ELD|4 +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +7 Seven Dwarves|ELD +4 The Royal Scions|ELD|1 +4 Turn into a Pumpkin|ELD +4 Unexplained Vision|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 3 Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 3 Black.dck new file mode 100755 index 00000000000..d2b95eec1a4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 3 Black.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Seven Dwarves +Difficulty=medium +Description=While most dwarves highly value their individual ability to take care of themselves and pull their own weight, most ultimately prefer strength in numbers. Dwarves usually choose to live in tight-knit family groups that hold claim to mineral deposits. Each vein of gold or cave of sapphires is controlled by a different clan of dwarves. Dwarf households are underground, carved out of massive crystal and gems and far away from natural light sources. No human has ever laid eyes on the inside of a dwarf burrow, but rumor has it the underground houses are carved out of rubies and emeralds as large as boulders. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Seven Dwarves 3 Black +[Main] +4 Bake into a Pie|ELD +2 Castle Embereth|ELD|1 +4 Castle Locthwain|ELD|1 +1 Embercleave|ELD|1 +4 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +1 Ferocity of the Wilds|ELD +4 Foreboding Fruit|ELD +4 Forever Young|ELD +4 Heraldic Banner|ELD +10 Mountain|ELD|4 +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +7 Seven Dwarves|ELD +6 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 4 Red.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 4 Red.dck new file mode 100755 index 00000000000..7f376d9ce03 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 4 Red.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Seven Dwarves +Difficulty=medium +Description="I am a dwarf and I'm digging a hole\nDiggy, diggy hole, diggy, diggy hole"\n-Wind Rose, Diggy Diggy Hole +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 2 Seven Dwarves 4 Red +[Main] +4 Castle Embereth|ELD|1 +2 Embercleave|ELD|1 +2 Ferocity of the Wilds|ELD +4 Golden Egg|ELD +4 Heraldic Banner|ELD +20 Mountain|ELD|4 +4 Redcap Melee|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +7 Seven Dwarves|ELD +4 Thrill of Possibility|ELD +4 Tome of Legends|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 5 Green.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 5 Green.dck new file mode 100755 index 00000000000..951deba18bc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Seven Dwarves 5 Green.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Seven Dwarves +Difficulty=medium +Description="Heigh-ho, heigh-ho\nIt's home from work we go"\n-The Seven Dwarfs, Disney's 1937 animated feature film Snow White and the Seven Dwarfs +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Seven Dwarves 5 Green +[Main] +2 Castle Embereth|ELD|1 +1 Embercleave|ELD|1 +4 Escape to the Wilds|ELD|1 +4 Fabled Passage|ELD|1 +1 Ferocity of the Wilds|ELD +9 Forest|ELD|3 +4 Heraldic Banner|ELD +11 Mountain|ELD|4 +2 Once and Future|ELD +4 Once Upon a Time|ELD|1 +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +7 Seven Dwarves|ELD +4 Tall as a Beanstalk|ELD +2 The Great Henge|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 1 Loyalty.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 1 Loyalty.dck new file mode 100755 index 00000000000..abba6318c60 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 1 Loyalty.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Virtue of Loyalty +Difficulty=medium +Description=Without Ardenvale's loyalty, the realm would greedily devour itself. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 2 The Five Virtues 1 Loyalty +[Main] +4 Ardenvale Paladin|ELD +2 Ardenvale Tactician|ELD|1 +4 Castle Ardenvale|ELD|2 +4 Idyllic Grange|ELD +4 Linden, the Steadfast Queen|ELD|1 +18 Plains|ELD|1 +4 Rally for the Throne|ELD +4 Shining Armor|ELD +4 Silverflame Ritual|ELD +2 Silverflame Squire|ELD|1 +4 Syr Alin, the Lion's Claw|ELD +4 The Circle of Loyalty|ELD|1 +2 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 2 Knowledge.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 2 Knowledge.dck new file mode 100755 index 00000000000..2b032c0083b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 2 Knowledge.dck @@ -0,0 +1,22 @@ +[metadata] +Title=The Virtue of Knowledge +Difficulty=medium +Description=Without Vantress's knowledge, the realm would lose itself in darkness. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 2 The Five Virtues 2 Knowledge +[Main] +4 Castle Vantress|ELD|2 +4 Clockwork Servant|ELD +2 Folio of Fancies|ELD|1 +4 Gadwick, the Wizened|ELD|1 +16 Island|ELD|1 +4 Mantle of Tides|ELD +4 Mystic Sanctuary|ELD +2 Overwhelmed Apprentice|ELD +2 Queen of Ice|ELD|1 +4 Syr Elenora, the Discerning|ELD +2 The Magic Mirror|ELD|1 +4 Turn into a Pumpkin|ELD +4 Unexplained Vision|ELD +4 Vantress Paladin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 3 Persistence.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 3 Persistence.dck new file mode 100755 index 00000000000..8b37423d578 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 3 Persistence.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Virtue of Persistence +Difficulty=medium +Description=Without Locthwain's persistence, the realm would stagnate and die. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 2 The Five Virtues 3 Persistence +[Main] +4 Ayara, First of Locthwain|ELD|1 +4 Belle of the Brawl|ELD +4 Castle Locthwain|ELD|2 +4 Foreboding Fruit|ELD +2 Giant's Skewer|ELD +4 Locthwain Paladin|ELD +4 Lost Legion|ELD +4 Oathsworn Knight|ELD|1 +4 Smitten Swordmaster|ELD|1 +17 Swamp|ELD|2 +3 Syr Konrad, the Grim|ELD +2 The Cauldron of Eternity|ELD|1 +4 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 4 Courage.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 4 Courage.dck new file mode 100755 index 00000000000..cbb0acde9e4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 4 Courage.dck @@ -0,0 +1,22 @@ +[metadata] +Title=The Virtue of Courage +Difficulty=medium +Description=Without Embereth's courage, the realm would falter and fall. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 2 The Five Virtues 4 Courage +[Main] +4 Castle Embereth|ELD|2 +2 Crystal Slipper|ELD +4 Dwarven Mine|ELD +4 Embercleave|ELD|1 +4 Embereth Paladin|ELD +4 Embereth Shieldbreaker|ELD|1 +2 Embereth Skyblazer|ELD +2 Joust|ELD +16 Mountain|ELD|1 +4 Rimrock Knight|ELD|1 +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +4 Syr Carah, the Bold|ELD +2 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 5 Strength.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 5 Strength.dck new file mode 100755 index 00000000000..dc0926c7151 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 The Five Virtues 5 Strength.dck @@ -0,0 +1,22 @@ +[metadata] +Title=The Virtue of Strength +Difficulty=medium +Description=Without Garenbrig's strength, the realm would succumb to the wilds. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 2 The Five Virtues 5 Strength +[Main] +4 Castle Garenbrig|ELD|2 +16 Forest|ELD|4 +4 Garenbrig Paladin|ELD +2 Garenbrig Squire|ELD +4 Gingerbread Cabin|ELD +4 Henge Walker|ELD +2 Once and Future|ELD +4 Outmuscle|ELD +2 Rosethorn Halberd|ELD +4 Syr Faren, the Hengehammer|ELD +2 Tall as a Beanstalk|ELD +4 The Great Henge|ELD|1 +4 Tuinvale Treefolk|ELD|1 +4 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Weapon Rack.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Weapon Rack.dck new file mode 100755 index 00000000000..514c9fc76f4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 2 Weapon Rack.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Weapon Rack +Difficulty=medium +Description=No weapon stays on the rack for long in the Burning Yard. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 2 Weapon Rack +[Main] +4 Animating Faerie|ELD|1 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Forest|ELD|1 +16 Island|ELD|4 +4 Lucky Clover|ELD +4 Mirrormade|ELD|1 +4 Oko, Thief of Crowns|ELD|1 +4 Thornwood Falls|ELD +4 Turn into a Pumpkin|ELD +4 Weapon Rack|ELD +4 Workshop Elders|ELD +[Sideboard] +4 Charmed Sleep|ELD +4 Opt|ELD +3 Scalding Cauldron|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Double Strike.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Double Strike.dck new file mode 100755 index 00000000000..e3ec75ff9f8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Double Strike.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Acclaimed Contender +Difficulty=hard +Description=Many tales of redcap terror begin with two simple things: bloodlust and stolen steel. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Acclaimed Contender - Double Strike +[Main] +4 Acclaimed Contender|ELD|2 +4 All That Glitters|ELD +2 Embercleave|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +4 Fireborn Knight|ELD +4 Glass Casket|ELD|1 +4 Inspiring Veteran|ELD|1 +4 Joust|ELD +5 Mountain|ELD|1 +5 Plains|ELD|1 +4 Raging Redcap|ELD +2 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD +[Sideboard] + diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Knights.dck new file mode 100755 index 00000000000..d2a7eb618f2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Knights.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Acclaimed Contender +Difficulty=hard +Description=In the realm, knighthood is among the highest honors one can receive. Knights are revered as champions, heroes, and paragons of virtue. Knights of the realm, who are all addressed with the honorific "Syr," have many responsibilities, from protecting innocent townsfolk to going on daring adventures in the wilds. Knights are often equipped with finely crafted armor and weaponry, ride noble steeds of various size and species, and occasionally wield powerful magic drawn from the relic of their respective court. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Acclaimed Contender - Knights +[Main] +4 Acclaimed Contender|ELD|2 +4 Blacklance Paragon|ELD|1 +4 Fabled Passage|ELD|1 +1 Giant's Skewer|ELD +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +6 Plains|ELD|1 +4 Smitten Swordmaster|ELD|1 +6 Swamp|ELD|2 +3 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Trapped in the Tower|ELD +4 Venerable Knight|ELD +4 Wintermoor Commander|ELD +4 Worthy Knight|ELD|1 +[Sideboard] + diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Non-human.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Non-human.dck new file mode 100755 index 00000000000..9c5f8afa50d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Acclaimed Contender - Non-human.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Acclaimed Contender +Difficulty=hard +Description="Don't let it fool you. Many of us got our first scars from Syr Nobody."\n-Syr Layne, knight of Embereth +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Acclaimed Contender - Non-human +[Main] +4 Acclaimed Contender|ELD|2 +4 All That Glitters|ELD +2 Deathless Knight|ELD +4 Fabled Passage|ELD|1 +9 Forest|ELD|3 +4 Garenbrig Paladin|ELD +4 Jousting Dummy|ELD +4 Maraleaf Rider|ELD +7 Plains|ELD|1 +4 Rosethorn Halberd|ELD +4 Tall as a Beanstalk|ELD +3 The Circle of Loyalty|ELD|1 +3 The Great Henge|ELD|1 +4 Trapped in the Tower|ELD +[Sideboard] + diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Advanced Trolling.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Advanced Trolling.dck new file mode 100755 index 00000000000..213c595a84d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Advanced Trolling.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Advanced Trolling +Difficulty=hard +Description="They see me trollin', they hatin'"\n-Chamillionaire +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Advanced Trolling +[Main] +4 Archon of Absolution|ELD +4 Bake into a Pie|ELD +4 Clackbridge Troll|ELD|2 +4 Fabled Passage|ELD|1 +1 Giant's Skewer|ELD +4 Hushbringer|ELD|1 +1 Kenrith, the Returned King|ELD +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +9 Plains|ELD|1 +4 Revenge of Ravens|ELD +13 Swamp|ELD|2 +1 Syr Konrad, the Grim|ELD +1 The Cauldron of Eternity|ELD|1 +2 The Circle of Loyalty|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Beloved Princess - GW.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Beloved Princess - GW.dck new file mode 100755 index 00000000000..9632ecfcb98 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Beloved Princess - GW.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Beloved Princess +Difficulty=hard +Description="Right now you are a feeble stick, but I will help you grow some rings." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Beloved Princess - GW +[Main] +4 Beloved Princess|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +12 Forest|ELD|4 +4 Garenbrig Carver|ELD|1 +4 Hushbringer|ELD|1 +4 Outmuscle|ELD +10 Plains|ELD|1 +4 Syr Faren, the Hengehammer|ELD +4 Tall as a Beanstalk|ELD +2 The Circle of Loyalty|ELD|1 +4 Tuinvale Treefolk|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Beloved Princess - Glitter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Beloved Princess - Glitter.dck new file mode 100755 index 00000000000..01b09026367 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Beloved Princess - Glitter.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Beloved Princess +Difficulty=hard +Description=Sometimes a gentle slipper can travel where an armored boot's been denied. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Beloved Princess - Glitter +[Main] +4 All That Glitters|ELD +4 Arcanist's Owl|ELD +4 Beloved Princess|ELD +4 Clockwork Servant|ELD +2 Fortifying Provisions|ELD +4 Glass Casket|ELD|1 +4 Heraldic Banner|ELD +4 Idyllic Grange|ELD +20 Plains|ELD|1 +4 Shambling Suit|ELD +4 Stonecoil Serpent|ELD|1 +2 The Circle of Loyalty|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Bloko.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Bloko.dck new file mode 100755 index 00000000000..1c4c2b32c12 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Bloko.dck @@ -0,0 +1,27 @@ +[metadata] +Title=Bloko +Difficulty=hard +Description=Black Oko. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Bloko +[Main] +4 Bake into a Pie|ELD +4 Cauldron Familiar|ELD +4 Fabled Passage|ELD|1 +5 Forest|ELD|1 +4 Gilded Goose|ELD|1 +4 Golden Egg|ELD +1 Island|ELD|3 +4 Oathsworn Knight|ELD|1 +4 Oko, Thief of Crowns|ELD|2 +4 Revenge of Ravens|ELD +4 Savvy Hunter|ELD +10 Swamp|ELD|3 +4 Taste of Death|ELD +4 Thornwood Falls|ELD +[Sideboard] +1 Into the Story|ELD +1 Return of the Wildspeaker|ELD|1 +1 The Great Henge|ELD|1 +1 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Burn.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Burn.dck new file mode 100755 index 00000000000..63b0b6c070a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Burn.dck @@ -0,0 +1,17 @@ +[metadata] +Title=Burn +Difficulty=hard +Description=The purest virtue burns brighter than the sun and hotter than dragonfire. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Burn +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brimstone Trebuchet|ELD +28 Mountain|ELD|2 +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +4 Sundering Stroke|ELD|1 +4 Syr Carah, the Bold|ELD +4 Thrill of Possibility|ELD +4 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Alela, Artful Provocateur - Doom.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Alela, Artful Provocateur - Doom.dck new file mode 100755 index 00000000000..5e297c3f952 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Alela, Artful Provocateur - Doom.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Commander: Alela +Difficulty=hard +Description="Rankle's pranks are child's play. My games will topple kingdoms." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Alela, Artful Provocateur - Doom +[Main] +4 Alela, Artful Provocateur|ELD +4 Arcanist's Owl|ELD +3 Doom Foretold|ELD|1 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +1 Giant's Skewer|ELD +4 Golden Egg|ELD +10 Island|ELD|4 +8 Plains|ELD|4 +4 Sorcerer's Broom|ELD +4 Stonecoil Serpent|ELD|1 +6 Swamp|ELD|3 +4 Witching Well|ELD +[Sideboard] +1 Doom Foretold|ELD|1 +1 Fortifying Provisions|ELD +1 Glass Casket|ELD|1 +1 Scalding Cauldron|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Alela, Artful Provocateur - Glitter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Alela, Artful Provocateur - Glitter.dck new file mode 100755 index 00000000000..934b7dc9bbe --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Alela, Artful Provocateur - Glitter.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Commander: Alela +Difficulty=hard +Description="As the traitor hurried across the courtyard, the gargoyle's eyes snapped open. It was time to pay the queen a visit."\n-Beyond the Great Henge +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Alela, Artful Provocateur - Glitter +[Main] +4 Alela, Artful Provocateur|ELD +4 All That Glitters|ELD +4 Arcanist's Owl|ELD +4 Fabled Passage|ELD|1 +2 Glass Casket|ELD|1 +4 Golden Egg|ELD +8 Island|ELD|4 +4 Locthwain Gargoyle|ELD +8 Plains|ELD|4 +4 Shambling Suit|ELD +4 Stonecoil Serpent|ELD|1 +4 Swamp|ELD|3 +2 Trapped in the Tower|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Ayara, First of Locthwain.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Ayara, First of Locthwain.dck new file mode 100755 index 00000000000..531f83285ea --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Ayara, First of Locthwain.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Commander: Ayara +Difficulty=hard +Description=Mourning shifts seamlessly to celebration as she chooses her next suitor. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Ayara, First of Locthwain +[Main] +4 Ayara, First of Locthwain|ELD|2 +4 Bake into a Pie|ELD +4 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +4 Foreboding Fruit|ELD +4 Foulmire Knight|ELD|1 +4 Heraldic Banner|ELD +4 Murderous Rider|ELD|1 +4 Piper of the Swarm|ELD|1 +4 Revenge of Ravens|ELD +18 Swamp|ELD|2 +2 Witch's Cottage|ELD +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Chulane, Teller of Tales.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Chulane, Teller of Tales.dck new file mode 100755 index 00000000000..b7c09102cf9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Chulane, Teller of Tales.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Commander: Chulane +Difficulty=hard +Description="Ch-Ch-Ch-Ch-Chulane, turn and face the strange\nCh-Ch-Chulane, don't want to be a richer man"\n-David Bowie +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Chulane, Teller of Tales +[Main] +4 Beanstalk Giant|ELD|2 +4 Brazen Borrower|ELD|2 +4 Chulane, Teller of Tales|ELD +4 Fabled Passage|ELD|1 +9 Forest|ELD|2 +4 Giant Killer|ELD|2 +1 Harmonious Archon|ELD|1 +3 Island|ELD|3 +4 Lovestruck Beast|ELD|2 +4 Maraleaf Pixie|ELD +6 Plains|ELD|2 +4 Rosethorn Acolyte|ELD|2 +1 Steelbane Hydra|ELD +4 Stonecoil Serpent|ELD|1 +4 Thornwood Falls|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Gadwick, the Wizened.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Gadwick, the Wizened.dck new file mode 100755 index 00000000000..fe7ea035a7d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Gadwick, the Wizened.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Commander: Gadwick +Difficulty=hard +Description="Approach my tower on bended knee or depart from it as ash upon the wind." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Gadwick, the Wizened +[Main] +4 Brazen Borrower|ELD|1 +4 Didn't Say Please|ELD +4 Faerie Vandal|ELD +4 Gadwick, the Wizened|ELD|2 +4 Heraldic Banner|ELD +22 Island|ELD|1 +4 Mystic Sanctuary|ELD +4 Mystical Dispute|ELD +4 Queen of Ice|ELD|1 +2 Syr Elenora, the Discerning|ELD +4 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Garruk, Cursed Huntsman.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Garruk, Cursed Huntsman.dck new file mode 100755 index 00000000000..5ba57e45512 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Garruk, Cursed Huntsman.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Commander: Garruk +Difficulty=hard +Description="Once I was a man who hunted monsters. Now I am a monster."\n-Garruk, Throne of Eldraine by Kate Elliott +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Garruk, Cursed Huntsman +[Main] +4 Beanstalk Giant|ELD|1 +1 Castle Locthwain|ELD|1 +4 Fabled Passage|ELD|1 +10 Forest|ELD|2 +4 Garruk, Cursed Huntsman|ELD|2 +4 Heraldic Banner|ELD +4 Murderous Rider|ELD|1 +1 Questing Beast|ELD|1 +4 Revenge of Ravens|ELD +4 Rosethorn Acolyte|ELD|1 +4 Spinning Wheel|ELD +1 Steelbane Hydra|ELD +11 Swamp|ELD|4 +4 Wildborn Preserver|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Grumgully, the Generous.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Grumgully, the Generous.dck new file mode 100755 index 00000000000..465bccd063b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Grumgully, the Generous.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Commander: Grumgully +Difficulty=hard +Description="Does it matter what it is? Take it and be grateful!" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Grumgully, the Generous +[Main] +4 Bonecrusher Giant|ELD|1 +4 Dwarven Mine|ELD +4 Fabled Passage|ELD|1 +12 Forest|ELD|2 +4 Gilded Goose|ELD|1 +4 Grumgully, the Generous|ELD +4 Keeper of Fables|ELD +7 Mountain|ELD|2 +4 Opportunistic Dragon|ELD|1 +2 Return of the Wildspeaker|ELD|1 +4 Stonecoil Serpent|ELD|1 +3 The Great Henge|ELD|1 +4 Wildborn Preserver|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Kenrith, the Returned King.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Kenrith, the Returned King.dck new file mode 100755 index 00000000000..39b0d0845bf --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Kenrith, the Returned King.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Commander: King Kenrith +Difficulty=hard +Description="Oh, king, eh? Very nice. And how'd you get that, then? By exploiting the workers! By hanging on to outdated imperialist dogma which perpetuates the economic and social differences in our society! If there's ever going to be any progress--"\n-Dennis the Constitutional Peasant, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Kenrith, the Returned King +[Main] +4 Beanstalk Giant|ELD|1 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Fires of Invention|ELD|1 +8 Forest|ELD|4 +4 Island|ELD|1 +4 Kenrith, the Returned King|ELD +4 Maraleaf Pixie|ELD +1 Mountain|ELD|1 +4 Once Upon a Time|ELD|1 +1 Plains|ELD|1 +4 Rosethorn Acolyte|ELD|1 +4 Spinning Wheel|ELD +2 The Great Henge|ELD|1 +4 Thornwood Falls|ELD +4 Wind-Scarred Crag|ELD +[Sideboard] +1 Bake into a Pie|ELD +1 Garruk, Cursed Huntsman|ELD|1 +1 Oko, Thief of Crowns|ELD|1 +1 Taste of Death|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Korvold, Fae-Cursed King.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Korvold, Fae-Cursed King.dck new file mode 100755 index 00000000000..eb9127f2a88 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Korvold, Fae-Cursed King.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Commander: Korvold +Difficulty=hard +Description=Transformed at his own wedding, he promptly ate the banquet, the gifts, and the guests. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Korvold, Fae-Cursed King +[Main] +4 Bake into a Pie|ELD +4 Chittering Witch|ELD +4 Fabled Passage|ELD|1 +8 Forest|ELD|2 +4 Gilded Goose|ELD|1 +4 Korvold, Fae-Cursed King|ELD +4 Mountain|ELD|1 +2 Piper of the Swarm|ELD|1 +2 Rankle, Master of Pranks|ELD|1 +4 Savvy Hunter|ELD +4 Sorcerer's Broom|ELD +12 Swamp|ELD|1 +4 Trail of Crumbs|ELD +[Sideboard] +4 Cauldron Familiar|ELD +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Linden, the Steadfast Queen.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Linden, the Steadfast Queen.dck new file mode 100755 index 00000000000..5bca6c4973c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Linden, the Steadfast Queen.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Commander: Queen Linden +Difficulty=hard +Description="Until my last breath, I will defend the realm." +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 3 Commander: Linden, the Steadfast Queen +[Main] +4 Castle Ardenvale|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Giant Killer|ELD|1 +2 Harmonious Archon|ELD|1 +4 Heraldic Banner|ELD +4 Idyllic Grange|ELD +4 Linden, the Steadfast Queen|ELD|2 +4 Mysterious Pathlighter|ELD +18 Plains|ELD|1 +4 Rally for the Throne|ELD +2 Syr Alin, the Lion's Claw|ELD +2 The Circle of Loyalty|ELD|1 +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Oko, Thief of Crowns.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Oko, Thief of Crowns.dck new file mode 100755 index 00000000000..5f049da0ded --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Oko, Thief of Crowns.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Commander: Oko +Difficulty=hard +Description="My advisors recommend I let them eat you."\n-Oko +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Oko, Thief of Crowns +[Main] +4 Brazen Borrower|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +5 Forest|ELD|1 +4 Gilded Goose|ELD|1 +4 Gingerbread Cabin|ELD +8 Island|ELD|3 +1 Keeper of Fables|ELD +4 Lovestruck Beast|ELD|1 +4 Maraleaf Pixie|ELD +4 Oko, Thief of Crowns|ELD|2 +1 Questing Beast|ELD|1 +4 Thornwood Falls|ELD +4 Witching Well|ELD +1 Yorvo, Lord of Garenbrig|ELD|1 +[Sideboard] +1 Into the Story|ELD +1 Return of the Wildspeaker|ELD|1 +1 The Great Henge|ELD|1 +1 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Questing Beast.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Questing Beast.dck new file mode 100755 index 00000000000..682f514d891 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Questing Beast.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Commander: Questing Beast +Difficulty=hard +Description=At the edge of the trees stalked a shadow with three long necks and three faces, one angry, one solemn, and one laughing.\n"The Questing Beast!" Elowen cried. "I never thought I'd see it for myself!"\n-Throne of Eldraine by Kate Elliott +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 3 Commander: Questing Beast +[Main] +4 Clockwork Servant|ELD +26 Forest|ELD|2 +2 Keeper of Fables|ELD +4 Lovestruck Beast|ELD|1 +2 Once Upon a Time|ELD|1 +4 Outmuscle|ELD +4 Questing Beast|ELD|2 +2 Return of the Wildspeaker|ELD|1 +4 Stonecoil Serpent|ELD|1 +2 The Great Henge|ELD|1 +4 Wildborn Preserver|ELD|1 +2 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Rankle, Master of Pranks.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Rankle, Master of Pranks.dck new file mode 100755 index 00000000000..7823ed24d88 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Rankle, Master of Pranks.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Commander: Rankle +Difficulty=hard +Description=A faerie named Rankle has become infamous among his fellow pranksters, earning him the title of "master of pranks." +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 3 Commander: Rankle, Master of Pranks +[Main] +2 Castle Locthwain|ELD|1 +4 Chittering Witch|ELD +4 Clockwork Servant|ELD +4 Enchanted Carriage|ELD +4 Foulmire Knight|ELD|1 +4 Murderous Rider|ELD|1 +4 Piper of the Swarm|ELD|1 +4 Rankle, Master of Pranks|ELD|2 +4 Sorcerer's Broom|ELD +20 Swamp|ELD|3 +2 The Cauldron of Eternity|ELD|1 +4 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Rowan, Fearless Sparkmage.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Rowan, Fearless Sparkmage.dck new file mode 100755 index 00000000000..f59fb4f52e5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Rowan, Fearless Sparkmage.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Commander: Rowan +Difficulty=hard +Description=Out there lay the Realm in all its glory and the Wilds with all its danger, and she wanted to go. She had to go. Lightning sparked again in her fingers. A guard turned, sniffing the air as he caught the scent of ozone. She curled her hands into fists. The pain of the magic biting back into her flesh she could endure, but not the dreary tedium of getting stuck here while all her friends quested forth.\n-Throne of Eldraine by Kate Elliott +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Commander: Rowan, Fearless Sparkmage +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brimstone Trebuchet|ELD +2 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +1 Embercleave|ELD|1 +4 Heraldic Banner|ELD +20 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|1 +4 Rowan's Battleguard|ELD +4 Rowan's Stalwarts|ELD +4 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +1 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Alin, the Lion's Claw.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Alin, the Lion's Claw.dck new file mode 100755 index 00000000000..636b20c259d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Alin, the Lion's Claw.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Commander: Syr Alin +Difficulty=hard +Description="The realm must never yield to the chaos of the wilds." +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Alin, the Lion's Claw +[Main] +4 Archon of Absolution|ELD +4 Beloved Princess|ELD +4 Castle Ardenvale|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Giant Killer|ELD|1 +4 Glass Casket|ELD|1 +4 Heraldic Banner|ELD +4 Hushbringer|ELD|1 +4 Idyllic Grange|ELD +1 Linden, the Steadfast Queen|ELD|1 +17 Plains|ELD|1 +4 Syr Alin, the Lion's Claw|ELD +2 The Circle of Loyalty|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Carah, the Bold.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Carah, the Bold.dck new file mode 100755 index 00000000000..20a62b4ae0b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Carah, the Bold.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Commander: Syr Carah +Difficulty=hard +Description="Duty and honor are reasons enough, but beating you will also be a pleasure." +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Carah, the Bold +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brimstone Trebuchet|ELD +4 Dwarven Mine|ELD +2 Embercleave|ELD|1 +4 Heraldic Banner|ELD +22 Mountain|ELD|1 +4 Scorching Dragonfire|ELD +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +2 Sundering Stroke|ELD|1 +4 Syr Carah, the Bold|ELD +2 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Elenora, the Discerning.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Elenora, the Discerning.dck new file mode 100755 index 00000000000..2a05520983f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Elenora, the Discerning.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Commander: Syr Elenora +Difficulty=hard +Description=Vantress knights believe that knowledge is the highest virtue. Knowledge directs the proper application of every other virtue in varied circumstances and helps to prevent problems from worsening into deeper problems. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Elenora, the Discerning +[Main] +4 Clockwork Servant|ELD +4 Fae of Wishes|ELD|1 +4 Faerie Formation|ELD +4 Faerie Vandal|ELD +2 Gadwick, the Wizened|ELD|1 +4 Heraldic Banner|ELD +26 Island|ELD|1 +4 Syr Elenora, the Discerning|ELD +4 Turn into a Pumpkin|ELD +4 Witching Well|ELD +[Sideboard] +1 Charmed Sleep|ELD +1 Frogify|ELD +1 Scalding Cauldron|ELD +1 So Tiny|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Faren, the Hengehammer.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Faren, the Hengehammer.dck new file mode 100755 index 00000000000..2bcc723a2a3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Faren, the Hengehammer.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Commander: Syr Faren +Difficulty=hard +Description="Words are pointless. It's what you do with your hammer that counts." +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Faren, the Hengehammer +[Main] +24 Forest|ELD|4 +4 Gilded Goose|ELD|1 +4 Heraldic Banner|ELD +4 Insatiable Appetite|ELD +4 Outmuscle|ELD +2 Questing Beast|ELD|1 +4 Syr Faren, the Hengehammer|ELD +4 Tall as a Beanstalk|ELD +4 The Great Henge|ELD|1 +4 Tuinvale Treefolk|ELD|1 +2 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Gwyn, Hero of Ashvale - Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Gwyn, Hero of Ashvale - Aggro.dck new file mode 100755 index 00000000000..090fe27c28b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Gwyn, Hero of Ashvale - Aggro.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Commander: Syr Gwyn +Difficulty=hard +Description="By hoof, wing, or paw. For the realm!" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Gwyn, Hero of Ashvale - Aggro +[Main] +2 Embercleave|ELD|1 +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +1 Giant's Skewer|ELD +4 Inspiring Veteran|ELD|1 +4 Joust|ELD +3 Mountain|ELD|4 +4 Oathsworn Knight|ELD|1 +4 Order of Midnight|ELD|1 +1 Plains|ELD|1 +4 Steelclaw Lance|ELD +9 Swamp|ELD|2 +4 Syr Gwyn, Hero of Ashvale|ELD +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Gwyn, Hero of Ashvale - Midrange.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Gwyn, Hero of Ashvale - Midrange.dck new file mode 100755 index 00000000000..e6525fca115 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Gwyn, Hero of Ashvale - Midrange.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Commander: Syr Gwyn +Difficulty=hard +Description=Squires throughout the realm aspire to her mix of panache and martial prowess. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Gwyn, Hero of Ashvale - Midrange +[Main] +4 Acclaimed Contender|ELD|1 +2 Embercleave|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +1 Giant's Skewer|ELD +4 Joust|ELD +3 Mountain|ELD|4 +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +1 Plains|ELD|1 +3 Steelclaw Lance|ELD +11 Swamp|ELD|2 +4 Syr Gwyn, Hero of Ashvale|ELD +1 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Konrad, the Grim.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Konrad, the Grim.dck new file mode 100755 index 00000000000..ac136b461fa --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Syr Konrad, the Grim.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Commander: Syr Konrad +Difficulty=hard +Description=In the view of Locthwain, persistence is the highest virtue because it directs and marshals the other virtues toward a purpose. In Locthwain, persistence means determination, purposefulness, commitment, tirelessness, the stubborn refusal to give up. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 3 Commander: Syr Konrad, the Grim +[Main] +1 Ayara, First of Locthwain|ELD|1 +3 Bake into a Pie|ELD +2 Castle Locthwain|ELD|1 +4 Chittering Witch|ELD +4 Clackbridge Troll|ELD|1 +1 Forever Young|ELD +4 Heraldic Banner|ELD +4 Memory Theft|ELD +4 Murderous Rider|ELD|1 +20 Swamp|ELD|2 +4 Syr Konrad, the Grim|ELD +1 The Cauldron of Eternity|ELD|1 +4 Witch's Cottage|ELD +4 Witch's Vengeance|ELD|1 +[Sideboard] +4 Cauldron Familiar|ELD +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander The Royal Scions.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander The Royal Scions.dck new file mode 100755 index 00000000000..7ab8302c5ba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander The Royal Scions.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Commander: The Royal Scions +Difficulty=hard +Description="Ready, Will?"\n"With you by my side, I am always ready."\n-Rowan and Will Kenrith, the Royal Scions +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Commander: The Royal Scions +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brazen Borrower|ELD|1 +2 Dwarven Mine|ELD +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Improbable Alliance|ELD|1 +4 Irencrag Pyromancer|ELD|1 +10 Island|ELD|2 +4 Mad Ratter|ELD +10 Mountain|ELD|4 +4 Stonecoil Serpent|ELD|1 +4 The Royal Scions|ELD|2 +[Sideboard] +1 Embercleave|ELD|1 +1 Searing Barrage|ELD +1 Sundering Stroke|ELD|1 +1 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Aggro.dck new file mode 100755 index 00000000000..a5c8b2aed65 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Aggro.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Commander: Torbran +Difficulty=hard +Description=The majority of dwarves are put off by the hierarchy and stuffiness of the human courts and prefer to live out in the wilds. For a few individual dwarves, the fearless camaraderie of the Court of Embereth appeals to them. These dwarves, driven by the independence so valued by their clans, sometimes pack up for a few years to compete at the Burning Yard, often bringing with them dwarf-forged armor and weapons that give them an edge in combat. One such dwarf was Torbran, the current Thane of the dwarvish clan of Red Fell. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Commander: Torbran, Thane of Red Fell - Aggro +[Main] +4 Barge In|ELD +4 Bonecrusher Giant|ELD|1 +2 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +2 Embercleave|ELD|1 +4 Fervent Champion|ELD|1 +20 Mountain|ELD|4 +4 Rimrock Knight|ELD|1 +4 Robber of the Rich|ELD|1 +4 Scorching Dragonfire|ELD +4 Slaying Fire|ELD|1 +4 Torbran, Thane of Red Fell|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Burn.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Burn.dck new file mode 100755 index 00000000000..d29040588a7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Burn.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Commander: Torbran +Difficulty=hard +Description=A dwarf's grudge runs deeper than the mountains' roots. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Commander: Torbran, Thane of Red Fell - Burn +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brimstone Trebuchet|ELD +4 Dwarven Mine|ELD +2 Embereth Shieldbreaker|ELD|1 +22 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|1 +1 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +2 Syr Carah, the Bold|ELD +4 Torbran, Thane of Red Fell|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Midrange.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Midrange.dck new file mode 100755 index 00000000000..66ee509c3e6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Torbran, Thane of Red Fell - Midrange.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Commander: Torbran +Difficulty=hard +Description=As the story goes, Torbran traveled to Embereth in his youth to compete for knighthood. Though he defeated each foe he faced, when the time came to claim his prize and strike the Irencrag, Torbran refused. The Irencrag had insulted the craftsmanship of his weapon in its taunts, which is a personal offense in dwarvish culture. Torbran left Embereth and returned to the wilds. Many believe that Torbran will one day return to claim his rightful knighthood, and that he has spent the past few decades crafting a weapon of such quality and power that it will strike fear into the Irencrag itself. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Commander: Torbran, Thane of Red Fell - Midrange +[Main] +4 Bonecrusher Giant|ELD|1 +2 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +2 Embercleave|ELD|1 +21 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|1 +4 Scorching Dragonfire|ELD +4 Searing Barrage|ELD +7 Seven Dwarves|ELD +4 Slaying Fire|ELD|1 +4 Torbran, Thane of Red Fell|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Yorvo, Lord of Garenbrig.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Yorvo, Lord of Garenbrig.dck new file mode 100755 index 00000000000..92daf713db8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Commander Yorvo, Lord of Garenbrig.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Commander: Yorvo +Difficulty=hard +Description=Even sitting, he loomed above them. With a single slam of his hand he could crush their puny bodies. But he opened his hands in greeting and welcomed their entrance with a hearty smile.\n-Throne of Eldraine by Kate Elliott +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 3 Commander: Yorvo, Lord of Garenbrig +[Main] +4 Beanstalk Giant|ELD|1 +4 Feasting Troll King|ELD|1 +22 Forest|ELD|4 +4 Giant Opportunity|ELD +4 Gilded Goose|ELD|1 +4 Gingerbread Cabin|ELD +4 Outmuscle|ELD +2 Return of the Wildspeaker|ELD|1 +2 Steelbane Hydra|ELD +4 The Great Henge|ELD|1 +2 Wolf's Quarry|ELD +4 Yorvo, Lord of Garenbrig|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Deathless Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Deathless Knight.dck new file mode 100755 index 00000000000..2a5028281b3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Deathless Knight.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Deathless Knight +Difficulty=hard +Description="Headed to the wilds? Beware the dead riders who serve the Shadow Queen."\n-Scalan, Edgewall innkeeper +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Deathless Knight +[Main] +2 Ayara, First of Locthwain|ELD|1 +4 Bake into a Pie|ELD +4 Cauldron Familiar|ELD +4 Clackbridge Troll|ELD|1 +4 Deathless Knight|ELD +4 Fabled Passage|ELD|1 +4 Forest|ELD|2 +4 Giant's Skewer|ELD +4 Murderous Rider|ELD|1 +4 Revenge of Ravens|ELD +4 Smitten Swordmaster|ELD|1 +10 Swamp|ELD|4 +4 The Great Henge|ELD|1 +4 Thornwood Falls|ELD +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Doom Foretold - Adamant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Doom Foretold - Adamant.dck new file mode 100755 index 00000000000..0c3508e194c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Doom Foretold - Adamant.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Doom Foretold +Difficulty=hard +Description="Let's talk about sacs, baby / Let's talk about doom and me\nLet's talk about all the good things and the bad things that may be\n-Salt-N-Pepa +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Doom Foretold - Adamant +[Main] +4 Arcanist's Owl|ELD +2 Castle Ardenvale|ELD|1 +4 Clockwork Servant|ELD +4 Doom Foretold|ELD|2 +4 Fabled Passage|ELD|1 +2 Fortifying Provisions|ELD +4 Golden Egg|ELD +16 Plains|ELD|3 +4 Realm-Cloaked Giant|ELD|1 +4 Sorcerer's Broom|ELD +4 Spinning Wheel|ELD +4 Stonecoil Serpent|ELD|1 +4 Swamp|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Doom Foretold - Cat Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Doom Foretold - Cat Food.dck new file mode 100755 index 00000000000..2253c5514d7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Doom Foretold - Cat Food.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Doom Foretold +Difficulty=hard +Description=The unlabeled vial was not vanilla extract after all. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Doom Foretold - Cat Food +[Main] +1 Castle Ardenvale|ELD|1 +1 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +4 Doom Foretold|ELD|2 +4 Fabled Passage|ELD|1 +4 Fortifying Provisions|ELD +2 Giant's Skewer|ELD +4 Gingerbrute|ELD +4 Golden Egg|ELD +8 Plains|ELD|3 +4 Sorcerer's Broom|ELD +4 Stonecoil Serpent|ELD|1 +12 Swamp|ELD|1 +4 Taste of Death|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Escape to the Wilds - Adventurers.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Escape to the Wilds - Adventurers.dck new file mode 100755 index 00000000000..8e4a6426d0f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Escape to the Wilds - Adventurers.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Escape to the Wilds +Difficulty=hard +Description=His mind chose solitude, but his heart disagreed. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Escape to the Wilds - Adventurers +[Main] +4 Beanstalk Giant|ELD|1 +4 Bonecrusher Giant|ELD|1 +4 Edgewall Innkeeper|ELD +4 Embereth Shieldbreaker|ELD|1 +4 Escape to the Wilds|ELD|2 +4 Fabled Passage|ELD|1 +10 Forest|ELD|2 +4 Lovestruck Beast|ELD|1 +4 Lucky Clover|ELD +10 Mountain|ELD|2 +4 Rimrock Knight|ELD|1 +4 Rosethorn Acolyte|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Escape to the Wilds - Swarm.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Escape to the Wilds - Swarm.dck new file mode 100755 index 00000000000..77dc0db1cfb --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Escape to the Wilds - Swarm.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Escape to the Wilds +Difficulty=hard +Description=At first, Syr Fenwick scoffed when he saw his opponents for the final match. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Escape to the Wilds - Swarm +[Main] +4 Escape to the Wilds|ELD|2 +4 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +7 Forest|ELD|2 +4 Gingerbrute|ELD +4 Lovestruck Beast|ELD|1 +10 Mountain|ELD|2 +4 Redcap Melee|ELD +4 Rosethorn Halberd|ELD +7 Seven Dwarves|ELD +4 Weaselback Redcap|ELD +4 Wildwood Tracker|ELD +[Sideboard] + diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Feasting Troll King.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Feasting Troll King.dck new file mode 100755 index 00000000000..1b88910df3b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Feasting Troll King.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Feasting Troll King +Difficulty=hard +Description="Gingerbread, gingerbread, ginger all the way\nOh wat fun it is to bring that troll back from the grave, hey!" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Feasting Troll King +[Main] +4 Fabled Passage|ELD|1 +4 Feasting Troll King|ELD|2 +10 Forest|ELD|1 +4 Giant Opportunity|ELD +4 Gingerbread Cabin|ELD +4 Once Upon a Time|ELD|1 +4 Savvy Hunter|ELD +4 Sorcerer's Broom|ELD +10 Swamp|ELD|1 +4 Taste of Death|ELD +4 Witch's Vengeance|ELD|1 +4 Wolf's Quarry|ELD +[Sideboard] + diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - Faeries.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - Faeries.dck new file mode 100755 index 00000000000..7029c5e22e3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - Faeries.dck @@ -0,0 +1,31 @@ +[metadata] +Title=Fires of Invention +Difficulty=hard +Description="Just tell us how many you want and get out of the way." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Fires of Invention - Faeries +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brazen Borrower|ELD|1 +2 Castle Embereth|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Faerie Formation|ELD +4 Fires of Invention|ELD|2 +4 Improbable Alliance|ELD|1 +10 Island|ELD|4 +8 Mountain|ELD|4 +4 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +1 Syr Elenora, the Discerning|ELD +4 Witching Well|ELD +[Sideboard] +1 Embercleave|ELD|1 +1 Enchanted Carriage|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +1 Sundering Stroke|ELD|1 +1 The Royal Scions|ELD|1 +1 Unexplained Vision|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - Knights.dck new file mode 100755 index 00000000000..81bbe75b08b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - Knights.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Fires of Invention +Difficulty=hard +Description=He endured the white-hot blaze of the Circle and the sweltering heat of the Irencrag, and he emerged victorious. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Fires of Invention - Knights +[Main] +4 Bonecrusher Giant|ELD|1 +4 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +2 Embercleave|ELD|1 +4 Embereth Shieldbreaker|ELD|1 +2 Embereth Skyblazer|ELD +4 Fireborn Knight|ELD +4 Fires of Invention|ELD|2 +18 Mountain|ELD|4 +4 Robber of the Rich|ELD|1 +4 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +1 Syr Carah, the Bold|ELD +4 Weaselback Redcap|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - The Wilds.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - The Wilds.dck new file mode 100755 index 00000000000..6c5cd233053 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Fires of Invention - The Wilds.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Fires of Invention +Difficulty=hard +Description=The guards kindled the hearth and locked the door to Ellwen's chamber. By morning, the fire was out and Ellwen was gone. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Fires of Invention - The Wilds +[Main] +4 Beanstalk Giant|ELD|1 +4 Bonecrusher Giant|ELD|1 +4 Edgewall Innkeeper|ELD +4 Escape to the Wilds|ELD|1 +4 Fabled Passage|ELD|1 +4 Fires of Invention|ELD|2 +12 Forest|ELD|1 +2 Keeper of Fables|ELD +4 Lovestruck Beast|ELD|1 +10 Mountain|ELD|2 +2 The Great Henge|ELD|1 +2 Tuinvale Treefolk|ELD|1 +4 Wildborn Preserver|ELD|1 +[Sideboard] +1 Embercleave|ELD|1 +1 Enchanted Carriage|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +1 Sundering Stroke|ELD|1 +1 The Royal Scions|ELD|1 +1 Unexplained Vision|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Folio of Fancies - Grim.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Folio of Fancies - Grim.dck new file mode 100755 index 00000000000..e96bebe8869 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Folio of Fancies - Grim.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Folio of Fancies +Difficulty=hard +Description="If you're in our home, we expect you to mind your manners." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Folio of Fancies - Grim +[Main] +4 Didn't Say Please|ELD +4 Drown in the Loch|ELD +4 Eye Collector|ELD +4 Fabled Passage|ELD|1 +4 Folio of Fancies|ELD|2 +10 Island|ELD|4 +2 Lochmere Serpent|ELD|1 +4 Merfolk Secretkeeper|ELD|1 +4 Murderous Rider|ELD|1 +4 Overwhelmed Apprentice|ELD +10 Swamp|ELD|3 +2 Syr Konrad, the Grim|ELD +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Folio of Fancies - Happy.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Folio of Fancies - Happy.dck new file mode 100755 index 00000000000..eb6469e6290 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Folio of Fancies - Happy.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Folio of Fancies +Difficulty=hard +Description=Castle Vantress has no locks on its doors, but interlopers rarely make it past the foyer. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Folio of Fancies - Happy +[Main] +2 Castle Ardenvale|ELD|1 +4 Corridor Monitor|ELD +4 Didn't Say Please|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Folio of Fancies|ELD|2 +4 Giant Killer|ELD|1 +4 Glass Casket|ELD|1 +4 Happily Ever After|ELD|1 +10 Island|ELD|1 +4 Merfolk Secretkeeper|ELD|1 +8 Plains|ELD|1 +4 Vantress Gargoyle|ELD|1 +[Sideboard] +4 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Food 3B Bad Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Food 3B Bad Food.dck new file mode 100755 index 00000000000..4c1833395b5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Food 3B Bad Food.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Bad Food +Difficulty=hard +Description="The faerie plucked an acorn off the ground. One knight's quest was about to come to a bitter end."\n-Tales of the Fae +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 3 Food 3B Bad Food +[Main] +4 Bake into a Pie|ELD +4 Bog Naughty|ELD +4 Cauldron Familiar|ELD +4 Foreboding Fruit|ELD +4 Giant's Skewer|ELD +4 Gingerbrute|ELD +28 Swamp|ELD|1 +4 Taste of Death|ELD +4 Tempting Witch|ELD +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Food 5G Good Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Food 5G Good Food.dck new file mode 100755 index 00000000000..18edd506ce1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Food 5G Good Food.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Good Food +Difficulty=hard +Description=He ate them out of house and home and shed and barn and flock and herd. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 3 Food 5G Good Food +[Main] +4 Feasting Troll King|ELD|1 +2 Fell the Pheasant|ELD +4 Fierce Witchstalker|ELD +20 Forest|ELD|3 +4 Giant Opportunity|ELD +4 Gilded Goose|ELD|1 +4 Gingerbread Cabin|ELD +4 Golden Egg|ELD +4 Insatiable Appetite|ELD +4 Maraleaf Rider|ELD +4 Trail of Crumbs|ELD +2 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Giants.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Giants.dck new file mode 100755 index 00000000000..394bb3e2cc5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Giants.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Giants +Difficulty=hard +Description=HERE BE GIANTS +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Giants +[Main] +4 Beanstalk Giant|ELD|1 +4 Bonecrusher Giant|ELD|1 +4 Fabled Passage|ELD|1 +12 Forest|ELD|4 +4 Garenbrig Paladin|ELD +4 Giant Opportunity|ELD +4 Mountain|ELD|2 +4 Plains|ELD|3 +4 Rampart Smasher|ELD +4 Realm-Cloaked Giant|ELD|1 +4 The Great Henge|ELD|1 +4 Wind-Scarred Crag|ELD +4 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Happily Ever After.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Happily Ever After.dck new file mode 100755 index 00000000000..8a735dbd84e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Happily Ever After.dck @@ -0,0 +1,34 @@ +[metadata] +Title=Happily Ever After +Difficulty=hard +Description=...if there are five colors among permanents you control, there are six or more card types among permanents you control and/or cards in your graveyard, and your life total is greater than or equal to your starting life total, YOU WIN THE GAME. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Happily Ever After +[Main] +1 Alela, Artful Provocateur|ELD +1 Bonecrusher Giant|ELD|1 +3 Clackbridge Troll|ELD|1 +4 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +1 Fires of Invention|ELD|1 +2 Forest|ELD|3 +2 Garruk, Cursed Huntsman|ELD|1 +1 Gilded Goose|ELD|1 +4 Happily Ever After|ELD|2 +2 Improbable Alliance|ELD|1 +1 Island|ELD|2 +1 Kenrith, the Returned King|ELD +2 Mountain|ELD|4 +3 Oko, Thief of Crowns|ELD|1 +2 Once Upon a Time|ELD|1 +1 Plains|ELD|1 +1 Savvy Hunter|ELD +3 Scorching Dragonfire|ELD +1 Spinning Wheel|ELD +9 Swamp|ELD|2 +1 The Great Henge|ELD|1 +4 Thornwood Falls|ELD +1 Vantress Gargoyle|ELD|1 +4 Wind-Scarred Crag|ELD +1 Witch's Vengeance|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Adamant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Adamant.dck new file mode 100755 index 00000000000..c8225f320e7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Adamant.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Harmonious Archon +Difficulty=hard +Description=Tempered by fire and united in virtue, the knights of Ardenvale fight with a single, unbreakable will. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Harmonious Archon - Adamant +[Main] +4 Beloved Princess|ELD +4 Castle Ardenvale|ELD|1 +4 Clockwork Servant|ELD +4 Faerie Guidemother|ELD|1 +1 Fortifying Provisions|ELD +4 Harmonious Archon|ELD|2 +4 Heraldic Banner|ELD +4 Idyllic Grange|ELD +17 Plains|ELD|1 +4 Rally for the Throne|ELD +4 Silverflame Ritual|ELD +4 Stonecoil Serpent|ELD|1 +2 The Circle of Loyalty|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Black Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Black Knights.dck new file mode 100755 index 00000000000..047692c381c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Black Knights.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Harmonious Archon +Difficulty=hard +Description="I'm invincible!"\n-The Black Knight, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Harmonious Archon - Black Knights +[Main] +4 Acclaimed Contender|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +4 Harmonious Archon|ELD|2 +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +8 Plains|ELD|1 +2 Silverwing Squadron|ELD +7 Swamp|ELD|2 +1 Syr Alin, the Lion's Claw|ELD +4 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Venerable Knight|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Glitter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Glitter.dck new file mode 100755 index 00000000000..fdeaeef0fc6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Glitter.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Harmonious Archon +Difficulty=hard +Description="Though long forgotten, the wheel continued to turn, spinning fate from a dusty attic."\n-Beyond the Great Henge +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Harmonious Archon - Glitter +[Main] +1 Alela, Artful Provocateur|ELD +4 All That Glitters|ELD +2 Castle Ardenvale|ELD|1 +4 Doom Foretold|ELD|1 +4 Fabled Passage|ELD|1 +1 Fortifying Provisions|ELD +2 Giant's Skewer|ELD +4 Harmonious Archon|ELD|2 +6 Island|ELD|2 +2 Locthwain Gargoyle|ELD +8 Plains|ELD|1 +4 Shinechaser|ELD +2 Sorcerer's Broom|ELD +4 Spinning Wheel|ELD +4 Stonecoil Serpent|ELD|1 +6 Swamp|ELD|3 +1 The Cauldron of Eternity|ELD|1 +1 The Circle of Loyalty|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Non-human.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Non-human.dck new file mode 100755 index 00000000000..b3dbe752d5e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Non-human.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Harmonious Archon +Difficulty=hard +Description=First among equals. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Harmonious Archon - Non-human +[Main] +2 Castle Ardenvale|ELD|1 +4 Fabled Passage|ELD|1 +4 Faeburrow Elder|ELD|1 +4 Faerie Guidemother|ELD|1 +11 Forest|ELD|4 +4 Gilded Goose|ELD|1 +4 Harmonious Archon|ELD|2 +4 Outmuscle|ELD +8 Plains|ELD|3 +2 Steelbane Hydra|ELD +4 Stonecoil Serpent|ELD|1 +1 The Circle of Loyalty|ELD|1 +2 The Great Henge|ELD|1 +4 Wildborn Preserver|ELD|1 +2 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Rats.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Rats.dck new file mode 100755 index 00000000000..7e21c3234b9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Rats.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Harmonious Archon +Difficulty=hard +Description="If it has ears, it will dance to my tune." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Harmonious Archon - Rats +[Main] +4 Castle Ardenvale|ELD|1 +4 Chittering Witch|ELD +4 Enchanted Carriage|ELD +4 Fabled Passage|ELD|1 +1 Fortifying Provisions|ELD +4 Harmonious Archon|ELD|2 +4 Piper of the Swarm|ELD|1 +9 Plains|ELD|1 +4 Rally for the Throne|ELD +4 Sorcerer's Broom|ELD +10 Swamp|ELD|3 +4 The Circle of Loyalty|ELD|1 +4 Witch's Vengeance|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Red Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Red Knights.dck new file mode 100755 index 00000000000..288dab0cd37 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Harmonious Archon - Red Knights.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Harmonious Archon +Difficulty=hard +Description=Knights of Embereth believe that courage is the highest virtue, as nothing done without bravery can truly be considered virtuous. Without bravery, no one would ever try a new thing or work to improve their skills. But with courage in one's heart, no challenge is too great. Fear and cowardice are the enemies of valor, so Embereth's knights strive to conquer their fear. They are wise enough to know that true escape from fear is impossible and teach instead that fear is the most valuable tool. Empty courage is an easy way to get oneself killed, but true courage is knowing how to use the gift of fear as a motivator for achievement. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Harmonious Archon - Red Knights +[Main] +4 Acclaimed Contender|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Dwarven Mine|ELD +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +4 Harmonious Archon|ELD|2 +4 Inspiring Veteran|ELD|1 +5 Mountain|ELD|1 +10 Plains|ELD|1 +4 Raging Redcap|ELD +1 Syr Alin, the Lion's Claw|ELD +4 The Circle of Loyalty|ELD|1 +4 Venerable Knight|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 1 White.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 1 White.dck new file mode 100755 index 00000000000..9b054655397 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 1 White.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Heraldic Banner +Difficulty=hard +Description="The fox grinned. 'How about a bet, dragon? If I win, the skies are mine.' After he stopped laughing, the dragon agreed."\n-Tales of the Fae +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 3 Heraldic Banner 1 White +[Main] +4 Arcanist's Owl|ELD +4 Castle Ardenvale|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Flutterfox|ELD +4 Giant Killer|ELD|1 +2 Harmonious Archon|ELD|1 +4 Heraldic Banner|ELD +4 Idyllic Grange|ELD +1 Linden, the Steadfast Queen|ELD|1 +3 Lonesome Unicorn|ELD|1 +18 Plains|ELD|1 +2 Syr Alin, the Lion's Claw|ELD +2 The Circle of Loyalty|ELD|1 +4 Youthful Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 2 Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 2 Blue.dck new file mode 100755 index 00000000000..c7f27c8592d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 2 Blue.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Heraldic Banner +Difficulty=hard +Description="Share your darkest secret and the Mirror will reveal your soul's essence."\n-Ceri, royal mirrorkeeper +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 3 Heraldic Banner 2 Blue +[Main] +4 Arcanist's Owl|ELD +4 Brazen Borrower|ELD|1 +4 Fae of Wishes|ELD|1 +4 Faerie Vandal|ELD +4 Heraldic Banner|ELD +4 Hypnotic Sprite|ELD|1 +24 Island|ELD|4 +4 Lucky Clover|ELD +4 Mirrormade|ELD|1 +4 Tome Raider|ELD +[Sideboard] +4 Charmed Sleep|ELD +1 Mantle of Tides|ELD +2 Scalding Cauldron|ELD +4 Turn into a Pumpkin|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 3 Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 3 Black.dck new file mode 100755 index 00000000000..6b3c69ac553 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 3 Black.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Heraldic Banner +Difficulty=hard +Description="The Black Knight always triumphs!"\n-The Black Knight, Monty Python and the Holy Grail +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 3 Heraldic Banner 3 Black +[Main] +2 Barrow Witches|ELD +4 Castle Locthwain|ELD|1 +4 Clackbridge Troll|ELD|1 +2 Eye Collector|ELD +4 Foulmire Knight|ELD|1 +4 Heraldic Banner|ELD +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +4 Piper of the Swarm|ELD|1 +4 Resolute Rider|ELD +18 Swamp|ELD|2 +2 Syr Konrad, the Grim|ELD +4 Witch's Cottage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 4 Red - Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 4 Red - Aggro.dck new file mode 100755 index 00000000000..45ce58e1cb2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 4 Red - Aggro.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Heraldic Banner +Difficulty=hard +Description="I would rather cast myself into the abyss than let my blood stain the cap of those monsters."\n-Syr Alin, the Lion's Claw +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Heraldic Banner 4 Red - Aggro +[Main] +4 Bonecrusher Giant|ELD|1 +4 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +1 Embercleave|ELD|1 +4 Embereth Shieldbreaker|ELD|1 +4 Fervent Champion|ELD|1 +4 Heraldic Banner|ELD +17 Mountain|ELD|4 +4 Raging Redcap|ELD +4 Rimrock Knight|ELD|1 +4 Robber of the Rich|ELD|1 +2 Torbran, Thane of Red Fell|ELD|1 +4 Weaselback Redcap|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 4 Red - Midrange.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 4 Red - Midrange.dck new file mode 100755 index 00000000000..ca601178e1d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 4 Red - Midrange.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Heraldic Banner +Difficulty=hard +Description=Not every tale ends in glory. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Heraldic Banner 4 Red - Midrange +[Main] +4 Bonecrusher Giant|ELD|1 +4 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +1 Embercleave|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fireborn Knight|ELD +4 Heraldic Banner|ELD +19 Mountain|ELD|4 +4 Raging Redcap|ELD +2 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +4 Searing Barrage|ELD +1 Syr Carah, the Bold|ELD +2 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 5 Green.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 5 Green.dck new file mode 100755 index 00000000000..adaf818ecd0 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Heraldic Banner 5 Green.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Heraldic Banner +Difficulty=hard +Description="The monster was gaining on them. Twice it had found them. There was only one place left to hide."\n-Tales of the Fae +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 3 Heraldic Banner 5 Green +[Main] +2 Feasting Troll King|ELD|1 +4 Fierce Witchstalker|ELD +22 Forest|ELD|3 +4 Gilded Goose|ELD|1 +4 Gingerbread Cabin|ELD +4 Heraldic Banner|ELD +4 Keeper of Fables|ELD +2 Questing Beast|ELD|1 +2 Steelbane Hydra|ELD +2 Syr Faren, the Hengehammer|ELD +2 The Great Henge|ELD|1 +4 Wildborn Preserver|ELD|1 +4 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Alela.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Alela.dck new file mode 100755 index 00000000000..6ebfda98696 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Alela.dck @@ -0,0 +1,28 @@ +[metadata] +Title=Improbable Alliance +Difficulty=hard +Description="Rankle's pranks are child's play. My games will topple kingdoms."\n-Alela +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Improbable Alliance - Alela +[Main] +4 Alela, Artful Provocateur|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Faerie Formation|ELD +4 Golden Egg|ELD +4 Happily Ever After|ELD|1 +4 Improbable Alliance|ELD|2 +9 Island|ELD|4 +1 Mountain|ELD|3 +2 Plains|ELD|4 +4 Spinning Wheel|ELD +4 Swamp|ELD|3 +4 Tome Raider|ELD +4 Wind-Scarred Crag|ELD +4 Witching Well|ELD +[Sideboard] +1 Scorching Dragonfire|ELD +1 The Royal Scions|ELD|1 +1 Turn into a Pumpkin|ELD +1 Unexplained Vision|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Cows.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Cows.dck new file mode 100755 index 00000000000..49b2687be3f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Cows.dck @@ -0,0 +1,17 @@ +[metadata] +Title=Improbable Alliance +Difficulty=hard +Description=At the market, no one heeded Hilda's frantic mooing. The fae curse was turning out even worse than she had feared. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Improbable Alliance - Cows +[Main] +4 Bartered Cow|ELD +4 Improbable Alliance|ELD|2 +14 Island|ELD|2 +4 Loch Dragon|ELD +4 Merchant of the Vale|ELD|1 +18 Mountain|ELD|4 +4 Sage of the Falls|ELD +4 The Royal Scions|ELD|1 +4 Thrill of Possibility|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Gadwick.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Gadwick.dck new file mode 100755 index 00000000000..4a17bd0872b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Gadwick.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Improbable Alliance +Difficulty=hard +Description=His name is spoken only in whispers--but he hears just the same. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Improbable Alliance - Gadwick +[Main] +4 Fabled Passage|ELD|1 +4 Faerie Vandal|ELD +4 Gadwick, the Wizened|ELD|1 +4 Improbable Alliance|ELD|2 +4 Irencrag Pyromancer|ELD|1 +15 Island|ELD|1 +4 Mad Ratter|ELD +7 Mountain|ELD|4 +2 The Royal Scions|ELD|1 +4 Tome Raider|ELD +4 Turn into a Pumpkin|ELD +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Garruk.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Garruk.dck new file mode 100755 index 00000000000..eabf8db4df6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Garruk.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Improbable Alliance +Difficulty=hard +Description=The hunter's eyes sparked with a glimmer of his earlier savagery. "Yes, Master."\n-Garruk to Oko, Throne of Eldraine by Kate Elliott +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Improbable Alliance - Garruk +[Main] +4 Clackbridge Troll|ELD|1 +4 Fabled Passage|ELD|1 +4 Forest|ELD|1 +4 Foulmire Knight|ELD|1 +4 Garruk, Cursed Huntsman|ELD|1 +4 Improbable Alliance|ELD|2 +4 Irencrag Pyromancer|ELD|1 +1 Island|ELD|3 +2 Keeper of Fables|ELD +4 Mad Ratter|ELD +6 Mountain|ELD|3 +4 Oakhame Adversary|ELD +9 Swamp|ELD|4 +2 The Great Henge|ELD|1 +4 Thornwood Falls|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Non-human.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Non-human.dck new file mode 100755 index 00000000000..eb96277cf06 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Non-human.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Improbable Alliance +Difficulty=hard +Description="Only the lion knows more stories than I do."\n-Chulane, Teller of Tales +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Improbable Alliance - Non-human +[Main] +4 Fabled Passage|ELD|1 +2 Ferocity of the Wilds|ELD +7 Forest|ELD|2 +3 Grumgully, the Generous|ELD +4 Improbable Alliance|ELD|2 +4 Island|ELD|3 +4 Keeper of Fables|ELD +4 Mad Ratter|ELD +8 Mountain|ELD|2 +4 Oakhame Adversary|ELD +4 Return of the Wildspeaker|ELD|1 +2 Sage of the Falls|ELD +2 The Great Henge|ELD|1 +4 Thornwood Falls|ELD +4 Wildborn Preserver|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Trolls.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Trolls.dck new file mode 100755 index 00000000000..469791fd3e7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Improbable Alliance - Trolls.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Improbable Alliance +Difficulty=hard +Description=DON'T FEED THE TROLLS +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Improbable Alliance - Trolls +[Main] +4 Clackbridge Troll|ELD|1 +4 Fabled Passage|ELD|1 +4 Forever Young|ELD +4 Foulmire Knight|ELD|1 +4 Improbable Alliance|ELD|2 +4 Irencrag Pyromancer|ELD|1 +6 Island|ELD|3 +4 Mad Ratter|ELD +7 Mountain|ELD|2 +2 Sage of the Falls|ELD +4 Stormfist Crusader|ELD|1 +9 Swamp|ELD|4 +4 Tome Raider|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Irencrag Pyromancer - Adamant.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Irencrag Pyromancer - Adamant.dck new file mode 100755 index 00000000000..fd5f3a2392d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Irencrag Pyromancer - Adamant.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Irencrag Pyromancer +Difficulty=hard +Description=Mages who draw their power from the Irencrag must harness their emotions to wield it to its full potential. This often manifests as fire magic, but a rarer form of Embereth magic is "phobomancy," the power to harness fear. Knights can magically convert their fear into focus mid-battle or use fear to overwhelm and enervate their opponents. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 3 Irencrag Pyromancer - Adamant +[Main] +4 Bloodhaze Wolverine|ELD +4 Castle Embereth|ELD|1 +4 Clockwork Servant|ELD +4 Dwarven Mine|ELD +4 Golden Egg|ELD +4 Irencrag Pyromancer|ELD|2 +4 Loch Dragon|ELD +4 Mad Ratter|ELD +4 Merchant of the Vale|ELD|1 +16 Mountain|ELD|4 +4 Thrill of Possibility|ELD +4 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Irencrag Pyromancer - Korvold.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Irencrag Pyromancer - Korvold.dck new file mode 100755 index 00000000000..2c0a4cbecf6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Irencrag Pyromancer - Korvold.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Irencrag Pyromancer +Difficulty=hard +Description="Fear of fire is a sensible instinct. If I were you, I'd be terrified." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Irencrag Pyromancer - Korvold +[Main] +4 Clackbridge Troll|ELD|1 +4 Fabled Passage|ELD|1 +9 Forest|ELD|1 +4 Garruk, Cursed Huntsman|ELD|1 +4 Golden Egg|ELD +4 Irencrag Pyromancer|ELD|2 +2 Keeper of Fables|ELD +4 Korvold, Fae-Cursed King|ELD +4 Mad Ratter|ELD +6 Mountain|ELD|3 +4 Oakhame Adversary|ELD +8 Swamp|ELD|4 +3 The Great Henge|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Kenrith Reanimator.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Kenrith Reanimator.dck new file mode 100755 index 00000000000..a7574ecc7f7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Kenrith Reanimator.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Kenrith Reanimator +Difficulty=hard +Description="The Lady of the Loch, her arm clad in the purest shimmering samite, held aloft Embercleave from the bosom of the water signifying by Divine Providence that I, Kenrith, was to carry Embercleave. That is why I am your king!"\n-King Kenrith, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Kenrith Reanimator +[Main] +4 Beanstalk Giant|ELD|1 +4 Fabled Passage|ELD|1 +11 Forest|ELD|1 +4 Harmonious Archon|ELD|1 +4 Heraldic Banner|ELD +4 Kenrith, the Returned King|ELD +11 Plains|ELD|1 +4 Realm-Cloaked Giant|ELD|1 +4 Rosethorn Acolyte|ELD|1 +4 Silverwing Squadron|ELD +4 Spinning Wheel|ELD +2 Swamp|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Knights' Charge.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Knights' Charge.dck new file mode 100755 index 00000000000..5d1d8d2b370 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Knights' Charge.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Knights' Charge +Difficulty=hard +Description="By hoof, wing, or paw. For the realm!"\n-Syr Gwyn, Hero of Ashvale +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Knights' Charge +[Main] +4 Belle of the Brawl|ELD +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +4 Knights' Charge|ELD +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +4 Order of Midnight|ELD|1 +8 Plains|ELD|1 +2 Resolute Rider|ELD +12 Swamp|ELD|2 +2 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Wintermoor Commander|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Land.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Land.dck new file mode 100755 index 00000000000..4c57728dee4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Land.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Land +Difficulty=hard +Description="Buy land. They ain't making any more of the stuff."\n-Will Rogers +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Land +[Main] +4 Beanstalk Giant|ELD|1 +4 Chulane, Teller of Tales|ELD +4 Escape to the Wilds|ELD|1 +4 Fabled Passage|ELD|1 +4 Fires of Invention|ELD|1 +8 Forest|ELD|1 +4 Gadwick, the Wizened|ELD|1 +4 Island|ELD|3 +3 Mountain|ELD|3 +4 Once Upon a Time|ELD|1 +1 Plains|ELD|4 +4 Steelbane Hydra|ELD +4 Stonecoil Serpent|ELD|1 +4 Thornwood Falls|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lochmere Serpent.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lochmere Serpent.dck new file mode 100755 index 00000000000..3fa01290dbd --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lochmere Serpent.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Lochmere Serpent +Difficulty=hard +Description="Poor, lost mage. Your feet are on land, yet you're in over your head, aren't you?" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lochmere Serpent +[Main] +4 Bake into a Pie|ELD +4 Brazen Borrower|ELD|1 +4 Didn't Say Please|ELD +4 Drown in the Loch|ELD +4 Fabled Passage|ELD|1 +4 Faerie Vandal|ELD +14 Island|ELD|1 +4 Lochmere Serpent|ELD|2 +4 Merfolk Secretkeeper|ELD|1 +4 Mystical Dispute|ELD +10 Swamp|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover - Kenrith.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover - Kenrith.dck new file mode 100755 index 00000000000..8240ad3c7fe --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover - Kenrith.dck @@ -0,0 +1,42 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover - Kenrith +[Main] +4 Beanstalk Giant|ELD|2 +2 Bonecrusher Giant|ELD|2 +2 Brazen Borrower|ELD|2 +2 Embereth Shieldbreaker|ELD|2 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|2 +4 Fires of Invention|ELD|1 +6 Forest|ELD|4 +2 Giant Killer|ELD|2 +2 Island|ELD|1 +2 Kenrith, the Returned King|ELD +2 Lonesome Unicorn|ELD|2 +4 Lovestruck Beast|ELD|2 +4 Lucky Clover|ELD +6 Mountain|ELD|1 +2 Plains|ELD|1 +4 Thornwood Falls|ELD +4 Wind-Scarred Crag|ELD +[Sideboard] +1 Embercleave|ELD|1 +1 Enchanted Carriage|ELD +1 Escape to the Wilds|ELD|1 +1 Glass Casket|ELD|1 +1 Oko, Thief of Crowns|ELD|1 +1 Return of the Wildspeaker|ELD|1 +1 Rowan, Fearless Sparkmage|ELD +1 Scorching Dragonfire|ELD +1 Searing Barrage|ELD +1 Spinning Wheel|ELD +1 Sundering Stroke|ELD|1 +1 The Circle of Loyalty|ELD|1 +1 The Great Henge|ELD|1 +1 The Royal Scions|ELD|1 +1 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 01WU.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 01WU.dck new file mode 100755 index 00000000000..a51e10e02b2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 01WU.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 01WU +[Main] +2 Brazen Borrower|ELD|2 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|2 +4 Faerie Guidemother|ELD|2 +2 Giant Killer|ELD|2 +12 Island|ELD|3 +4 Lonesome Unicorn|ELD|2 +4 Lucky Clover|ELD +4 Mysterious Pathlighter|ELD +12 Plains|ELD|4 +4 Queen of Ice|ELD|2 +4 Silverflame Squire|ELD|2 +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 02WB.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 02WB.dck new file mode 100755 index 00000000000..744a3a7ca55 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 02WB.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 02WB +[Main] +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|2 +4 Foulmire Knight|ELD|2 +2 Giant Killer|ELD|2 +4 Lonesome Unicorn|ELD|2 +4 Lucky Clover|ELD +2 Murderous Rider|ELD|2 +4 Mysterious Pathlighter|ELD +10 Plains|ELD|1 +4 Reaper of Night|ELD|2 +2 Silverflame Squire|ELD|2 +4 Smitten Swordmaster|ELD|2 +12 Swamp|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 03UB.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 03UB.dck new file mode 100755 index 00000000000..456127bacde --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 03UB.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 03UB +[Main] +2 Brazen Borrower|ELD|2 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|2 +4 Foulmire Knight|ELD|2 +11 Island|ELD|2 +4 Lucky Clover|ELD +4 Merfolk Secretkeeper|ELD|2 +2 Murderous Rider|ELD|2 +4 Queen of Ice|ELD|2 +4 Reaper of Night|ELD|2 +4 Smitten Swordmaster|ELD|2 +13 Swamp|ELD|1 +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 04UR.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 04UR.dck new file mode 100755 index 00000000000..3729ee41cc0 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 04UR.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 04UR +[Main] +2 Bonecrusher Giant|ELD|2 +2 Brazen Borrower|ELD|2 +2 Embereth Shieldbreaker|ELD|2 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|2 +2 Fires of Invention|ELD|1 +12 Island|ELD|2 +4 Lucky Clover|ELD +4 Merchant of the Vale|ELD|2 +4 Merfolk Secretkeeper|ELD|2 +12 Mountain|ELD|4 +4 Queen of Ice|ELD|2 +4 Rimrock Knight|ELD|2 +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 05BR.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 05BR.dck new file mode 100755 index 00000000000..22da4b8900b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 05BR.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 05BR +[Main] +2 Bonecrusher Giant|ELD|2 +2 Embereth Shieldbreaker|ELD|2 +4 Fabled Passage|ELD|1 +2 Fires of Invention|ELD|1 +4 Foulmire Knight|ELD|2 +4 Lucky Clover|ELD +4 Merchant of the Vale|ELD|2 +9 Mountain|ELD|4 +2 Murderous Rider|ELD|2 +4 Reaper of Night|ELD|2 +4 Rimrock Knight|ELD|2 +4 Smitten Swordmaster|ELD|2 +11 Swamp|ELD|2 +4 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 06BG.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 06BG.dck new file mode 100755 index 00000000000..de90fcd512d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 06BG.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 06BG +[Main] +4 Beanstalk Giant|ELD|2 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +11 Forest|ELD|3 +4 Foulmire Knight|ELD|2 +4 Garenbrig Carver|ELD|2 +4 Lovestruck Beast|ELD|2 +4 Lucky Clover|ELD +2 Murderous Rider|ELD|2 +4 Reaper of Night|ELD|2 +11 Swamp|ELD|2 +4 Tuinvale Treefolk|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 07RG.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 07RG.dck new file mode 100755 index 00000000000..2cdc16a7230 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 07RG.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 07RG +[Main] +4 Beanstalk Giant|ELD|2 +2 Bonecrusher Giant|ELD|2 +4 Edgewall Innkeeper|ELD +2 Embereth Shieldbreaker|ELD|2 +4 Fabled Passage|ELD|1 +2 Fires of Invention|ELD|1 +13 Forest|ELD|3 +4 Garenbrig Carver|ELD|2 +4 Lovestruck Beast|ELD|2 +4 Lucky Clover|ELD +9 Mountain|ELD|4 +4 Rimrock Knight|ELD|2 +4 Tuinvale Treefolk|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 08RW.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 08RW.dck new file mode 100755 index 00000000000..205da945365 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 08RW.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 08RW +[Main] +2 Bonecrusher Giant|ELD|2 +2 Embereth Shieldbreaker|ELD|2 +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|2 +2 Fires of Invention|ELD|1 +2 Giant Killer|ELD|2 +4 Lonesome Unicorn|ELD|2 +4 Lucky Clover|ELD +2 Merchant of the Vale|ELD|2 +8 Mountain|ELD|4 +4 Mysterious Pathlighter|ELD +10 Plains|ELD|1 +4 Rimrock Knight|ELD|2 +4 Silverflame Squire|ELD|2 +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 09GW.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 09GW.dck new file mode 100755 index 00000000000..2d9b05890e1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 09GW.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 09GW +[Main] +4 Beanstalk Giant|ELD|2 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|2 +12 Forest|ELD|3 +2 Giant Killer|ELD|2 +4 Lonesome Unicorn|ELD|2 +4 Lovestruck Beast|ELD|2 +4 Lucky Clover|ELD +4 Mysterious Pathlighter|ELD +10 Plains|ELD|1 +4 Tuinvale Treefolk|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 10GU.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 10GU.dck new file mode 100755 index 00000000000..8b00d4342bd --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Lucky Clover 10GU.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Lucky Clover +Difficulty=hard +Description="I know what you're thinking: 'Is this the one with the Beanstalk Giants or the one with the Faerie Guidemothers?' Well, to tell you the truth, in all this excitement, I've kinda lost track myself. But being this is a Lucky Clover, the most powerful artifact in Eldraine, you've got to ask yourself one question: 'Do I feel lucky?' Well, do you, punk?"\n-Harry Callahan, Dirty Harry +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Lucky Clover 10GU +[Main] +2 Brazen Borrower|ELD|2 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|2 +9 Forest|ELD|3 +4 Garenbrig Carver|ELD|2 +9 Island|ELD|2 +4 Lovestruck Beast|ELD|2 +4 Lucky Clover|ELD +4 Merfolk Secretkeeper|ELD|2 +4 Queen of Ice|ELD|2 +4 Thornwood Falls|ELD +4 Tuinvale Treefolk|ELD|2 +[Sideboard] +4 Into the Story|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Midnight Clock - Black Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Midnight Clock - Black Knights.dck new file mode 100755 index 00000000000..8f39e9fbfae --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Midnight Clock - Black Knights.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Midnight Clock +Difficulty=hard +Description="Hone the knife and mourn the least.\nThree chimes to sound the sweet, grim feast."\n-Barrow witch incantation +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Midnight Clock - Black Knights +[Main] +4 Bake into a Pie|ELD +4 Drown in the Loch|ELD +4 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +9 Island|ELD|2 +4 Midnight Clock|ELD|2 +4 Murderous Rider|ELD|1 +13 Swamp|ELD|3 +2 Syr Konrad, the Grim|ELD +4 Taste of Death|ELD +4 Witch's Vengeance|ELD|1 +[Sideboard] +1 Enchanted Carriage|ELD +1 Reave Soul|ELD +1 Revenge of Ravens|ELD +1 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Midnight Clock - White Giants.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Midnight Clock - White Giants.dck new file mode 100755 index 00000000000..e305e84d044 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Midnight Clock - White Giants.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Midnight Clock +Difficulty=hard +Description="And as I always say: if it's not Baroque, don't fix it."\n-Cogsworth, Beauty and the Beast +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Midnight Clock - White Giants +[Main] +2 Didn't Say Please|ELD +4 Fabled Passage|ELD|1 +4 Giant Killer|ELD|1 +4 Glass Casket|ELD|1 +10 Island|ELD|2 +4 Midnight Clock|ELD|2 +4 Mystical Dispute|ELD +12 Plains|ELD|3 +4 Realm-Cloaked Giant|ELD|1 +4 Scalding Cauldron|ELD +4 Turn into a Pumpkin|ELD +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Oathsworn Knight.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Oathsworn Knight.dck new file mode 100755 index 00000000000..1b1cf6c460d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Oathsworn Knight.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Oathsworn Knight +Difficulty=hard +Description="Tis but a scratch!"\n-The Black Knight, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Oathsworn Knight +[Main] +4 Barrow Witches|ELD +4 Belle of the Brawl|ELD +4 Fabled Passage|ELD|1 +9 Forest|ELD|3 +4 Giant's Skewer|ELD +4 Oathsworn Knight|ELD|2 +4 Outmuscle|ELD +11 Swamp|ELD|2 +4 The Great Henge|ELD|1 +4 Tuinvale Treefolk|ELD|1 +4 Witch's Cottage|ELD +4 Witch's Vengeance|ELD|1 +[Sideboard] +4 Weapon Rack|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Outlaws' Merriment.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Outlaws' Merriment.dck new file mode 100755 index 00000000000..67aa44684e4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Outlaws' Merriment.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Outlaws' Merriment +Difficulty=hard +Description="The secret ingredient is crime."\n-Super Hans, Peep Show +IIcon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Outlaws' Merriment +[Main] +4 Arcanist's Owl|ELD +2 Castle Ardenvale|ELD|1 +2 Castle Embereth|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +2 Fortifying Provisions|ELD +4 Giant Killer|ELD|1 +4 Heraldic Banner|ELD +5 Mountain|ELD|4 +4 Outlaws' Merriment|ELD|2 +9 Plains|ELD|3 +4 Realm-Cloaked Giant|ELD|1 +4 Robber of the Rich|ELD|1 +4 Scorching Dragonfire|ELD +2 Torbran, Thane of Red Fell|ELD|1 +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Pillow Fort.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Pillow Fort.dck new file mode 100755 index 00000000000..3d9140ef4ab --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Pillow Fort.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Pillow Fort +Difficulty=hard +Description=Syr Tasdale declared that he never wanted to see the witch Ygretta again. Her familiars quickly granted his request. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Pillow Fort +[Main] +4 Archon of Absolution|ELD +4 Brimstone Trebuchet|ELD +4 Castle Ardenvale|ELD|1 +4 Fabled Passage|ELD|1 +2 Fortifying Provisions|ELD +4 Foulmire Knight|ELD|1 +1 Mountain|ELD|4 +4 Murderous Rider|ELD|1 +4 Outlaws' Merriment|ELD|1 +4 Plains|ELD|1 +4 Revenge of Ravens|ELD +4 Spinning Wheel|ELD +9 Swamp|ELD|2 +4 Wind-Scarred Crag|ELD +4 Wintermoor Commander|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Rats!.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Rats!.dck new file mode 100755 index 00000000000..78d4d5e13ec --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Rats!.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Rats! +Difficulty=hard +Description="Gather round and tell me all from the courts and castles." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Rats! +[Main] +2 Castle Embereth|ELD|1 +2 Castle Locthwain|ELD|1 +4 Chittering Witch|ELD +4 Fabled Passage|ELD|1 +4 Foreboding Fruit|ELD +2 Forever Young|ELD +4 Golden Egg|ELD +4 Mad Ratter|ELD +8 Mountain|ELD|3 +4 Piper of the Swarm|ELD|3 +4 Rankle, Master of Pranks|ELD|1 +4 Stormfist Crusader|ELD|1 +12 Swamp|ELD|2 +2 Thrill of Possibility|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Knights.dck new file mode 100755 index 00000000000..9c82586b090 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Knights.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Relic: The Circle of Loyalty +Difficulty=hard +Description=At the heart of Castle Ardenvale is a magical ring of eternally burning silver fire known as the Circle of Loyalty. To be named a knight of Ardenvale, aspirants must walk through the flame, for its magic can detect selfish people and prideful motives. Those who pass through the flame unscathed are deemed worthy and knighted at the center of the ring itself. Those who are burned are quickly pulled out and healed, but rarely are they allowed to attempt the trial a second time. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 1 The Circle of Loyalty - Knights +[Main] +4 Acclaimed Contender|ELD|1 +1 Castle Ardenvale|ELD|1 +1 Embercleave|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +4 Inspiring Veteran|ELD|1 +2 Mountain|ELD|1 +4 Murderous Rider|ELD|1 +4 Plains|ELD|1 +9 Swamp|ELD|2 +2 Syr Alin, the Lion's Claw|ELD +1 Syr Gwyn, Hero of Ashvale|ELD +2 Syr Konrad, the Grim|ELD +4 The Circle of Loyalty|ELD|2 +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - RGW.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - RGW.dck new file mode 100755 index 00000000000..117253b46a9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - RGW.dck @@ -0,0 +1,31 @@ +[metadata] +Title=Relic: The Circle of Loyalty +Difficulty=hard +Description=The five relics are wondrous, mysterious objects with immense magical power and a sentience that lies just beyond mortal understanding. What is known for certain is that each of the five relics is the physical embodiment of one of five virtues and possesses the power to judge that virtue within individuals. In the realm, the virtues of the relics (and their judgement) are considered objective and inarguable, and it is this infallibility around which all of realm society is built. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 1 The Circle of Loyalty - Legends - RGW +[Main] +4 Acclaimed Contender|ELD|1 +1 Castle Ardenvale|ELD|1 +1 Embercleave|ELD|1 +4 Fabled Passage|ELD|1 +9 Forest|ELD|3 +3 Grumgully, the Generous|ELD +3 Kenrith, the Returned King|ELD +1 Linden, the Steadfast Queen|ELD|1 +1 Mountain|ELD|4 +6 Plains|ELD|1 +2 Questing Beast|ELD|1 +2 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Spinning Wheel|ELD +1 Syr Alin, the Lion's Claw|ELD +1 Syr Carah, the Bold|ELD +1 Syr Faren, the Hengehammer|ELD +4 The Circle of Loyalty|ELD|2 +2 The Great Henge|ELD|1 +1 Torbran, Thane of Red Fell|ELD|1 +3 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD +1 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - RGWU.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - RGWU.dck new file mode 100755 index 00000000000..e9526aed2e8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - RGWU.dck @@ -0,0 +1,33 @@ +[metadata] +Title=Relic: The Circle of Loyalty +Difficulty=hard +Description=The Circle of Loyalty imbues knights and mages of Ardenvale with the power to heal their allies and smite their enemies with holy fire. The magic of loyalty is stronger when cast in groups and forges an unseen bond between knights that innately empowers them to protect one another. Oaths that invoke the Circle are imbued with magical certainty, and any who would dare break such an oath are cast out of Ardenvale at once. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 1 The Circle of Loyalty - Legends - RGWU +[Main] +4 Acclaimed Contender|ELD|1 +3 Chulane, Teller of Tales|ELD +1 Embercleave|ELD|1 +4 Fabled Passage|ELD|1 +4 Forest|ELD|3 +3 Grumgully, the Generous|ELD +2 Island|ELD|2 +3 Kenrith, the Returned King|ELD +1 Mountain|ELD|4 +1 Oko, the Trickster|ELD +2 Oko, Thief of Crowns|ELD|1 +4 Plains|ELD|1 +2 Questing Beast|ELD|1 +2 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Spinning Wheel|ELD +2 Syr Alin, the Lion's Claw|ELD +1 Syr Carah, the Bold|ELD +1 Syr Faren, the Hengehammer|ELD +4 The Circle of Loyalty|ELD|2 +1 The Great Henge|ELD|1 +1 The Royal Scions|ELD|1 +4 Thornwood Falls|ELD +1 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - URW.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - URW.dck new file mode 100755 index 00000000000..e1895cfdaba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - URW.dck @@ -0,0 +1,28 @@ +[metadata] +Title=Relic: The Circle of Loyalty +Difficulty=hard +Description=Legends say that in ancient times the woods had no borders and its wild growth stretched as far as the eye could see. The five relics that now form the centers of the courts were elvish treasures back then, and it's even possible that elf magic created some of them. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 1 The Circle of Loyalty - Legends - URW +[Main] +4 Acclaimed Contender|ELD|1 +1 Castle Ardenvale|ELD|1 +1 Embercleave|ELD|1 +4 Fabled Passage|ELD|1 +2 Gadwick, the Wizened|ELD|1 +10 Island|ELD|2 +3 Kenrith, the Returned King|ELD +1 Linden, the Steadfast Queen|ELD|1 +2 Mountain|ELD|4 +5 Plains|ELD|1 +2 Rowan's Stalwarts|ELD +2 Rowan, Fearless Sparkmage|ELD +4 Spinning Wheel|ELD +2 Syr Alin, the Lion's Claw|ELD +2 Syr Carah, the Bold|ELD +4 The Circle of Loyalty|ELD|2 +2 The Royal Scions|ELD|1 +1 Torbran, Thane of Red Fell|ELD|1 +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - WBG.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - WBG.dck new file mode 100755 index 00000000000..0544a5aafd7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - WBG.dck @@ -0,0 +1,28 @@ +[metadata] +Title=Relic: The Circle of Loyalty +Difficulty=hard +Description="Ah, now we see the violence inherent in the system! Oh! Come and see the violence inherent in the system! Help! Help! I'm being repressed!"\n-Dennis the Constitutional Peasant, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 1 The Circle of Loyalty - Legends - WBG +[Main] +4 Acclaimed Contender|ELD|1 +1 Ayara, First of Locthwain|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Fabled Passage|ELD|1 +6 Forest|ELD|3 +3 Garruk, Cursed Huntsman|ELD|1 +3 Kenrith, the Returned King|ELD +1 Linden, the Steadfast Queen|ELD|1 +6 Plains|ELD|1 +2 Questing Beast|ELD|1 +2 Rankle, Master of Pranks|ELD|1 +4 Spinning Wheel|ELD +6 Swamp|ELD|2 +2 Syr Alin, the Lion's Claw|ELD +1 Syr Faren, the Hengehammer|ELD +2 Syr Konrad, the Grim|ELD +4 The Circle of Loyalty|ELD|2 +2 The Great Henge|ELD|1 +4 Tournament Grounds|ELD +1 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - WUBRG.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - WUBRG.dck new file mode 100755 index 00000000000..50485905aaf --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 1 The Circle of Loyalty - Legends - WUBRG.dck @@ -0,0 +1,40 @@ +[metadata] +Title=Relic: The Circle of Loyalty +Difficulty=hard +Description="Can you paint with all the colors of the wind"\n-Pocahontas +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 1 The Circle of Loyalty - Legends - WUBRG +[Main] +4 Acclaimed Contender|ELD|1 +1 Alela, Artful Provocateur|ELD +2 Chulane, Teller of Tales|ELD +1 Embercleave|ELD|1 +4 Fabled Passage|ELD|1 +1 Forest|ELD|3 +2 Garruk, Cursed Huntsman|ELD|1 +1 Grumgully, the Generous|ELD +1 Island|ELD|2 +2 Kenrith, the Returned King|ELD +1 Korvold, Fae-Cursed King|ELD +1 Mountain|ELD|4 +1 Oko, the Trickster|ELD +2 Oko, Thief of Crowns|ELD|1 +2 Plains|ELD|1 +1 Questing Beast|ELD|1 +1 Rankle, Master of Pranks|ELD|1 +1 Rowan's Stalwarts|ELD +1 Rowan, Fearless Sparkmage|ELD +4 Spinning Wheel|ELD +3 Swamp|ELD|2 +1 Syr Alin, the Lion's Claw|ELD +1 Syr Carah, the Bold|ELD +1 Syr Faren, the Hengehammer|ELD +1 Syr Gwyn, Hero of Ashvale|ELD +1 Syr Konrad, the Grim|ELD +4 The Circle of Loyalty|ELD|2 +1 The Great Henge|ELD|1 +1 The Royal Scions|ELD|1 +4 Thornwood Falls|ELD +4 Tournament Grounds|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 2 The Magic Mirror - Burn.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 2 The Magic Mirror - Burn.dck new file mode 100755 index 00000000000..70a0662538e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 2 The Magic Mirror - Burn.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Relic: The Magic Mirror +Difficulty=hard +Description=The mirror rewards the virtue of knowledge in all who come before it. The granting of knighthood is the most common reward, but even established knights bring new secrets to the Mirror in the hope of winning additional rewards in the form of magical boons and powers. Likewise, merfolk who have no aspirations to join the court of Vantress come before the mirror in hope of learning its secrets. The full extent of the Mirror's power is unknown, but the scope of its knowledge is undeniably vast. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 2 The Magic Mirror - Burn +[Main] +4 Fabled Passage|ELD|1 +4 Improbable Alliance|ELD|1 +4 Irencrag Pyromancer|ELD|1 +11 Island|ELD|1 +4 Mad Ratter|ELD +11 Mountain|ELD|4 +4 Opt|ELD +4 Scorching Dragonfire|ELD +4 Slaying Fire|ELD|1 +4 The Magic Mirror|ELD|1 +4 Thrill of Possibility|ELD +2 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 2 The Magic Mirror - Control.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 2 The Magic Mirror - Control.dck new file mode 100755 index 00000000000..d034d244425 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 2 The Magic Mirror - Control.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Relic: The Magic Mirror +Difficulty=hard +Description=Far under Castle Vantress, often submerged in water, is the secret-hoarding Magic Mirror. Its true name is Indrelon, though only those who reside in Vantress call it by that name. As the story goes, in ancient times, the world's most foolish redcap asked a question of the world's wisest sage. The sage reflected on this question for the rest of his life, never finding an answer. After his death, the question magically remained, swirling in on itself, and the Mirror took form. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 2 The Magic Mirror - Control +[Main] +4 Bake into a Pie|ELD +4 Didn't Say Please|ELD +4 Drown in the Loch|ELD +1 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +1 Forever Young|ELD +11 Island|ELD|1 +4 Murderous Rider|ELD|1 +4 Opt|ELD +11 Swamp|ELD|3 +4 Taste of Death|ELD +4 The Magic Mirror|ELD|1 +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Cat Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Cat Food.dck new file mode 100755 index 00000000000..cadd2907a65 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Cat Food.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Relic: The Cauldron of Eternity +Difficulty=hard +Description="Gingerbrute, gingerbrute, ginger all the way\nOh wat fun it is to bring that cat back from the grave, hey!" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 3 The Cauldron of Eternity - Cat Food +[Main] +2 Ayara, First of Locthwain|ELD|1 +2 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +2 Chittering Witch|ELD +2 Emry, Lurker of the Loch|ELD|1 +4 Fabled Passage|ELD|1 +4 Gingerbrute|ELD +9 Island|ELD|4 +2 Rankle, Master of Pranks|ELD|1 +4 Sage of the Falls|ELD +11 Swamp|ELD|3 +2 Syr Konrad, the Grim|ELD +4 Taste of Death|ELD +4 The Cauldron of Eternity|ELD|2 +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Doom.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Doom.dck new file mode 100755 index 00000000000..1e6e4c3644a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Doom.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Relic: The Cauldron of Eternity +Difficulty=hard +Description=The Cauldron of Eternity is said to be a huge stone cauldron with the power to bestow everlasting life and restore life to the dead, so long as it finds them worthy. These claims seem consistent with what is known of the other four relics and explain the magic over life and death wielded by Locthwain warlocks. But, ultimately, these stories are unverifiable, for the Caldron of Eternity has been missing for many generations. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 3 The Cauldron of Eternity - Doom +[Main] +1 Castle Ardenvale|ELD|1 +1 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +4 Clockwork Servant|ELD +4 Doom Foretold|ELD|1 +4 Fabled Passage|ELD|1 +2 Fortifying Provisions|ELD +2 Giant's Skewer|ELD +4 Gingerbrute|ELD +4 Golden Egg|ELD +2 Heraldic Banner|ELD +9 Plains|ELD|1 +4 Sorcerer's Broom|ELD +11 Swamp|ELD|3 +4 The Cauldron of Eternity|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Knights.dck new file mode 100755 index 00000000000..3f98c6cdc01 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Knights.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Relic: The Cauldron of Eternity +Difficulty=hard +Description="I've had worse!"\n-The Black Knight, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 3 The Cauldron of Eternity - Knights +[Main] +4 Acclaimed Contender|ELD|1 +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +8 Plains|ELD|1 +10 Swamp|ELD|3 +2 Syr Konrad, the Grim|ELD +4 The Cauldron of Eternity|ELD|2 +2 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Venerable Knight|ELD +2 Wintermoor Commander|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Self-Mill.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Self-Mill.dck new file mode 100755 index 00000000000..e44dba9023d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 3 The Cauldron of Eternity - Self-Mill.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Relic: The Cauldron of Eternity +Difficulty=hard +Description=Ask a merfolk even a simple question and the answer is a journey far beyond the known. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 3 The Cauldron of Eternity - Self-Mill +[Main] +2 Emry, Lurker of the Loch|ELD|1 +4 Eye Collector|ELD +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +10 Island|ELD|4 +2 Lochmere Serpent|ELD|1 +4 Rankle, Master of Pranks|ELD|1 +4 Sage of the Falls|ELD +14 Swamp|ELD|3 +4 Syr Konrad, the Grim|ELD +4 The Cauldron of Eternity|ELD|2 +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Fatties.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Fatties.dck new file mode 100755 index 00000000000..2678f6930ee --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Fatties.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Relic: Embercleave +Difficulty=hard +Description=The Burning Yard is built beside the Irencrag--a massive boulder glowing with volcanic heat. In order to become a knight of Embereth, an aspirant must first face the fear inspired by its red-hot surface in order to plunge their sword into the boulder. If they are truly courageous, they can pull their sword back out, but if they are cowardly or hindered by fear, the sword remains stuck in the Irencrag. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 4 Embercleave - Fatties +[Main] +4 Beanstalk Giant|ELD|1 +4 Bonecrusher Giant|ELD|1 +2 Castle Embereth|ELD|1 +4 Embercleave|ELD|2 +4 Fabled Passage|ELD|1 +13 Forest|ELD|4 +1 Grumgully, the Generous|ELD +4 Keeper of Fables|ELD +4 Maraleaf Rider|ELD +8 Mountain|ELD|1 +4 Oakhame Adversary|ELD +1 Questing Beast|ELD|1 +4 Rampart Smasher|ELD +2 The Great Henge|ELD|1 +1 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Flyers.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Flyers.dck new file mode 100755 index 00000000000..c5c9cf55db3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Flyers.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Relic: Embercleave +Difficulty=hard +Description="Listen. Strange rocks lying in tournament grounds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical igneous ceremony. You can't expect to wield supreme power just 'cause some fiery stone threw a sword at you!"\n-Dennis the Constitutional Peasant, Monty Python and the Holy Grail +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 4 Embercleave - Flyers +[Main] +4 Archon of Absolution|ELD +4 Ardenvale Tactician|ELD|1 +4 Barge In|ELD +2 Castle Embereth|ELD|1 +4 Embercleave|ELD|2 +4 Embereth Skyblazer|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Hushbringer|ELD|1 +6 Mountain|ELD|1 +4 Mysterious Pathlighter|ELD +8 Plains|ELD|1 +4 Redcap Melee|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Glitter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Glitter.dck new file mode 100755 index 00000000000..04d804548f2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Glitter.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Relic: Embercleave +Difficulty=hard +Description="Gingerbrute, gingerbrute, gingerbrute walk / Gingerbrute swing and gingerbrute ping\nThat's the gingerbrute, that's the gingerbrute, that's the gingerbrute block!"\n-Bobby Helms" +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 4 Embercleave - Glitter +[Main] +4 Acclaimed Contender|ELD|1 +4 All That Glitters|ELD +1 Castle Ardenvale|ELD|1 +1 Castle Embereth|ELD|1 +4 Embercleave|ELD|2 +4 Fabled Passage|ELD|1 +4 Gingerbrute|ELD +4 Glass Casket|ELD|1 +4 Jousting Dummy|ELD +4 Locthwain Gargoyle|ELD +4 Mountain|ELD|1 +6 Plains|ELD|1 +4 Shambling Suit|ELD +4 Stonecoil Serpent|ELD|1 +4 Trapped in the Tower|ELD +4 Wind-Scarred Crag|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Knights.dck new file mode 100755 index 00000000000..73eaef340cc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 4 Embercleave - Knights.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Relic: Embercleave +Difficulty=hard +Description=According to Embereth knights, the Irencrag will speak to aspiring knights in a voice only they can hear, often taunting them as a test of their courage. According to legend, it was this taunting that inspired Ianthe to be the first to impale the stone with her sword. Occasionally, when the Irencrag finds a knight particularly worthy, it will bestow their sword with a legendary name, forever imbuing it with its power. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 4 Embercleave - Knights +[Main] +4 Acclaimed Contender|ELD|1 +4 Barge In|ELD +2 Castle Embereth|ELD|1 +4 Embercleave|ELD|2 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +4 Joust|ELD +8 Mountain|ELD|1 +2 Plains|ELD|1 +2 Redcap Melee|ELD +4 Rimrock Knight|ELD|1 +4 Tournament Grounds|ELD +4 Venerable Knight|ELD +4 Weaselback Redcap|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Draw.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Draw.dck new file mode 100755 index 00000000000..8b0400c91c9 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Draw.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description=The throng flitted from castle to castle, leaving a trail of star-crossed love, damaging rumors, and missing heirlooms in their wake. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Draw +[Main] +4 Fabled Passage|ELD|1 +4 Faerie Formation|ELD +4 Faerie Vandal|ELD +6 Forest|ELD|4 +1 Gadwick, the Wizened|ELD|1 +4 Improbable Alliance|ELD|1 +4 Irencrag Pyromancer|ELD|1 +7 Island|ELD|3 +2 Keeper of Fables|ELD +4 Mad Ratter|ELD +7 Mountain|ELD|2 +1 Syr Elenora, the Discerning|ELD +4 The Great Henge|ELD|2 +4 Thornwood Falls|ELD +4 Thunderous Snapper|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Glitter.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Glitter.dck new file mode 100755 index 00000000000..4093e4331ba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Glitter.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description=Cast out of Garenbrig for his crimes, Ennor turned to fae magic to fashion the perfect weapon for his revenge. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Glitter +[Main] +4 All That Glitters|ELD +4 Arcanist's Owl|ELD +4 Enchanted Carriage|ELD +4 Fabled Passage|ELD|1 +5 Forest|ELD|4 +7 Island|ELD|3 +8 Plains|ELD|2 +4 Shambling Suit|ELD +4 Shimmer Dragon|ELD +4 Stonecoil Serpent|ELD|1 +4 The Great Henge|ELD|2 +4 Thornwood Falls|ELD +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 1 White - Adventurers.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 1 White - Adventurers.dck new file mode 100755 index 00000000000..3bad8806fa2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 1 White - Adventurers.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description="What size advantage? They never even see me coming." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Power 1 White - Adventurers +[Main] +4 Beanstalk Giant|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +11 Forest|ELD|4 +4 Giant Killer|ELD|1 +4 Lovestruck Beast|ELD|1 +11 Plains|ELD|1 +4 Realm-Cloaked Giant|ELD|1 +2 Rosethorn Acolyte|ELD|1 +4 Shepherd of the Flock|ELD|1 +4 The Great Henge|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 1 White - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 1 White - Knights.dck new file mode 100755 index 00000000000..4a2458610f3 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 1 White - Knights.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description=To become a knight of Garenbrig, one must demonstrate a great feat of strength, something beyond the capabilities expected of their size and species. The ruler of the court is the arbiter of whether a feat of strength is worthy of knighthood, and King Yorvo is not easily impressed, so knights are hardly plentiful in Garenbrig. Garenbrig knights can often be found wrestling giants and fighting great beasts in the forest, but they can just as often be found carrying water in a fire brigade or clearing trees after a storm. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Power 1 White - Knights +[Main] +4 Acclaimed Contender|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Fabled Passage|ELD|1 +10 Forest|ELD|4 +2 Garenbrig Paladin|ELD +4 Maraleaf Rider|ELD +10 Plains|ELD|1 +4 Silverwing Squadron|ELD +2 Syr Alin, the Lion's Claw|ELD +2 Syr Faren, the Hengehammer|ELD +4 The Circle of Loyalty|ELD|1 +4 The Great Henge|ELD|2 +4 Venerable Knight|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 2 Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 2 Blue.dck new file mode 100755 index 00000000000..366bd7a229c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 2 Blue.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description=The Great Henge is a large circle of enormous stone monoliths arranged in a variety of shapes and patterns, depending on when you visit it. A singular mountainous stone slab dominates the center of the Henge and acts as the gnomon of a massive sundial. At sunrise and sunset on certain dates, the shadows of the surrounding monoliths fall in such a way that the central stone becomes a magical gate to the depths of the wilds. Someone who goes through at sunrise and fails to return at sunset might return in a year and a day; if they do not return then, they are likely lost forever. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Power 2 Blue +[Main] +4 Beanstalk Giant|ELD|1 +4 Brazen Borrower|ELD|1 +4 Fabled Passage|ELD|1 +4 Faerie Formation|ELD +7 Forest|ELD|4 +3 Gadwick, the Wizened|ELD|1 +11 Island|ELD|3 +4 Maraleaf Pixie|ELD +3 Syr Elenora, the Discerning|ELD +4 The Great Henge|ELD|2 +4 Thornwood Falls|ELD +4 Thunderous Snapper|ELD +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 3 Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 3 Black.dck new file mode 100755 index 00000000000..5ff328f1cd7 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 3 Black.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description="Black rage! Black rage!"\n-Hooper "Hooper X" LaMante, Chasing Amy +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Power 3 Black +[Main] +4 Beanstalk Giant|ELD|1 +4 Cauldron Familiar|ELD +4 Clackbridge Troll|ELD|1 +4 Deathless Knight|ELD +4 Fabled Passage|ELD|1 +10 Forest|ELD|4 +4 Garruk, Cursed Huntsman|ELD|1 +2 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +12 Swamp|ELD|2 +4 The Great Henge|ELD|2 +4 Wildborn Preserver|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 4 Red.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 4 Red.dck new file mode 100755 index 00000000000..f41a7409be5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 4 Red.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description="He has strength and courage--just way, way too much of both."\n-Syr Faren, the Hengehammer +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Power 4 Red +[Main] +4 Beanstalk Giant|ELD|1 +4 Bonecrusher Giant|ELD|1 +4 Dwarven Mine|ELD +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +8 Forest|ELD|4 +11 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|1 +4 Rampart Smasher|ELD +4 Rimrock Knight|ELD|1 +7 Seven Dwarves|ELD +4 The Great Henge|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 5 Green.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 5 Green.dck new file mode 100755 index 00000000000..5f29fce9c33 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Relic 5 The Great Henge - Power 5 Green.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Relic: The Great Henge +Difficulty=hard +Description=Above all, the knights of Garenbrig prize raw physical strength. A Garenbrig knight should be able to wield the largest weapons, wear the heaviest armor, and perform feats of strength that border on superhuman (or supergiant, as the case may be). They also value strength of will and character--but as an addition to physical power, not a replacement. Strength is the most external of the virtues, and this shapes the Garenbrig worldview. They view action as far more important than intention or desire and take a dim view of people who focus on their interior lives and personal virtue without actually doing anything. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Relic 5 The Great Henge - Power 5 Green +[Main] +4 Deathless Knight|ELD +4 Feasting Troll King|ELD|1 +26 Forest|ELD|4 +4 Lovestruck Beast|ELD|1 +2 Maraleaf Rider|ELD +1 Questing Beast|ELD|1 +4 Rampart Smasher|ELD +2 Steelbane Hydra|ELD +2 Syr Faren, the Hengehammer|ELD +4 The Great Henge|ELD|2 +4 Wildborn Preserver|ELD|1 +3 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Resolute Rider - Black Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Resolute Rider - Black Knights.dck new file mode 100755 index 00000000000..6631f2d4fb1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Resolute Rider - Black Knights.dck @@ -0,0 +1,18 @@ +[metadata] +Title=Resolute Rider +Difficulty=hard +Description=Locthwain knights take pride in being the last ones standing in a fight or on a dance floor. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Resolute Rider - Black Knights +[Main] +4 Barrow Witches|ELD +4 Belle of the Brawl|ELD +4 Blacklance Paragon|ELD|1 +4 Castle Locthwain|ELD|1 +4 Giant's Skewer|ELD +4 Heraldic Banner|ELD +4 Resolute Rider|ELD +4 Smitten Swordmaster|ELD|1 +4 Spinning Wheel|ELD +24 Swamp|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Resolute Rider - White Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Resolute Rider - White Knights.dck new file mode 100755 index 00000000000..34a4c9c119a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Resolute Rider - White Knights.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Resolute Rider +Difficulty=hard +Description="Respect the wilds? Certainly. Fear them? No." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Resolute Rider - White Knights +[Main] +4 Acclaimed Contender|ELD|1 +4 Castle Ardenvale|ELD|1 +4 Heraldic Banner|ELD +2 Linden, the Steadfast Queen|ELD|1 +24 Plains|ELD|1 +4 Resolute Rider|ELD +4 Silverwing Squadron|ELD +2 Syr Alin, the Lion's Claw|ELD +4 The Circle of Loyalty|ELD|1 +4 Venerable Knight|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Give to the Poor.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Give to the Poor.dck new file mode 100755 index 00000000000..56ede3b2fba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Give to the Poor.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Robber of the Rich +Difficulty=hard +Description="May this blade guide you on your great journey, as it did me on mine." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Robber of the Rich - Give to the Poor +[Main] +4 Beloved Princess|ELD +2 Castle Ardenvale|ELD|1 +4 Claim the Firstborn|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Fervent Champion|ELD|1 +4 Giant Killer|ELD|1 +4 Gingerbrute|ELD +9 Mountain|ELD|4 +9 Plains|ELD|3 +4 Robber of the Rich|ELD|2 +4 Stonecoil Serpent|ELD|1 +4 Venerable Knight|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Rogues.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Rogues.dck new file mode 100755 index 00000000000..e258b0c774c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Rogues.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Robber of the Rich +Difficulty=hard +Description="The deal was struck and the favor had been done. And so, under the cover of night, the debt was paid."\n-Tales of the Fae +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Robber of the Rich - Rogues +[Main] +4 Barge In|ELD +4 Brazen Borrower|ELD|1 +4 Claim the Firstborn|ELD +4 Fabled Passage|ELD|1 +4 Faerie Vandal|ELD +4 Fervent Champion|ELD|1 +4 Gingerbrute|ELD +4 Inquisitive Puppet|ELD +7 Island|ELD|3 +9 Mountain|ELD|4 +4 Redcap Melee|ELD +4 Robber of the Rich|ELD|2 +4 Stonecoil Serpent|ELD|1 \ No newline at end of file diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Steal from the Rich.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Steal from the Rich.dck new file mode 100755 index 00000000000..dfe6f1b3278 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Robber of the Rich - Steal from the Rich.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Robber of the Rich +Difficulty=hard +Description="Get in, loser, we're seizing the means of production!"\n-Karl Marx, Das Kapital +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Robber of the Rich - Steal from the Rich +[Main] +4 Barge In|ELD +2 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +4 Eye Collector|ELD +4 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +4 Gingerbrute|ELD +4 Inquisitive Puppet|ELD +7 Mountain|ELD|4 +4 Robber of the Rich|ELD|2 +4 Specter's Shriek|ELD +4 Stonecoil Serpent|ELD|1 +4 Stormfist Crusader|ELD|1 +7 Swamp|ELD|1 +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sacrifice.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sacrifice.dck new file mode 100755 index 00000000000..5bdfdba717f --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sacrifice.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Sacrifice +Difficulty=hard +Description=Nothing remains of his foes but the gripping story of their downfall. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Sacrifice +[Main] +4 Cauldron Familiar|ELD +4 Chittering Witch|ELD +4 Claim the Firstborn|ELD +4 Dwarven Mine|ELD +4 Elite Headhunter|ELD +4 Fabled Passage|ELD|1 +6 Mountain|ELD|3 +4 Opportunistic Dragon|ELD|1 +4 Piper of the Swarm|ELD|1 +4 Rankle, Master of Pranks|ELD|1 +4 Redcap Melee|ELD +4 Sorcerer's Broom|ELD +10 Swamp|ELD|4 +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shepherd of the Flock.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shepherd of the Flock.dck new file mode 100755 index 00000000000..cd6100707fc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shepherd of the Flock.dck @@ -0,0 +1,18 @@ +[metadata] +Title=Shepherd of the Flock +Difficulty=hard +Description=Not all heroes carry swords. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 3 Shepherd of the Flock +[Main] +4 Arcanist's Owl|ELD +4 Clockwork Servant|ELD +4 Enchanted Carriage|ELD +4 Faerie Guidemother|ELD|1 +2 Fortifying Provisions|ELD +4 Giant Killer|ELD|1 +4 Harmonious Archon|ELD|1 +4 Mysterious Pathlighter|ELD +26 Plains|ELD|2 +4 Shepherd of the Flock|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shimmer Dragon.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shimmer Dragon.dck new file mode 100755 index 00000000000..ba15c7bd561 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shimmer Dragon.dck @@ -0,0 +1,18 @@ +[metadata] +Title=Shimmer Dragon +Difficulty=hard +Description=The indigo dragon gladly traded a bit of its hoard for everlasting moonlight. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 3 Shimmer Dragon +[Main] +4 Arcanist's Owl|ELD +4 Clockwork Servant|ELD +4 Corridor Monitor|ELD +4 Heraldic Banner|ELD +24 Island|ELD|4 +4 Shambling Suit|ELD +4 Shimmer Dragon|ELD +4 Stonecoil Serpent|ELD|1 +4 Vantress Gargoyle|ELD|1 +4 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shinechaser.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shinechaser.dck new file mode 100755 index 00000000000..8064b0d5653 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Shinechaser.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Shinechaser +Difficulty=hard +Description="All that glitters is gold\nOnly shooting stars break the mold"\n-Smash Mouth, All Star +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Shinechaser +[Main] +4 All That Glitters|ELD +4 Arcanist's Owl|ELD +4 Fabled Passage|ELD|1 +4 Fortifying Provisions|ELD +4 Glass Casket|ELD|1 +4 Happily Ever After|ELD|1 +4 Heraldic Banner|ELD +10 Island|ELD|2 +4 Mirrormade|ELD|1 +10 Plains|ELD|4 +4 Shambling Suit|ELD +4 Shinechaser|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Knights.dck new file mode 100755 index 00000000000..acae388f7c8 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Knights.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Silverwing Squadron +Difficulty=hard +Description=Every Ardenvale aspirant must step through the flame. Their honor determines whether they burn or shine. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Silverwing Squadron - Knights +[Main] +4 Acclaimed Contender|ELD|1 +4 Castle Ardenvale|ELD|1 +2 Crashing Drawbridge|ELD +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +4 Heraldic Banner|ELD +4 Murderous Rider|ELD|1 +6 Plains|ELD|1 +4 Silverwing Squadron|ELD +8 Swamp|ELD|2 +4 Tournament Grounds|ELD +4 Venerable Knight|ELD +4 Wintermoor Commander|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Ramp.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Ramp.dck new file mode 100755 index 00000000000..d7408ed72d1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Ramp.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Silverwing Squadron +Difficulty=hard +Description=Go big or go home +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Silverwing Squadron - Ramp +[Main] +4 Acclaimed Contender|ELD|1 +4 Beanstalk Giant|ELD|1 +4 Castle Ardenvale|ELD|1 +2 Crashing Drawbridge|ELD +4 Fabled Passage|ELD|1 +12 Forest|ELD|3 +4 Heraldic Banner|ELD +8 Plains|ELD|1 +4 Realm-Cloaked Giant|ELD|1 +4 Rosethorn Acolyte|ELD|1 +4 Silverwing Squadron|ELD +2 Spinning Wheel|ELD +4 The Great Henge|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Swarm.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Swarm.dck new file mode 100755 index 00000000000..17908f229ee --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Silverwing Squadron - Swarm.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Silverwing Squadron +Difficulty=hard +Description=Quantity has a quality all its own. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 3 Silverwing Squadron - Swarm +[Main] +4 Acclaimed Contender|ELD|1 +4 Castle Ardenvale|ELD|1 +2 Crashing Drawbridge|ELD +4 Enchanted Carriage|ELD +4 Giant Killer|ELD|1 +2 Harmonious Archon|ELD|1 +4 Heraldic Banner|ELD +22 Plains|ELD|1 +4 Rally for the Throne|ELD +4 Silverwing Squadron|ELD +2 The Circle of Loyalty|ELD|1 +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Black.dck new file mode 100755 index 00000000000..9e14169eeb1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Black.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Sorcerer's Broom +Difficulty=hard +Description="Reynald wished for an army to sweep away his enemies. The fae king smiled."\n-Beyond the Great Henge +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 3 Sorcerer's Broom - Black +[Main] +2 Ayara, First of Locthwain|ELD|1 +4 Bake into a Pie|ELD +4 Cauldron Familiar|ELD +4 Chittering Witch|ELD +4 Fabled Passage|ELD|1 +4 Foreboding Fruit|ELD +2 Giant's Skewer|ELD +4 Golden Egg|ELD +4 Rankle, Master of Pranks|ELD|1 +4 Sorcerer's Broom|ELD +24 Swamp|ELD|3 +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Doom.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Doom.dck new file mode 100755 index 00000000000..b77523a81fe --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Doom.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Sorcerer's Broom +Difficulty=hard +Description="Maintain a firm grip on your broom or you will surely fall to your death."\n-Madam Rolanda Hooch, Harry Potter: Hogwarts Mystery +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Sorcerer's Broom - Doom +[Main] +4 Bake into a Pie|ELD +4 Cauldron Familiar|ELD +4 Chittering Witch|ELD +4 Doom Foretold|ELD|1 +4 Fabled Passage|ELD|1 +2 Fortifying Provisions|ELD +2 Giant's Skewer|ELD +4 Gingerbrute|ELD +4 Golden Egg|ELD +7 Plains|ELD|1 +4 Rankle, Master of Pranks|ELD|1 +4 Sorcerer's Broom|ELD +13 Swamp|ELD|3 +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Food.dck new file mode 100755 index 00000000000..0c9d2d7d94a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Sorcerer's Broom - Food.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Sorcerer's Broom +Difficulty=hard +Description="Gingerbread, gingerbread, gingerbread house / Gingerbread floor and gingerbread door\nThat's the gingerbread, that's the gingerbread, that's the gingerbread lock!"\n-Bobby Helms +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Sorcerer's Broom - Food +[Main] +4 Bake into a Pie|ELD +4 Cauldron Familiar|ELD +4 Fabled Passage|ELD|1 +8 Forest|ELD|1 +2 Giant's Skewer|ELD +4 Gilded Goose|ELD|1 +4 Gingerbread Cabin|ELD +4 Golden Egg|ELD +2 Rankle, Master of Pranks|ELD|1 +4 Savvy Hunter|ELD +4 Sorcerer's Broom|ELD +12 Swamp|ELD|3 +4 Trail of Crumbs|ELD +[Sideboard] +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Stormfist Crusader.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Stormfist Crusader.dck new file mode 100755 index 00000000000..07e89ae4a15 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Stormfist Crusader.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Stormfist Crusader +Difficulty=hard +Description="As she reached the pinnacle, lightning flashed and her eyes blazed with newfound power."\n-Legend of the Gilded Knights +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Stormfist Crusader +[Main] +4 Bloodhaze Wolverine|ELD +2 Castle Embereth|ELD|1 +4 Castle Locthwain|ELD|1 +4 Clackbridge Troll|ELD|1 +4 Fabled Passage|ELD|1 +4 Foreboding Fruit|ELD +4 Forever Young|ELD +4 Foulmire Knight|ELD|1 +4 Irencrag Pyromancer|ELD|1 +4 Mad Ratter|ELD +7 Mountain|ELD|2 +2 Rankle, Master of Pranks|ELD|1 +4 Stormfist Crusader|ELD|2 +9 Swamp|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah - Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah - Knights.dck new file mode 100755 index 00000000000..4f7fe0eed58 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah - Knights.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Syr Carah +Difficulty=hard +Description="Remember all the great heroes who were careful and never did anything risky? Me neither."\n-Syr Carah, the Bold +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Carah - Knights +[Main] +4 Bake into a Pie|ELD +4 Blacklance Paragon|ELD|1 +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +10 Mountain|ELD|1 +4 Murderous Rider|ELD|1 +4 Scorching Dragonfire|ELD +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +10 Swamp|ELD|2 +4 Syr Carah, the Bold|ELD +4 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah, the Bold - Rogues.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah, the Bold - Rogues.dck new file mode 100755 index 00000000000..2149c5f02ba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah, the Bold - Rogues.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Syr Carah, the Bold +Difficulty=hard +Description=History may be written by the triumphant, but it's often rewritten by the troublesome. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Carah, the Bold - Rogues +[Main] +4 Brazen Borrower|ELD|1 +4 Fabled Passage|ELD|1 +4 Faerie Vandal|ELD +8 Island|ELD|2 +12 Mountain|ELD|1 +2 Mystic Sanctuary|ELD +4 Opt|ELD +4 Scorching Dragonfire|ELD +4 Searing Barrage|ELD +4 Slaying Fire|ELD|1 +4 Syr Carah, the Bold|ELD +2 Torbran, Thane of Red Fell|ELD|1 +4 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah, the Bold - The Loch.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah, the Bold - The Loch.dck new file mode 100755 index 00000000000..b6afd0e7afe --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Carah, the Bold - The Loch.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Syr Carah, the Bold +Difficulty=hard +Description=It emerged from the coldest depths of Lochmere only to face the fires of Irencrag. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Carah, the Bold - The Loch +[Main] +4 Bake into a Pie|ELD +4 Brazen Borrower|ELD|1 +4 Drown in the Loch|ELD +4 Fabled Passage|ELD|1 +8 Island|ELD|2 +4 Lochmere Serpent|ELD|1 +8 Mountain|ELD|1 +4 Murderous Rider|ELD|1 +4 Opt|ELD +4 Scorching Dragonfire|ELD +8 Swamp|ELD|2 +4 Syr Carah, the Bold|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Faren, the Hengehammer.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Faren, the Hengehammer.dck new file mode 100755 index 00000000000..25eff2ff667 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Faren, the Hengehammer.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Syr Faren, the Hengehammer +Difficulty=hard +Description="Stop, Hammer time!"\n-MC Hammer, U Can't Touch This +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Faren, the Hengehammer +[Main] +4 Acclaimed Contender|ELD|1 +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +14 Forest|ELD|4 +4 Giant Killer|ELD|1 +1 Harmonious Archon|ELD|1 +4 Outmuscle|ELD +8 Plains|ELD|1 +1 Questing Beast|ELD|1 +4 Syr Faren, the Hengehammer|ELD +4 Tall as a Beanstalk|ELD +4 The Great Henge|ELD|1 +4 Tuinvale Treefolk|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Discard.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Discard.dck new file mode 100755 index 00000000000..2a20bd7803c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Discard.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Syr Konrad, the Grim +Difficulty=hard +Description="Humans are so forgetful. Every page I steal becomes a secret they can't remember." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Konrad, the Grim - Discard +[Main] +4 Drown in the Loch|ELD +4 Fabled Passage|ELD|1 +4 Improbable Alliance|ELD|1 +8 Island|ELD|2 +4 Mad Ratter|ELD +7 Mountain|ELD|4 +4 Sage of the Falls|ELD +4 Stormfist Crusader|ELD|1 +7 Swamp|ELD|2 +4 Syr Konrad, the Grim|ELD +2 The Royal Scions|ELD|1 +4 Tome Raider|ELD +4 Vantress Gargoyle|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Food.dck new file mode 100755 index 00000000000..c283a3d260c --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Food.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Syr Konrad, the Grim +Difficulty=hard +Description=Then Death led him into an underground cavern. There the physician saw how thousands and thousands of candles were burning in endless rows, some large, others small. "See," said Death, "these are the life-lights of mankind." "Show me my life-light," said the physician, thinking that it still would be very large. Death pointed to a little stump that was just threatening to go out, and said, "See, there it is."\n-Godfather Death, the Brothers Grimm. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Konrad, the Grim - Food +[Main] +4 Cauldron Familiar|ELD +2 Chittering Witch|ELD +4 Fabled Passage|ELD|1 +4 Forest|ELD|1 +4 Gilded Goose|ELD|1 +2 Island|ELD|3 +4 Oko, Thief of Crowns|ELD|1 +2 Rankle, Master of Pranks|ELD|1 +4 Sage of the Falls|ELD +4 Sorcerer's Broom|ELD +12 Swamp|ELD|2 +4 Syr Konrad, the Grim|ELD +4 Taste of Death|ELD +4 Thornwood Falls|ELD +2 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Ramp.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Ramp.dck new file mode 100755 index 00000000000..7f5f95e7628 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Syr Konrad, the Grim - Ramp.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Syr Konrad, the Grim +Difficulty=hard +Description="Old battlefields make great gardens. So rich from the blood of the fallen." +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Syr Konrad, the Grim - Ramp +[Main] +4 Beanstalk Giant|ELD|1 +4 Fabled Passage|ELD|1 +12 Forest|ELD|1 +4 Garruk, Cursed Huntsman|ELD|1 +4 Heraldic Banner|ELD +4 Rosethorn Acolyte|ELD|1 +4 Spinning Wheel|ELD +12 Swamp|ELD|2 +4 Syr Konrad, the Grim|ELD +4 Taste of Death|ELD +2 The Great Henge|ELD|1 +2 Wolf's Quarry|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Thunderous Snapper.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Thunderous Snapper.dck new file mode 100755 index 00000000000..9a6013e9cc2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Thunderous Snapper.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Thunderous Snapper +Difficulty=hard +Description=While humans hear only a deafening roar, the fae hear music of breathtaking beauty. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Thunderous Snapper +[Main] +4 Beanstalk Giant|ELD|1 +4 Fabled Passage|ELD|1 +4 Faerie Formation|ELD +9 Forest|ELD|1 +4 Gadwick, the Wizened|ELD|1 +9 Island|ELD|3 +4 Maraleaf Pixie|ELD +4 Steelbane Hydra|ELD +4 Stonecoil Serpent|ELD|1 +2 Syr Elenora, the Discerning|ELD +4 The Great Henge|ELD|1 +4 Thornwood Falls|ELD +4 Thunderous Snapper|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Walkers.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Walkers.dck new file mode 100755 index 00000000000..b3a1a07a345 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 3 Walkers.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Walkers +Difficulty=hard +Description="All truly great thoughts are conceived by planeswalking."\n-Friedrich Nietzsche +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 3 Walkers +[Main] +4 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +2 Forest|ELD|1 +4 Garruk, Cursed Huntsman|ELD|2 +2 Island|ELD|4 +7 Mountain|ELD|4 +1 Oko, the Trickster|ELD +4 Oko, Thief of Crowns|ELD|2 +2 Rowan, Fearless Sparkmage|ELD +4 Scorching Dragonfire|ELD +4 Spinning Wheel|ELD +8 Swamp|ELD|3 +4 Taste of Death|ELD +4 The Royal Scions|ELD|2 +4 Thornwood Falls|ELD +2 Witch's Vengeance|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Blue-Red Tempo.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Blue-Red Tempo.dck new file mode 100755 index 00000000000..08f82dacd4d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Blue-Red Tempo.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Blue-Red Tempo +Difficulty=very hard +Description=This deck attempts to keep you off-balance. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Blue-Red Tempo +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brazen Borrower|ELD|1 +1 Embercleave|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +4 Fervent Champion|ELD|1 +7 Island|ELD|2 +9 Mountain|ELD|4 +4 Rimrock Knight|ELD|1 +4 Robber of the Rich|ELD|1 +4 Scorching Dragonfire|ELD +4 Slaying Fire|ELD|1 +1 The Royal Scions|ELD|1 +4 Vantress Gargoyle|ELD|1 +[Sideboard] +4 Turn into a Pumpkin|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Adventure Control.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Adventure Control.dck new file mode 100755 index 00000000000..0b67b63715a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Adventure Control.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Adventure Control +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Adventure Control +[Main] +4 Beanstalk Giant|ELD|1 +1 Castle Locthwain|ELD|1 +4 Doom Foretold|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +6 Forest|ELD|1 +4 Foulmire Knight|ELD|1 +3 Lucky Clover|ELD +4 Murderous Rider|ELD|1 +1 Once Upon a Time|ELD|1 +3 Order of Midnight|ELD|1 +4 Plains|ELD|1 +4 Shepherd of the Flock|ELD|1 +4 Smitten Swordmaster|ELD|1 +6 Swamp|ELD|1 +[Sideboard] +1 Forest|ELD|1 +1 Lucky Clover|ELD +2 Sorcerous Spyglass|ELD|1 +1 The Great Henge|ELD|1 +2 Wishclaw Talisman|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Aristocrats.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Aristocrats.dck new file mode 100755 index 00000000000..de6cd49a7f1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Aristocrats.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Aristocrats +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Aristocrats +[Main] +4 Ayara, First of Locthwain|ELD|1 +4 Blacklance Paragon|ELD|1 +4 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +2 Clackbridge Troll|ELD|1 +2 Epic Downfall|ELD +2 Forever Young|ELD +4 Murderous Rider|ELD|1 +4 Order of Midnight|ELD|1 +4 Rankle, Master of Pranks|ELD|1 +2 Reave Soul|ELD +16 Swamp|ELD|2 +2 Syr Konrad, the Grim|ELD +1 Witch's Cottage|ELD +[Sideboard] +1 Swamp|ELD|2 +4 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Artifacts.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Artifacts.dck new file mode 100755 index 00000000000..ddfc7543a2e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Artifacts.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Artifacts +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Artifacts +[Main] +4 All That Glitters|ELD +4 Arcanist's Owl|ELD +2 Brazen Borrower|ELD|1 +2 Castle Ardenvale|ELD|1 +2 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +2 Giant Killer|ELD|1 +4 Gingerbrute|ELD +2 Glass Casket|ELD|1 +4 Inquisitive Puppet|ELD +7 Island|ELD|1 +4 Locthwain Gargoyle|ELD +10 Plains|ELD|1 +4 Shambling Suit|ELD +4 Stonecoil Serpent|ELD|1 +[Sideboard] +1 Dance of the Manse|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black is Back, again.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black is Back, again.dck new file mode 100755 index 00000000000..8762e0b2b95 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black is Back, again.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Black is Back, again +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Black is Back, again +[Main] +4 Ayara, First of Locthwain|ELD|1 +4 Castle Locthwain|ELD|1 +4 Cauldron Familiar|ELD +1 Clackbridge Troll|ELD|1 +4 Deathless Knight|ELD +2 Epic Downfall|ELD +4 Foreboding Fruit|ELD +4 Murderous Rider|ELD|1 +4 Rankle, Master of Pranks|ELD|1 +4 Revenge of Ravens|ELD +14 Swamp|ELD|1 +4 Tempting Witch|ELD +4 Witch's Cottage|ELD +1 Witch's Vengeance|ELD|1 +[Sideboard] +2 Witch's Oven|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Green Adventures.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Green Adventures.dck new file mode 100755 index 00000000000..9dba95e6f73 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Green Adventures.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Black-Green Adventures +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Black-Green Adventures +[Main] +2 Beanstalk Giant|ELD|1 +4 Blacklance Paragon|ELD|1 +2 Castle Locthwain|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +7 Forest|ELD|2 +4 Foulmire Knight|ELD|1 +4 Lovestruck Beast|ELD|1 +2 Lucky Clover|ELD +4 Murderous Rider|ELD|1 +4 Order of Midnight|ELD|1 +3 Questing Beast|ELD|1 +2 Rankle, Master of Pranks|ELD|1 +4 Smitten Swordmaster|ELD|1 +8 Swamp|ELD|4 +2 The Great Henge|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Green-Blue Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Green-Blue Food.dck new file mode 100755 index 00000000000..32f0ea52bcd --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Green-Blue Food.dck @@ -0,0 +1,27 @@ +[metadata] +Title=Black-Green-Blue Food +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Black-Green-Blue Food +[Main] +4 Deathless Knight|ELD +4 Fabled Passage|ELD|1 +3 Feasting Troll King|ELD|1 +12 Forest|ELD|1 +4 Gilded Goose|ELD|1 +2 Gingerbread Cabin|ELD +2 Island|ELD|3 +4 Lovestruck Beast|ELD|1 +4 Oko, Thief of Crowns|ELD|1 +4 Once Upon a Time|ELD|1 +3 Questing Beast|ELD|1 +4 Savvy Hunter|ELD +2 Swamp|ELD|3 +2 The Great Henge|ELD|1 +1 Trail of Crumbs|ELD +[Sideboard] +3 Castle Garenbrig|ELD|1 +1 Forest|ELD|1 +4 Wicked Wolf|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Red Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Red Aggro.dck new file mode 100755 index 00000000000..ed3c93f7dff --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Black-Red Aggro.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Black-Red Aggro +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Black-Red Aggro +[Main] +4 Blacklance Paragon|ELD|1 +3 Bonecrusher Giant|ELD|1 +2 Castle Embereth|ELD|1 +2 Castle Locthwain|ELD|1 +3 Embercleave|ELD|1 +2 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +6 Mountain|ELD|3 +4 Murderous Rider|ELD|1 +4 Order of Midnight|ELD|1 +4 Rimrock Knight|ELD|1 +4 Smitten Swordmaster|ELD|1 +4 Steelclaw Lance|ELD +4 Stormfist Crusader|ELD|1 +6 Swamp|ELD|1 +4 Tournament Grounds|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Blue-Black Midrange.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Blue-Black Midrange.dck new file mode 100755 index 00000000000..7dd49dbfe01 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Blue-Black Midrange.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Blue-Black Midrange +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Blue-Black Midrange +[Main] +3 Brazen Borrower|ELD|1 +1 Castle Locthwain|ELD|1 +3 Didn't Say Please|ELD +4 Drown in the Loch|ELD +4 Fabled Passage|ELD|1 +1 Gadwick, the Wizened|ELD|1 +3 Into the Story|ELD +11 Island|ELD|4 +1 Lochmere Serpent|ELD|1 +4 Murderous Rider|ELD|1 +4 Opt|ELD +4 Overwhelmed Apprentice|ELD +3 Rankle, Master of Pranks|ELD|1 +9 Swamp|ELD|3 +4 Vantress Gargoyle|ELD|1 +[Sideboard] +2 Castle Vantress|ELD|1 +1 Covetous Urge|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Green-Blue Food.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Green-Blue Food.dck new file mode 100755 index 00000000000..e727f5374f1 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Green-Blue Food.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Green-Blue Food +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Green-Blue Food +[Main] +2 Beanstalk Giant|ELD|1 +4 Brazen Borrower|ELD|1 +4 Fabled Passage|ELD|1 +11 Forest|ELD|1 +4 Gilded Goose|ELD|1 +8 Island|ELD|3 +4 Lovestruck Beast|ELD|1 +4 Maraleaf Pixie|ELD +4 Oko, Thief of Crowns|ELD|1 +4 Once Upon a Time|ELD|1 +4 Questing Beast|ELD|1 +2 The Great Henge|ELD|1 +[Sideboard] +2 Castle Garenbrig|ELD|1 +1 Forest|ELD|1 +4 Wicked Wolf|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Mono-Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Mono-Blue.dck new file mode 100755 index 00000000000..bb0598ac397 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Mono-Blue.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Mono-Blue +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Mono-Blue +[Main] +4 Brazen Borrower|ELD|1 +4 Didn't Say Please|ELD +3 Fae of Wishes|ELD|1 +1 Gadwick, the Wizened|ELD|1 +18 Island|ELD|1 +4 Merfolk Secretkeeper|ELD|1 +4 Overwhelmed Apprentice|ELD +3 Queen of Ice|ELD|1 +4 So Tiny|ELD +3 Turn into a Pumpkin|ELD +4 Vantress Gargoyle|ELD|1 +[Sideboard] +3 Frogify|ELD +1 Gadwick, the Wizened|ELD|1 +2 Into the Story|ELD +1 Lucky Clover|ELD +1 Stonecoil Serpent|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Oko Power.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Oko Power.dck new file mode 100755 index 00000000000..b873685c17e --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Oko Power.dck @@ -0,0 +1,29 @@ +[metadata] +Title=Oko Power +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Oko Power +[Main] +2 Beanstalk Giant|ELD|1 +1 Deathless Knight|ELD +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +2 Feasting Troll King|ELD|1 +10 Forest|ELD|1 +4 Gilded Goose|ELD|1 +4 Golden Egg|ELD +1 Heraldic Banner|ELD +1 Improbable Alliance|ELD|1 +3 Island|ELD|3 +2 Lovestruck Beast|ELD|1 +1 Mountain|ELD|3 +4 Oko, Thief of Crowns|ELD|1 +4 Once Upon a Time|ELD|1 +3 Questing Beast|ELD|1 +1 The Royal Scions|ELD|1 +4 Thornwood Falls|ELD +[Sideboard] +1 Forest|ELD|1 +4 Wicked Wolf|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Pyromancer.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Pyromancer.dck new file mode 100755 index 00000000000..5d8385708f6 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Pyromancer.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Pyromancer +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Pyromancer +[Main] +4 Bonecrusher Giant|ELD|1 +4 Brazen Borrower|ELD|1 +2 Castle Embereth|ELD|1 +4 Fabled Passage|ELD|1 +4 Improbable Alliance|ELD|1 +4 Irencrag Pyromancer|ELD|1 +11 Island|ELD|4 +4 Merchant of the Vale|ELD|1 +7 Mountain|ELD|3 +1 Mystic Sanctuary|ELD +4 Opt|ELD +1 Scorching Dragonfire|ELD +4 The Royal Scions|ELD|1 +4 Thrill of Possibility|ELD +2 Witching Well|ELD +[Sideboard] +2 Castle Vantress|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red Aggro.dck new file mode 100755 index 00000000000..86c2a76827b --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red Aggro.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Red Aggro +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Red Aggro +[Main] +4 Bonecrusher Giant|ELD|1 +4 Castle Embereth|ELD|1 +2 Claim the Firstborn|ELD +3 Embercleave|ELD|1 +4 Fervent Champion|ELD|1 +4 Gingerbrute|ELD +17 Mountain|ELD|4 +4 Rimrock Knight|ELD|1 +4 Robber of the Rich|ELD|1 +2 Scorching Dragonfire|ELD +4 Slaying Fire|ELD|1 +4 Torbran, Thane of Red Fell|ELD|1 +4 Weaselback Redcap|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red-Green Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red-Green Aggro.dck new file mode 100755 index 00000000000..16e2d791198 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red-Green Aggro.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Red-Green Aggro +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Red-Green Aggro +[Main] +4 Bonecrusher Giant|ELD|1 +2 Castle Embereth|ELD|1 +2 Embercleave|ELD|1 +1 Escape to the Wilds|ELD|1 +12 Forest|ELD|4 +4 Grumgully, the Generous|ELD +4 Lovestruck Beast|ELD|1 +9 Mountain|ELD|2 +4 Once Upon a Time|ELD|1 +2 Opportunistic Dragon|ELD|1 +4 Questing Beast|ELD|1 +4 Robber of the Rich|ELD|1 +2 Scorching Dragonfire|ELD +2 The Great Henge|ELD|1 +4 Wildwood Tracker|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red-White Knights.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red-White Knights.dck new file mode 100755 index 00000000000..7e77e531dc4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Red-White Knights.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Red-White Knights +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Red-White Knights +[Main] +4 Acclaimed Contender|ELD|1 +2 Castle Ardenvale|ELD|1 +2 Castle Embereth|ELD|1 +3 Embercleave|ELD|1 +2 Fabled Passage|ELD|1 +4 Fervent Champion|ELD|1 +4 Inspiring Veteran|ELD|1 +3 Joust|ELD +5 Mountain|ELD|1 +7 Plains|ELD|1 +4 Rimrock Knight|ELD|1 +2 Scorching Dragonfire|ELD +2 The Circle of Loyalty|ELD|1 +4 Tournament Grounds|ELD +4 Venerable Knight|ELD +4 Weaselback Redcap|ELD +4 Worthy Knight|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Stompy.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Stompy.dck new file mode 100755 index 00000000000..f70aab45b43 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Stompy.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Stompy +Difficulty=very hard +Description=Played in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Stompy +[Main] +3 Feasting Troll King|ELD|1 +23 Forest|ELD|4 +4 Gilded Goose|ELD|1 +4 Lovestruck Beast|ELD|1 +3 Questing Beast|ELD|1 +1 Return of the Wildspeaker|ELD|1 +3 Rosethorn Halberd|ELD +3 Syr Faren, the Hengehammer|ELD +2 The Great Henge|ELD|1 +2 Wildborn Preserver|ELD|1 +4 Wildwood Tracker|ELD +3 Yorvo, Lord of Garenbrig|ELD|1 +[Sideboard] +4 Castle Garenbrig|ELD|1 +1 Forest|ELD|4 +4 Wicked Wolf|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Wishboard Ramp (by Kharlis).dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Wishboard Ramp (by Kharlis).dck new file mode 100755 index 00000000000..c410f5b0445 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Constructed Wishboard Ramp (by Kharlis).dck @@ -0,0 +1,27 @@ +[metadata] +Title=Wishboard Ramp +Difficulty=very hard +Description=Played by Kharlis in the Eldraine Constructed Event, 19 October 2019. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Constructed: Wishboard Ramp (by Kharlis) +[Main] +4 Beanstalk Giant|ELD|1 +2 Brazen Borrower|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +3 Fae of Wishes|ELD|1 +2 Flaxen Intruder|ELD|1 +6 Forest|ELD|3 +3 Gadwick, the Wizened|ELD|1 +3 Gilded Goose|ELD|1 +7 Island|ELD|2 +3 Lovestruck Beast|ELD|1 +4 Lucky Clover|ELD +4 Oko, Thief of Crowns|ELD|1 +3 Once Upon a Time|ELD|1 +1 Swamp|ELD|2 +4 Thornwood Falls|ELD +[Sideboard] +1 Garruk, Cursed Huntsman|ELD|1 +2 Once and Future|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Giant Control.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Giant Control.dck new file mode 100755 index 00000000000..a77effe731a --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Giant Control.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Giant Control +Difficulty=very hard +Description=This deck tries to sweep the board and overpower you with giants. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Giant Control +[Main] +4 Beanstalk Giant|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +12 Forest|ELD|1 +4 Giant Killer|ELD|1 +1 Kenrith, the Returned King|ELD +4 Lovestruck Beast|ELD|1 +8 Plains|ELD|4 +2 Questing Beast|ELD|1 +4 Realm-Cloaked Giant|ELD|1 +4 Rosethorn Acolyte|ELD|1 +4 Spinning Wheel|ELD +1 The Circle of Loyalty|ELD|1 +2 The Great Henge|ELD|1 +[Sideboard] + diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Green-White Adventures.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Green-White Adventures.dck new file mode 100755 index 00000000000..0fc9bc257ea --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Green-White Adventures.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Green-White Adventures +Difficulty=very hard +Description=This deck tries to gain incremental advantage with adventures. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Green-White Adventures +[Main] +4 Beanstalk Giant|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Edgewall Innkeeper|ELD +4 Fabled Passage|ELD|1 +4 Faerie Guidemother|ELD|1 +11 Forest|ELD|1 +4 Giant Killer|ELD|1 +2 Harmonious Archon|ELD|1 +4 Lovestruck Beast|ELD|1 +4 Lucky Clover|ELD +9 Plains|ELD|4 +2 Questing Beast|ELD|1 +4 Silverflame Squire|ELD|1 +2 The Great Henge|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Black Aggro.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Black Aggro.dck new file mode 100755 index 00000000000..a553e4a48be --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Black Aggro.dck @@ -0,0 +1,19 @@ +[metadata] +Title=Mono-Black Aggro +Difficulty=very hard +Description=This deck tries to kill you quickly with small black creatures. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 4 Mono-Black Aggro +[Main] +4 Belle of the Brawl|ELD +4 Epic Downfall|ELD +4 Eye Collector|ELD +4 Foulmire Knight|ELD|1 +1 Giant's Skewer|ELD +4 Heraldic Banner|ELD +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +4 Order of Midnight|ELD|1 +4 Stonecoil Serpent|ELD|1 +23 Swamp|ELD|3 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Black Midrange.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Black Midrange.dck new file mode 100755 index 00000000000..885eb2076af --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Black Midrange.dck @@ -0,0 +1,20 @@ +[metadata] +Title=Mono-Black Aggro +Difficulty=very hard +Description="Back in black, I hit the sack\nI've been too long, I'm glad to be back"\n-Back in Black, AC/DC +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 4 Mono-Black Midrange +[Main] +2 Ayara, First of Locthwain|ELD|1 +4 Bake into a Pie|ELD +2 Castle Locthwain|ELD|1 +4 Clackbridge Troll|ELD|1 +3 Deathless Knight|ELD +4 Epic Downfall|ELD +4 Foulmire Knight|ELD|1 +4 Murderous Rider|ELD|1 +4 Oathsworn Knight|ELD|1 +4 Piper of the Swarm|ELD|1 +24 Swamp|ELD|2 +1 Syr Konrad, the Grim|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Blue.dck new file mode 100755 index 00000000000..b543a6ff514 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Mono-Blue.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Mono-Blue +Difficulty=very hard +Description=Blue cheese or bleu cheese is cheese made with cultures of the mold Penicillium, giving it spots or veins of the mold throughout the cheese, which can vary in color through various shades of blue and green. This carries a distinct smell, either from that or various specially cultivated bacteria. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 4 Mono-Blue +[Main] +4 Arcanist's Owl|ELD +4 Brazen Borrower|ELD|1 +3 Charmed Sleep|ELD +3 Didn't Say Please|ELD +4 Fae of Wishes|ELD|1 +2 Faerie Formation|ELD +3 Gadwick, the Wizened|ELD|1 +4 Hypnotic Sprite|ELD|1 +26 Island|ELD|1 +4 Vantress Gargoyle|ELD|1 +3 Witching Well|ELD +[Sideboard] +1 Charmed Sleep|ELD +1 Didn't Say Please|ELD +1 Turn into a Pumpkin|ELD +1 Witching Well|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 101 White.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 101 White.dck new file mode 100755 index 00000000000..c70ffb79bab --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 101 White.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Paint-by-Numbers: Mono-White +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling White.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 101 White +[Main] +4 Acclaimed Contender|ELD|2 +3 Arcanist's Owl|ELD +4 Archon of Absolution|ELD +4 Castle Ardenvale|ELD|2 +2 Clockwork Servant|ELD +4 Giant Killer|ELD|2 +2 Harmonious Archon|ELD|2 +4 Idyllic Grange|ELD +4 Mysterious Pathlighter|ELD +18 Plains|ELD|1 +3 Realm-Cloaked Giant|ELD|2 +3 Stonecoil Serpent|ELD|2 +2 The Circle of Loyalty|ELD|2 +3 Worthy Knight|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 102 Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 102 Blue.dck new file mode 100755 index 00000000000..16dfbce4d25 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 102 Blue.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Paint-by-Numbers: Mono-Blue +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Blue.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 102 Blue +[Main] +4 Arcanist's Owl|ELD +4 Brazen Borrower|ELD|2 +4 Castle Vantress|ELD|2 +4 Charmed Sleep|ELD +2 Clockwork Servant|ELD +1 Fae of Wishes|ELD|2 +4 Faerie Vandal|ELD +3 Gadwick, the Wizened|ELD|2 +18 Island|ELD|2 +4 Mystic Sanctuary|ELD +3 Stonecoil Serpent|ELD|2 +2 Syr Elenora, the Discerning|ELD +3 Thunderous Snapper|ELD +4 Vantress Gargoyle|ELD|2 +[Sideboard] +4 Enchanted Carriage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 103 Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 103 Black.dck new file mode 100755 index 00000000000..2dba8200642 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 103 Black.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Paint-by-Numbers: Mono-Black +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Black.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 103 Black +[Main] +4 Bake into a Pie|ELD +4 Castle Locthwain|ELD|2 +3 Clackbridge Troll|ELD|2 +4 Epic Downfall|ELD +3 Foulmire Knight|ELD|2 +4 Murderous Rider|ELD|2 +4 Oathsworn Knight|ELD|2 +3 Piper of the Swarm|ELD|2 +3 Rankle, Master of Pranks|ELD|2 +2 Resolute Rider|ELD +2 Stonecoil Serpent|ELD|2 +18 Swamp|ELD|2 +4 Witch's Cottage|ELD +2 Witch's Vengeance|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 104 Red.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 104 Red.dck new file mode 100755 index 00000000000..2e4340e1377 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 104 Red.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Paint-by-Numbers: Mono-Red +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 104 Red +[Main] +4 Bonecrusher Giant|ELD|2 +4 Castle Embereth|ELD|2 +4 Dwarven Mine|ELD +3 Embercleave|ELD|2 +2 Merchant of the Vale|ELD|2 +18 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|2 +2 Rampart Smasher|ELD +4 Robber of the Rich|ELD|2 +3 Scorching Dragonfire|ELD +4 Slaying Fire|ELD|1 +4 Stonecoil Serpent|ELD|2 +1 Syr Carah, the Bold|ELD +3 Torbran, Thane of Red Fell|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 105 Green.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 105 Green.dck new file mode 100755 index 00000000000..b62085859b4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 105 Green.dck @@ -0,0 +1,22 @@ +[metadata] +Title=Paint-by-Numbers: Mono-Green +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 105 Green +[Main] +3 Beanstalk Giant|ELD|2 +1 Edgewall Innkeeper|ELD +2 Feasting Troll King|ELD|2 +4 Fierce Witchstalker|ELD +22 Forest|ELD|3 +4 Gingerbread Cabin|ELD +2 Keeper of Fables|ELD +4 Lovestruck Beast|ELD|2 +3 Questing Beast|ELD|2 +4 Stonecoil Serpent|ELD|2 +1 Syr Faren, the Hengehammer|ELD +3 The Great Henge|ELD|2 +4 Wildborn Preserver|ELD|2 +3 Yorvo, Lord of Garenbrig|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 201 White-Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 201 White-Blue.dck new file mode 100755 index 00000000000..f4ad8402aa4 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 201 White-Blue.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Paint-by-Numbers: White-Blue +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 201 White-Blue +[Main] +3 Arcanist's Owl|ELD +4 Archon of Absolution|ELD +4 Brazen Borrower|ELD|2 +2 Castle Ardenvale|ELD|2 +2 Castle Vantress|ELD|2 +2 Charmed Sleep|ELD +2 Gadwick, the Wizened|ELD|2 +4 Giant Killer|ELD|2 +2 Harmonious Archon|ELD|2 +11 Island|ELD|2 +2 Mysterious Pathlighter|ELD +11 Plains|ELD|1 +2 Realm-Cloaked Giant|ELD|2 +4 Stonecoil Serpent|ELD|2 +1 Syr Elenora, the Discerning|ELD +4 Vantress Gargoyle|ELD|2 +[Sideboard] +4 Enchanted Carriage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 202 White-Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 202 White-Black.dck new file mode 100755 index 00000000000..8241a3b3cba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 202 White-Black.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Paint-by-Numbers: White-Black +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 202 White-Black +[Main] +4 Acclaimed Contender|ELD|2 +2 Archon of Absolution|ELD +4 Bake into a Pie|ELD +2 Castle Ardenvale|ELD|2 +2 Castle Locthwain|ELD|2 +1 Clackbridge Troll|ELD|2 +4 Epic Downfall|ELD +4 Giant Killer|ELD|2 +2 Harmonious Archon|ELD|2 +4 Murderous Rider|ELD|2 +11 Plains|ELD|1 +2 Rankle, Master of Pranks|ELD|2 +2 Realm-Cloaked Giant|ELD|2 +4 Stonecoil Serpent|ELD|2 +11 Swamp|ELD|2 +1 The Circle of Loyalty|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 203 Blue-Black.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 203 Blue-Black.dck new file mode 100755 index 00000000000..ffd12f09114 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 203 Blue-Black.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Paint-by-Numbers: Blue-Black +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 203 Blue-Black +[Main] +2 Bake into a Pie|ELD +4 Brazen Borrower|ELD|2 +2 Castle Locthwain|ELD|2 +2 Castle Vantress|ELD|2 +1 Charmed Sleep|ELD +3 Clackbridge Troll|ELD|2 +3 Epic Downfall|ELD +3 Fae of Wishes|ELD|2 +2 Gadwick, the Wizened|ELD|2 +11 Island|ELD|2 +2 Lochmere Serpent|ELD|2 +4 Murderous Rider|ELD|2 +2 Rankle, Master of Pranks|ELD|2 +4 Stonecoil Serpent|ELD|2 +11 Swamp|ELD|2 +4 Vantress Gargoyle|ELD|2 +[Sideboard] +4 Enchanted Carriage|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 204 Blue-Red.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 204 Blue-Red.dck new file mode 100755 index 00000000000..1c5ca744b5d --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 204 Blue-Red.dck @@ -0,0 +1,26 @@ +[metadata] +Title=Paint-by-Numbers: Blue-Red +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 204 Blue-Red +[Main] +4 Bonecrusher Giant|ELD|2 +4 Brazen Borrower|ELD|2 +2 Castle Embereth|ELD|2 +2 Castle Vantress|ELD|2 +2 Embercleave|ELD|2 +3 Fae of Wishes|ELD|2 +2 Gadwick, the Wizened|ELD|2 +11 Island|ELD|2 +11 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|2 +3 Robber of the Rich|ELD|2 +4 Stonecoil Serpent|ELD|2 +1 Syr Elenora, the Discerning|ELD +2 The Royal Scions|ELD|2 +1 Torbran, Thane of Red Fell|ELD|2 +4 Vantress Gargoyle|ELD|2 +[Sideboard] +4 Charmed Sleep|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 205 Black-Red.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 205 Black-Red.dck new file mode 100755 index 00000000000..12465ae1b61 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 205 Black-Red.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Paint-by-Numbers: Black-Red +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 205 Black-Red +[Main] +2 Bake into a Pie|ELD +4 Bonecrusher Giant|ELD|2 +2 Castle Embereth|ELD|2 +2 Castle Locthwain|ELD|2 +3 Clackbridge Troll|ELD|2 +2 Embercleave|ELD|2 +4 Epic Downfall|ELD +11 Mountain|ELD|4 +4 Murderous Rider|ELD|2 +4 Opportunistic Dragon|ELD|2 +2 Rankle, Master of Pranks|ELD|2 +3 Robber of the Rich|ELD|2 +1 Slaying Fire|ELD|1 +4 Stonecoil Serpent|ELD|2 +11 Swamp|ELD|2 +1 Torbran, Thane of Red Fell|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 206 Black-Green.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 206 Black-Green.dck new file mode 100755 index 00000000000..8a20e020aba --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 206 Black-Green.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Paint-by-Numbers: Black-Green +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 206 Black-Green +[Main] +3 Bake into a Pie|ELD +2 Castle Locthwain|ELD|2 +2 Clackbridge Troll|ELD|2 +3 Epic Downfall|ELD +13 Forest|ELD|3 +2 Garruk, Cursed Huntsman|ELD|2 +4 Lovestruck Beast|ELD|2 +4 Murderous Rider|ELD|2 +3 Questing Beast|ELD|2 +2 Rankle, Master of Pranks|ELD|2 +4 Stonecoil Serpent|ELD|2 +11 Swamp|ELD|2 +2 The Great Henge|ELD|2 +4 Wildborn Preserver|ELD|2 +1 Yorvo, Lord of Garenbrig|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 207 Red-Green.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 207 Red-Green.dck new file mode 100755 index 00000000000..81b15725253 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 207 Red-Green.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Paint-by-Numbers: Red-Green +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 207 Red-Green +[Main] +4 Bonecrusher Giant|ELD|2 +2 Castle Embereth|ELD|2 +2 Embercleave|ELD|2 +2 Feasting Troll King|ELD|2 +13 Forest|ELD|3 +1 Keeper of Fables|ELD +4 Lovestruck Beast|ELD|2 +11 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|2 +2 Questing Beast|ELD|2 +3 Robber of the Rich|ELD|2 +1 Slaying Fire|ELD|1 +4 Stonecoil Serpent|ELD|2 +2 The Great Henge|ELD|2 +1 Torbran, Thane of Red Fell|ELD|2 +4 Wildborn Preserver|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 208 Red-White.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 208 Red-White.dck new file mode 100755 index 00000000000..4a2faabbaea --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 208 Red-White.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Paint-by-Numbers: Red-White +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 208 Red-White +[Main] +4 Bonecrusher Giant|ELD|2 +2 Castle Ardenvale|ELD|2 +2 Castle Embereth|ELD|2 +2 Embercleave|ELD|2 +4 Giant Killer|ELD|2 +1 Glass Casket|ELD|1 +2 Harmonious Archon|ELD|2 +11 Mountain|ELD|4 +3 Mysterious Pathlighter|ELD +4 Opportunistic Dragon|ELD|2 +3 Outlaws' Merriment|ELD|2 +11 Plains|ELD|1 +2 Realm-Cloaked Giant|ELD|2 +4 Robber of the Rich|ELD|2 +4 Stonecoil Serpent|ELD|2 +1 The Circle of Loyalty|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 209 Green-White.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 209 Green-White.dck new file mode 100755 index 00000000000..2d4ec22c7f2 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 209 Green-White.dck @@ -0,0 +1,23 @@ +[metadata] +Title=Paint-by-Numbers: Green-White +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 209 Green-White +[Main] +4 Archon of Absolution|ELD +1 Beanstalk Giant|ELD|2 +2 Castle Ardenvale|ELD|2 +13 Forest|ELD|3 +4 Giant Killer|ELD|2 +2 Harmonious Archon|ELD|2 +4 Lovestruck Beast|ELD|2 +3 Mysterious Pathlighter|ELD +11 Plains|ELD|1 +3 Questing Beast|ELD|2 +2 Realm-Cloaked Giant|ELD|2 +4 Stonecoil Serpent|ELD|2 +2 The Great Henge|ELD|2 +4 Wildborn Preserver|ELD|2 +1 Yorvo, Lord of Garenbrig|ELD|2 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 210 Green-Blue.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 210 Green-Blue.dck new file mode 100755 index 00000000000..9732f41d9a5 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Pick Order 210 Green-Blue.dck @@ -0,0 +1,25 @@ +[metadata] +Title=Paint-by-Numbers: Green-Blue +Difficulty=very hard +Description=Built according to Frank Karsten's Pick Order and mana curve. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Pick Order: 210 Green-Blue +[Main] +4 Brazen Borrower|ELD|2 +2 Castle Vantress|ELD|2 +4 Fae of Wishes|ELD|2 +2 Feasting Troll King|ELD|2 +12 Forest|ELD|3 +2 Gadwick, the Wizened|ELD|2 +12 Island|ELD|2 +1 Keeper of Fables|ELD +3 Lovestruck Beast|ELD|2 +3 Oko, Thief of Crowns|ELD|2 +2 Questing Beast|ELD|2 +4 Stonecoil Serpent|ELD|2 +2 The Great Henge|ELD|2 +3 Vantress Gargoyle|ELD|2 +4 Wildborn Preserver|ELD|2 +[Sideboard] +4 Charmed Sleep|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Planeswalker Control.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Planeswalker Control.dck new file mode 100755 index 00000000000..fed99fa15fc --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Planeswalker Control.dck @@ -0,0 +1,24 @@ +[metadata] +Title=Planeswalker Control +Difficulty=very hard +Description=This deck tries to ride planeswalkers to victory. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 Planeswalker Control +[Main] +4 Beanstalk Giant|ELD|1 +2 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +6 Forest|ELD|1 +4 Foulmire Knight|ELD|1 +4 Garruk, Cursed Huntsman|ELD|1 +3 Island|ELD|3 +4 Lovestruck Beast|ELD|1 +4 Murderous Rider|ELD|1 +4 Oko, Thief of Crowns|ELD|1 +9 Swamp|ELD|3 +4 Taste of Death|ELD +4 Thornwood Falls|ELD +4 Vantress Gargoyle|ELD|1 +[Sideboard] +4 Bake into a Pie|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Red Deck Wins.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Red Deck Wins.dck new file mode 100755 index 00000000000..ebfc6631f47 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Red Deck Wins.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Red Deck Wins +Difficulty=very hard +Description=The straightforward classic. +Icon=Dungeon Crawling Red.jpg +Deck Type=constructed +Name=ELD 4 Red Deck Wins +[Main] +4 Bonecrusher Giant|ELD|1 +3 Castle Embereth|ELD|1 +4 Dwarven Mine|ELD +2 Embercleave|ELD|1 +2 Embereth Shieldbreaker|ELD|1 +4 Fervent Champion|ELD|1 +4 Joust|ELD +18 Mountain|ELD|4 +4 Opportunistic Dragon|ELD|1 +4 Robber of the Rich|ELD|1 +4 Scorching Dragonfire|ELD +4 Slaying Fire|ELD|1 +3 Torbran, Thane of Red Fell|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Stompy.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Stompy.dck new file mode 100755 index 00000000000..b417fba7152 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 Stompy.dck @@ -0,0 +1,21 @@ +[metadata] +Title=Stompy +Difficulty=very hard +Description=It's easy being green in Eldraine. +Icon=Dungeon Crawling Green.jpg +Deck Type=constructed +Name=ELD 4 Stompy +[Main] +2 Beanstalk Giant|ELD|1 +2 Deathless Knight|ELD +4 Edgewall Innkeeper|ELD +3 Feasting Troll King|ELD|1 +24 Forest|ELD|4 +4 Lovestruck Beast|ELD|1 +4 Once Upon a Time|ELD|1 +4 Outmuscle|ELD +2 Questing Beast|ELD|1 +2 Syr Faren, the Hengehammer|ELD +2 The Great Henge|ELD|1 +4 Wildborn Preserver|ELD|1 +3 Yorvo, Lord of Garenbrig|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 The Rock.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 The Rock.dck new file mode 100755 index 00000000000..8e563d83895 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 The Rock.dck @@ -0,0 +1,21 @@ +[metadata] +Title=The Rock. +Difficulty=very hard +Description=This Black-Green deck attempts to grind you out. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 The Rock +[Main] +4 Beanstalk Giant|ELD|1 +2 Castle Locthwain|ELD|1 +4 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +12 Forest|ELD|2 +4 Foulmire Knight|ELD|1 +4 Garruk, Cursed Huntsman|ELD|1 +4 Lovestruck Beast|ELD|1 +4 Murderous Rider|ELD|1 +2 Questing Beast|ELD|1 +4 Savvy Hunter|ELD +10 Swamp|ELD|1 +2 The Great Henge|ELD|1 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White Weenie.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White Weenie.dck new file mode 100755 index 00000000000..8dfdf787937 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White Weenie.dck @@ -0,0 +1,20 @@ +[metadata] +Title=White Weenie +Difficulty=very hard +Description=This deck tries to kill you quickly with small white creatures. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 White Weenie +[Main] +4 All That Glitters|ELD +4 Archon of Absolution|ELD +4 Ardenvale Tactician|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Faerie Guidemother|ELD|1 +4 Flutterfox|ELD +4 Giant Killer|ELD|1 +4 Glass Casket|ELD|1 +4 Heraldic Banner|ELD +4 Hushbringer|ELD|1 +4 Mysterious Pathlighter|ELD +18 Plains|ELD|4 diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Black Control.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Black Control.dck new file mode 100755 index 00000000000..f639d29bd74 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Black Control.dck @@ -0,0 +1,21 @@ +[metadata] +Title=White-Black Control +Difficulty=very hard +Description=This deck tries to kill all your creatures. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 White-Black Control +[Main] +4 Bake into a Pie|ELD +2 Castle Ardenvale|ELD|1 +1 Castle Locthwain|ELD|1 +4 Epic Downfall|ELD +4 Fabled Passage|ELD|1 +4 Foulmire Knight|ELD|1 +4 Giant Killer|ELD|1 +4 Glass Casket|ELD|1 +4 Murderous Rider|ELD|1 +9 Plains|ELD|4 +4 Realm-Cloaked Giant|ELD|1 +12 Swamp|ELD|4 +4 Taste of Death|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Blue Control.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Blue Control.dck new file mode 100755 index 00000000000..5293766dc67 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Blue Control.dck @@ -0,0 +1,27 @@ +[metadata] +Title=White-Blue Control +Difficulty=very hard +Description=The traditional pairing of counterspells and sweepers. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 White-Blue Control +[Main] +2 Castle Ardenvale|ELD|1 +4 Didn't Say Please|ELD +4 Fabled Passage|ELD|1 +4 Fae of Wishes|ELD|1 +1 Gadwick, the Wizened|ELD|1 +4 Giant Killer|ELD|1 +4 Glass Casket|ELD|1 +11 Island|ELD|4 +1 Kenrith, the Returned King|ELD +4 Mystical Dispute|ELD +9 Plains|ELD|2 +4 Realm-Cloaked Giant|ELD|1 +4 Vantress Gargoyle|ELD|1 +4 Witching Well|ELD +[Sideboard] +1 Enchanted Carriage|ELD +1 The Circle of Loyalty|ELD|1 +1 Turn into a Pumpkin|ELD +1 Unexplained Vision|ELD diff --git a/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Blue Skies.dck b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Blue Skies.dck new file mode 100755 index 00000000000..b341f267311 --- /dev/null +++ b/forge-gui/res/quest/world/2019-09 Throne of Eldraine/duels/ELD 4 White-Blue Skies.dck @@ -0,0 +1,29 @@ +[metadata] +Title=White-Blue Skies +Difficulty=very hard +Description=This deck tries to win in the air. +Icon=Dungeon Crawling Gold.jpg +Deck Type=constructed +Name=ELD 4 White-Blue Skies +[Main] +4 Archon of Absolution|ELD +4 Ardenvale Tactician|ELD|1 +4 Brazen Borrower|ELD|1 +2 Castle Ardenvale|ELD|1 +4 Fae of Wishes|ELD|1 +2 Faerie Formation|ELD +4 Faerie Guidemother|ELD|1 +2 Harmonious Archon|ELD|1 +2 Hushbringer|ELD|1 +4 Hypnotic Sprite|ELD|1 +12 Island|ELD|1 +4 Mysterious Pathlighter|ELD +12 Plains|ELD|4 +[Sideboard] +1 Enchanted Carriage|ELD +1 Glass Casket|ELD|1 +1 Silverflame Ritual|ELD +1 The Circle of Loyalty|ELD|1 +1 Turn into a Pumpkin|ELD +1 Unexplained Vision|ELD +1 Witching Well|ELD diff --git a/forge-gui/res/quest/world/worlds.txt b/forge-gui/res/quest/world/worlds.txt index 2b2e2544a8e..51b12f097f0 100644 --- a/forge-gui/res/quest/world/worlds.txt +++ b/forge-gui/res/quest/world/worlds.txt @@ -11,7 +11,7 @@ Name:Mirrodin|Dir:mirrodin|Sets:MRD, DST, 5DN, SOM, MBS, NPH Name:Ravnica|Dir:ravnica|Sets:RAV, GPT, DIS, RTR, GTC, DGM Name:Shandalar|Dir:shandalar|Sets:2ED, ARN, ATQ, 3ED, LEG, DRK, 4ED|Banned:Chaos Orb; Falling Star Name:Zendikar|Dir:zendikar|Sets:ZEN, WWK, ROE -Name:The Domains: The Golden Age of Magic|Dir:1993-10 Limited Edition Beta|Sets:LEA, LEB|Banned:Chaos Orb +Name:The Domains: The Golden Age of Magic|Dir:1993-10 Limited Edition Beta|Sets:LEB|Banned:Chaos Orb Name:Rabiah|Dir:1993-12 Arabian Nights|Sets:ARN|Banned:City in a Bottle Name:Terisiare: The Brothers' War|Dir:1994-03 Antiquities|Sets:ATQ|Banned:Golgothian Sylex Name:Dominaria: Legends|Dir:1994-06 Legends|Sets:LEG|Banned:Arena of the Ancients; Falling Star; Karakas @@ -24,6 +24,7 @@ Name:Portal|Dir:1997-05 Portal|Sets:POR Name:Caliman|Dir:1998-06 Portal Second Age|Sets:PO2 Name:The Three Kingdoms|Dir:1999-05 Portal Three Kingdoms|Sets:PTK Name:Theros: The Hero's Path|Dir:2014-05 Theros|Sets:THS, BNG, JOU +Name:Eldraine: Throne of Eldraine|Dir:2019-09 Throne of Eldraine|Sets:ELD Name:Urza's Block|Dir:Urza|Sets:USG, ULG, UDS|Banned:Gaea's Cradle;Memory Jar;Serra's Sanctum;Time Spiral;Tolarian Academy;Voltaic Key;Windfall Name:The Gates of Magic|Dir:Starter|Sets:POR, PO2, S99, S00, PTK Name:Invasion|Dir:Invasion|Sets:INV, PLS, APC diff --git a/forge-gui/res/skins/default/sprite_manaicons.png b/forge-gui/res/skins/default/sprite_manaicons.png index 9ebaf6c0cda..1f4f70bb0ca 100644 Binary files a/forge-gui/res/skins/default/sprite_manaicons.png and b/forge-gui/res/skins/default/sprite_manaicons.png differ diff --git a/forge-gui/res/tokenscripts/g_x_x_treefolk_reach_total_lands.txt b/forge-gui/res/tokenscripts/g_x_x_treefolk_reach_total_lands.txt new file mode 100644 index 00000000000..9e0fcff193b --- /dev/null +++ b/forge-gui/res/tokenscripts/g_x_x_treefolk_reach_total_lands.txt @@ -0,0 +1,9 @@ +Name:Treefolk +ManaCost:no cost +Types:Creature Treefolk +Colors:green +PT:*/* +K:Reach +S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetPower$ X | SetToughness$ X | Description$ This creature's power and toughness are each equal to the number of lands you control. +SVar:X:Count$Valid Land.YouCtrl +Oracle:This creature's power and toughness are each equal to the number of lands you control. diff --git a/forge-gui/src/main/java/forge/gamemodes/match/input/InputConfirm.java b/forge-gui/src/main/java/forge/gamemodes/match/input/InputConfirm.java index d785d5e3519..f44c76a5a1a 100644 --- a/forge-gui/src/main/java/forge/gamemodes/match/input/InputConfirm.java +++ b/forge-gui/src/main/java/forge/gamemodes/match/input/InputConfirm.java @@ -59,7 +59,7 @@ public class InputConfirm extends InputSyncronizedBase { return controller.getGui().confirm(card, message, defaultIsYes, options); } else { InputConfirm inp; - if ( options.size() == 2 ) { + if (options.size() == 2) { inp = new InputConfirm(controller, message, options.get(0), options.get(1), defaultIsYes, card); } else { inp = new InputConfirm(controller, message, defaultOptions.get(0), defaultOptions.get(1), defaultIsYes, card); @@ -76,7 +76,7 @@ public class InputConfirm extends InputSyncronizedBase { return controller.getGui().confirm((sa==null)?null:CardView.get(sa.getHostCard()), message, defaultIsYes, options); } else { InputConfirm inp; - if ( options.size() == 2 ) { + if (options.size() == 2) { inp = new InputConfirm(controller, message, options.get(0), options.get(1), defaultIsYes, sa); } else { inp = new InputConfirm(controller, message, defaultOptions.get(0), defaultOptions.get(1), defaultIsYes, sa); @@ -147,17 +147,16 @@ public class InputConfirm extends InputSyncronizedBase { @Override protected final void showMessage() { getController().getGui().updateButtons(getOwner(), yesButtonText, noButtonText, true, true, defaultYes); - if ( FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.UI_DETAILED_SPELLDESC_IN_PROMPT) && - (card!=null) ) { + if (FModel.getPreferences().getPrefBoolean(ForgePreferences.FPref.UI_DETAILED_SPELLDESC_IN_PROMPT) && card != null) { final StringBuilder sb = new StringBuilder(); sb.append(card.toString()); - if ( (sa != null) && (sa.toString().length()>1) ) { // some spell abilities have no useful string value + if (sa != null && sa.toString().length() > 1) { // some spell abilities have no useful string value sb.append(" - ").append(sa.toString()); } sb.append("\n\n").append(message); showMessage(sb.toString(), card); } else { - if ( card!=null ) { + if (card != null) { showMessage(message, card); } else { showMessage(message); diff --git a/forge-gui/src/main/java/forge/gamemodes/match/input/InputPayMana.java b/forge-gui/src/main/java/forge/gamemodes/match/input/InputPayMana.java index 68f3d28c69d..0159ec383ae 100644 --- a/forge-gui/src/main/java/forge/gamemodes/match/input/InputPayMana.java +++ b/forge-gui/src/main/java/forge/gamemodes/match/input/InputPayMana.java @@ -356,11 +356,9 @@ public abstract class InputPayMana extends InputSyncronizedBase { player.getManaPool().payManaFromAbility(saPaidFor, InputPayMana.this.manaCost, chosen); } onManaAbilityPaid(); - onStateChanged(); - } else { - // Need to call this to unlock - onStateChanged(); } + // Need to call this to unlock + onStateChanged(); } }); diff --git a/forge-gui/src/main/java/forge/gamemodes/match/input/InputSyncronizedBase.java b/forge-gui/src/main/java/forge/gamemodes/match/input/InputSyncronizedBase.java index b6e957f1b5d..728b1018a18 100644 --- a/forge-gui/src/main/java/forge/gamemodes/match/input/InputSyncronizedBase.java +++ b/forge-gui/src/main/java/forge/gamemodes/match/input/InputSyncronizedBase.java @@ -36,6 +36,8 @@ public abstract class InputSyncronizedBase extends InputBase implements InputSyn } protected final void stop() { + onStop(); + // ensure input won't accept any user actions. FThreads.invokeInEdtNowOrLater(new Runnable() { @Override @@ -44,8 +46,6 @@ public abstract class InputSyncronizedBase extends InputBase implements InputSyn } }); - onStop(); - // thread irrelevant if (getController().getInputQueue().getInput() != null) { getController().getInputQueue().removeInput(InputSyncronizedBase.this); diff --git a/forge-gui/src/main/java/forge/localinstance/skin/FSkinProp.java b/forge-gui/src/main/java/forge/localinstance/skin/FSkinProp.java index add774d0c80..3b23baa7929 100644 --- a/forge-gui/src/main/java/forge/localinstance/skin/FSkinProp.java +++ b/forge-gui/src/main/java/forge/localinstance/skin/FSkinProp.java @@ -93,6 +93,7 @@ public enum FSkinProp { IMG_MANA_HYBRID_UR (new int[] {412, 330, 80, 80}, PropType.MANAICONS), IMG_MANA_HYBRID_WB (new int[] {330, 412, 80, 80}, PropType.MANAICONS), IMG_MANA_HYBRID_WU (new int[] {412, 412, 80, 80}, PropType.MANAICONS), + IMG_MANA_PHRYX (new int[] {166, 822, 80, 80}, PropType.MANAICONS), IMG_MANA_PHRYX_U (new int[] {330, 248, 80, 80}, PropType.MANAICONS), IMG_MANA_PHRYX_W (new int[] {412, 248, 80, 80}, PropType.MANAICONS), IMG_MANA_PHRYX_R (new int[] {412, 166, 80, 80}, PropType.MANAICONS), diff --git a/forge-gui/src/main/java/forge/player/HumanPlay.java b/forge-gui/src/main/java/forge/player/HumanPlay.java index 760c9374e90..0888afa10ac 100644 --- a/forge-gui/src/main/java/forge/player/HumanPlay.java +++ b/forge-gui/src/main/java/forge/player/HumanPlay.java @@ -149,7 +149,6 @@ public class HumanPlay { } return GameActionUtil.addOptionalCosts(choosen, list); - //final List abilities = GameActionUtil.getOptionalCosts(original); } /** @@ -190,7 +189,6 @@ public class HumanPlay { public final static void playSpellAbilityNoStack(final PlayerControllerHuman controller, final Player player, final SpellAbility sa) { playSpellAbilityNoStack(controller, player, sa, false); } - public final static void playSpellAbilityNoStack(final PlayerControllerHuman controller, final Player player, final SpellAbility sa, boolean useOldTargets) { sa.setActivatingPlayer(player); @@ -293,8 +291,7 @@ public class HumanPlay { String message = null; if (res.contains(p)) { message = Localizer.getInstance().getMessage("lblDoYouWantLetThatPlayerDrawNCardOrDoAction", String.valueOf(amount), orString); - } - else { + } else { message = Localizer.getInstance().getMessage("lblDoYouWantDrawNCardOrDoAction", String.valueOf(amount), orString); } @@ -309,10 +306,10 @@ public class HumanPlay { else if (part instanceof CostGainLife) { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostAddMana) { String desc = part.toString(); @@ -323,10 +320,10 @@ public class HumanPlay { } PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostMill) { final int amount = getAmountFromPart(part, source, sourceAbility); @@ -345,10 +342,10 @@ public class HumanPlay { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostRollDice) { if (!part.canPay(sourceAbility, p)) { @@ -357,10 +354,10 @@ public class HumanPlay { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostDamage) { if (!part.canPay(sourceAbility, p)) { @@ -370,10 +367,10 @@ public class HumanPlay { // not a pay life but damage! PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostPutCounter) { if (!part.canPay(sourceAbility, p)) { @@ -382,26 +379,26 @@ public class HumanPlay { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostRemoveCounter) { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostRemoveAnyCounter) { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostExile) { CostExile costExile = (CostExile) part; @@ -413,8 +410,7 @@ public class HumanPlay { } costExile.payAsDecided(p, PaymentDecision.card(p.getCardsIn(ZoneType.Graveyard)), sourceAbility); - } - else { + } else { from = costExile.getFrom(); CardCollection list = CardLists.getValidCards(p.getCardsIn(from), part.getType().split(";"), p, source, sourceAbility); final int nNeeded = getAmountFromPart(costPart, source, sourceAbility); @@ -432,7 +428,12 @@ public class HumanPlay { CardCollection newList = new CardCollection(); GameEntityViewMap gameCacheList = GameEntityView.getMap(list); for (int i = 0; i < nNeeded; i++) { - final CardView cv = SGuiChoose.oneOrNone(Localizer.getInstance().getMessage("lblExileFromZone", from.getTranslatedName()), gameCacheList.getTrackableKeys()); + final CardView cv; + if (mandatory) { + cv = SGuiChoose.one(Localizer.getInstance().getMessage("lblExileFromZone", from.getTranslatedName()), gameCacheList.getTrackableKeys()); + } else { + cv = SGuiChoose.oneOrNone(Localizer.getInstance().getMessage("lblExileFromZone", from.getTranslatedName()), gameCacheList.getTrackableKeys()); + } if (cv == null || !gameCacheList.containsKey(cv)) { return false; } @@ -497,8 +498,7 @@ public class HumanPlay { CardCollectionView listView; if (sameZone) { listView = p.getGame().getCardsIn(from); - } - else { + } else { listView = p.getCardsIn(from); } CardCollection list = CardLists.getValidCards(listView, part.getType().split(";"), p, source, sourceAbility); @@ -548,10 +548,10 @@ public class HumanPlay { } else if (part instanceof CostSacrifice) { PaymentDecision pd = part.accept(hcd); - if (pd == null) + if (pd == null) { return false; - else - part.payAsDecided(p, pd, sourceAbility); + } + part.payAsDecided(p, pd, sourceAbility); } else if (part instanceof CostGainControl) { int amount = Integer.parseInt(part.getAmount()); diff --git a/forge-gui/src/main/java/forge/player/HumanPlaySpellAbility.java b/forge-gui/src/main/java/forge/player/HumanPlaySpellAbility.java index 56f0b326e18..c4c20bfd096 100644 --- a/forge-gui/src/main/java/forge/player/HumanPlaySpellAbility.java +++ b/forge-gui/src/main/java/forge/player/HumanPlaySpellAbility.java @@ -63,6 +63,9 @@ public class HumanPlaySpellAbility { final Player human = ability.getActivatingPlayer(); final Game game = ability.getActivatingPlayer().getGame(); + // CR 401.5: freeze top library cards until cast so player can't cheat and see the next + game.setTopLibsCast(); + // used to rollback Zone fromZone = null; int zonePosition = 0; @@ -141,6 +144,9 @@ public class HumanPlaySpellAbility { } } + // reset is also done early here, because if an ability is canceled from targeting it might otherwise lead to refunding mana from earlier cast + ability.clearManaPaid(); + // This line makes use of short-circuit evaluation of boolean values, that is each subsequent argument // is only executed or evaluated if the first argument does not suffice to determine the value of the expression // because of Selective Snare do announceType first @@ -168,6 +174,7 @@ public class HumanPlaySpellAbility { manapool.restoreColorReplacements(); human.decNumManaConversion(); } + game.clearTopLibsCast(ability); return false; } @@ -180,7 +187,7 @@ public class HumanPlaySpellAbility { // Should unfreeze stack game.getStack().unfreezeStack(); } else { - enusureAbilityHasDescription(ability); + ensureAbilityHasDescription(ability); game.getStack().addAndUnfreeze(ability); } @@ -193,6 +200,7 @@ public class HumanPlaySpellAbility { manapool.restoreColorReplacements(); } } + game.clearTopLibsCast(ability); return true; } @@ -256,8 +264,7 @@ public class HumanPlaySpellAbility { card.setKickerMagnitude(value); } else if ("Pseudo-multikicker".equals(varName)) { card.setPseudoMultiKickerMagnitude(value); - } - else { + } else { card.setSVar(varName, value.toString()); } } @@ -305,7 +312,7 @@ public class HumanPlaySpellAbility { return true; } - private static void enusureAbilityHasDescription(final SpellAbility ability) { + private static void ensureAbilityHasDescription(final SpellAbility ability) { if (!StringUtils.isBlank(ability.getStackDescription())) { return; } diff --git a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java index b3fe1be293c..cfab29621f6 100644 --- a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java +++ b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java @@ -785,8 +785,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont buildQuestion.append(regtrig.getHostCard().toString()).append("?"); if (!FModel.getPreferences().getPrefBoolean(FPref.UI_COMPACT_PROMPT) && !FModel.getPreferences().getPrefBoolean(FPref.UI_DETAILED_SPELLDESC_IN_PROMPT)) { - // append trigger description unless prompt is compact or detailed - // descriptions are on + // append trigger description unless prompt is compact or detailed descriptions are on buildQuestion.append("\n("); buildQuestion.append(regtrig.toString()); buildQuestion.append(")"); @@ -1405,22 +1404,19 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont if (CombatUtil.validateAttackers(combat)) { return; // don't prompt to declare attackers if user chose to // end the turn and not attacking is legal - } else { - autoPassCancel(); // otherwise: cancel auto pass because of this - // unexpected attack } + // otherwise: cancel auto pass because of this unexpected attack + autoPassCancel(); } - // This input should not modify combat object itself, but should return - // user choice + // This input should not modify combat object itself, but should return user choice final InputAttack inpAttack = new InputAttack(this, attackingPlayer, combat); inpAttack.showAndWait(); } @Override public void declareBlockers(final Player defender, final Combat combat) { - // This input should not modify combat object itself, but should return - // user choice + // This input should not modify combat object itself, but should return user choice final InputBlock inpBlock = new InputBlock(this, defender, combat); inpBlock.showAndWait(); getGui().updateAutoPassPrompt(); @@ -1796,8 +1792,8 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont return getGui().one(prompt, possibleReplacers); } } - return first; // return first option without prompting if all options - // are the same + // return first option without prompting if all options are the same + return first; } @Override @@ -1808,8 +1804,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont @Override public boolean payCostToPreventEffect(final Cost cost, final SpellAbility sa, final boolean alreadyPaid, final FCollectionView allPayers) { - // if it's paid by the AI already the human can pay, but it won't change - // anything + // if it's paid by the AI already the human can pay, but it won't change anything return HumanPlay.payCostDuringAbilityResolve(this, player, sa.getHostCard(), cost, sa, null); } @@ -2075,8 +2070,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont @Override public List chooseCardsYouWonToAddToDeck(final List losses) { - return getGui().many(localizer.getMessage("lblSelectCardstoAddtoYourDeck"), localizer.getMessage("lblAddTheseToMyDeck"), 0, losses.size(), losses, - null); + return getGui().many(localizer.getMessage("lblSelectCardstoAddtoYourDeck"), localizer.getMessage("lblAddTheseToMyDeck"), 0, losses.size(), losses, null); } @Override @@ -3278,8 +3272,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont } @Override - public int chooseNumberForKeywordCost(SpellAbility sa, Cost cost, KeywordInterface keyword, String prompt, - int max) { + public int chooseNumberForKeywordCost(SpellAbility sa, Cost cost, KeywordInterface keyword, String prompt, int max) { if (max <= 0) { return 0; } diff --git a/forge-lda/pom.xml b/forge-lda/pom.xml index 71b50b57465..7fc42ca7fdf 100644 --- a/forge-lda/pom.xml +++ b/forge-lda/pom.xml @@ -4,7 +4,7 @@ forge forge - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT forge-lda diff --git a/pom.xml b/pom.xml index 5cb1baa31ec..d890bcfbd7a 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ forge pom Forge Parent - 1.6.44-SNAPSHOT + 1.6.45-SNAPSHOT Forge lets you play the card game Magic: The Gathering against a computer opponent using all of the rules.