mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
[KHM] added all printings and fixed text
This commit is contained in:
parent
20d8b97941
commit
2181eacb85
13 changed files with 338 additions and 121 deletions
|
@ -61,15 +61,15 @@ public final class AvalancheCaller extends CardImpl {
|
|||
class AvalancheCallerToken extends TokenImpl {
|
||||
|
||||
AvalancheCallerToken() {
|
||||
super("", "4/4 Elemental creature with haste and hexproof");
|
||||
super("", "4/4 Elemental creature with hexproof and haste");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
this.subtype.add(SubType.ELEMENTAL);
|
||||
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
this.addAbility(HexproofAbility.getInstance());
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private AvalancheCallerToken(final AvalancheCallerToken token) {
|
||||
|
|
|
@ -36,7 +36,7 @@ public final class AxgardArmory extends CardImpl {
|
|||
// {1}{R}{R}{W}, {T}: Sacrifice Axgard Armory: Search your library for an Aura card and/or Equipment card, reveal them, put them into your hand, then shuffle your library.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
new SearchLibraryPutInHandEffect(new AxgardArmoryTarget())
|
||||
.setText("search your library for an Aura card and/or Equipment card, reveal them, " +
|
||||
.setText("search your library for an Aura card and/or an Equipment card, reveal them, " +
|
||||
"put them into your hand, then shuffle your library"),
|
||||
new ManaCostsImpl("{1}{R}{R}{W}")
|
||||
);
|
||||
|
|
|
@ -69,7 +69,7 @@ class BattleForBretagardEffect extends OneShotEffect {
|
|||
super(Outcome.Benefit);
|
||||
staticText = "Choose any number of artifact tokens and/or " +
|
||||
"creature tokens you control with different names. " +
|
||||
"For each of them, create a token thats a copy of it.";
|
||||
"For each of them, create a token that's a copy of it.";
|
||||
}
|
||||
|
||||
private BattleForBretagardEffect(final BattleForBretagardEffect effect) {
|
||||
|
|
|
@ -38,7 +38,7 @@ public final class BorealOutrider extends CardImpl {
|
|||
new SpellCastControllerTriggeredAbility(
|
||||
new BorealOutriderEffect(), StaticFilters.FILTER_SPELL_A_CREATURE, false, true
|
||||
), BorealOutriderCondition.instance, "Whenever you cast a creature spell, " +
|
||||
"if {S} of any of that spell's color was spent to cast it, that creature " +
|
||||
"if {S} of any of that spell's colors was spent to cast it, that creature " +
|
||||
"enters the battlefield with an additional +1/+1 counter on it."
|
||||
));
|
||||
}
|
||||
|
|
|
@ -53,8 +53,8 @@ class HauntingVoyageEffect extends OneShotEffect {
|
|||
|
||||
public HauntingVoyageEffect() {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
staticText = "Return up to two creature cards of the chosen type from your graveyard to the battlefield. "
|
||||
+ "If this spell was foretold, return all creature cards of the chosen type from your graveyard to the battlefield instead";
|
||||
staticText = "Return up to two creature cards of that type from your graveyard to the battlefield. "
|
||||
+ "If this spell was foretold, return all creature cards of that type from your graveyard to the battlefield instead";
|
||||
}
|
||||
|
||||
private HauntingVoyageEffect(final HauntingVoyageEffect effect) {
|
||||
|
|
|
@ -26,10 +26,10 @@ public final class KingHaraldsRevenge extends CardImpl {
|
|||
public KingHaraldsRevenge(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{G}");
|
||||
|
||||
// Until end of tun, target creature gets +1/+1 for each creature you control and gains trample. It must be blocked this turn if able.
|
||||
// Until end of turn, target creature gets +1/+1 for each creature you control and gains trample. It must be blocked this turn if able.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(
|
||||
xValue, xValue, Duration.EndOfTurn, true
|
||||
).setText("until end of tun, target creature gets +1/+1 for each creature you control"));
|
||||
).setText("until end of turn, target creature gets +1/+1 for each creature you control"));
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(
|
||||
TrampleAbility.getInstance(), Duration.EndOfTurn
|
||||
).setText("and gains trample."));
|
||||
|
|
|
@ -68,7 +68,7 @@ class KingNarfisBetrayalFirstEffect extends OneShotEffect {
|
|||
|
||||
KingNarfisBetrayalFirstEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "Each player mills four cards. You may exile up to one creature or planeswalker " +
|
||||
staticText = "Each player mills four cards. Then you may exile a creature or planeswalker " +
|
||||
"card from each graveyard";
|
||||
}
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ class MysticReflectionEffect extends OneShotEffect {
|
|||
MysticReflectionEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "Choose target nonlegendary creature. The next time one or more creatures or planeswalkers " +
|
||||
"enter the battlefield this turn, they enter as copies of the chosen creature instead.";
|
||||
"enter the battlefield this turn, they enter as copies of the chosen creature.";
|
||||
}
|
||||
|
||||
private MysticReflectionEffect(final MysticReflectionEffect effect) {
|
||||
|
|
|
@ -56,7 +56,7 @@ public final class OldGrowthTroll extends CardImpl {
|
|||
OldGrowthTrollCondition.instance, "When {this} dies, if it was a creature, " +
|
||||
"return it to the battlefield. It's an Aura enchantment with enchant Forest you control " +
|
||||
"and \"Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice this land: " +
|
||||
"Create a 4/4 green Troll Warrior creature token with trample.'\""
|
||||
"Create a tapped 4/4 green Troll Warrior creature token with trample.'\""
|
||||
));
|
||||
}
|
||||
|
||||
|
@ -195,7 +195,7 @@ class OldGrowthTrollContinuousEffect extends ContinuousEffectImpl {
|
|||
|
||||
private static final Ability makeAbility() {
|
||||
Ability activatedAbility = new SimpleActivatedAbility(
|
||||
new CreateTokenEffect(new TrollWarriorToken()), new GenericManaCost(1)
|
||||
new CreateTokenEffect(new TrollWarriorToken(), 1, true, false), new GenericManaCost(1)
|
||||
);
|
||||
activatedAbility.addCost(new TapSourceCost());
|
||||
Cost cost = new SacrificeSourceCost();
|
||||
|
@ -206,7 +206,7 @@ class OldGrowthTrollContinuousEffect extends ContinuousEffectImpl {
|
|||
).setText("enchanted Forest has \"{T}: Add {G}{G}\""));
|
||||
ability.addEffect(new GainAbilityAttachedEffect(
|
||||
activatedAbility, AttachmentType.AURA
|
||||
).setText("and \"{1}, {T}, Sacrifice this land: Create a 4/4 green Troll Warrior creature token with trample.\""));
|
||||
).setText("and \"{1}, {T}, Sacrifice this land: Create a tapped 4/4 green Troll Warrior creature token with trample.\""));
|
||||
return ability;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,7 +78,7 @@ public final class TergridGodOfFright extends ModalDoubleFacesCard {
|
|||
|
||||
class TergridGodOfFrightTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
static final String RULE_TEXT = "Whenever an opponent sacrifices a nontoken permanent or discards a permanent card, you may put that card onto the battlefield under your control from their graveyard";
|
||||
private static final String RULE_TEXT = "Whenever an opponent sacrifices a nontoken permanent or discards a permanent card, you may put that card from a graveyard onto the battlefield under your control";
|
||||
|
||||
public TergridGodOfFrightTriggeredAbility() {
|
||||
super(Zone.BATTLEFIELD, new TergridGodOfFrightEffect());
|
||||
|
|
|
@ -97,7 +97,7 @@ class TheBloodskyMassacreEffect extends OneShotEffect {
|
|||
TheBloodskyMassacreEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "add {R} for each Berserker you control. Until end of turn, " +
|
||||
"you don't lose this mana as steps or phases end";
|
||||
"you don't lose this mana as steps and phases end";
|
||||
}
|
||||
|
||||
private TheBloodskyMassacreEffect(final TheBloodskyMassacreEffect effect) {
|
||||
|
|
|
@ -40,17 +40,22 @@ public final class Kaldheim extends ExpansionSet {
|
|||
this.ratioBoosterSpecialLandNumerator = 5; // TODO: change when actual ratio is known
|
||||
|
||||
cards.add(new SetCardInfo("Absorb Identity", 383, Rarity.UNCOMMON, mage.cards.a.AbsorbIdentity.class));
|
||||
cards.add(new SetCardInfo("Aegar, the Freezing Flame", 200, Rarity.UNCOMMON, mage.cards.a.AegarTheFreezingFlame.class));
|
||||
cards.add(new SetCardInfo("Aegar, the Freezing Flame", 200, Rarity.UNCOMMON, mage.cards.a.AegarTheFreezingFlame.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Aegar, the Freezing Flame", 321, Rarity.UNCOMMON, mage.cards.a.AegarTheFreezingFlame.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Alpine Meadow", 248, Rarity.COMMON, mage.cards.a.AlpineMeadow.class));
|
||||
cards.add(new SetCardInfo("Alrund's Epiphany", 295, Rarity.MYTHIC, mage.cards.a.AlrundsEpiphany.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Alrund's Epiphany", 41, Rarity.MYTHIC, mage.cards.a.AlrundsEpiphany.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Alrund, God of the Cosmos", 302, Rarity.MYTHIC, mage.cards.a.AlrundGodOfTheCosmos.class));
|
||||
cards.add(new SetCardInfo("Alrund, God of the Cosmos", 40, Rarity.MYTHIC, mage.cards.a.AlrundGodOfTheCosmos.class));
|
||||
cards.add(new SetCardInfo("Alrund's Epiphany", 41, Rarity.MYTHIC, mage.cards.a.AlrundsEpiphany.class));
|
||||
cards.add(new SetCardInfo("Annul", 42, Rarity.COMMON, mage.cards.a.Annul.class));
|
||||
cards.add(new SetCardInfo("Arachnoform", 159, Rarity.COMMON, mage.cards.a.Arachnoform.class));
|
||||
cards.add(new SetCardInfo("Arctic Treeline", 249, Rarity.COMMON, mage.cards.a.ArcticTreeline.class));
|
||||
cards.add(new SetCardInfo("Armed and Armored", 379, Rarity.UNCOMMON, mage.cards.a.ArmedAndArmored.class));
|
||||
cards.add(new SetCardInfo("Arni Brokenbrow", 120, Rarity.RARE, mage.cards.a.ArniBrokenbrow.class));
|
||||
cards.add(new SetCardInfo("Arni Brokenbrow", 120, Rarity.RARE, mage.cards.a.ArniBrokenbrow.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Arni Brokenbrow", 310, Rarity.RARE, mage.cards.a.ArniBrokenbrow.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Arni Slays the Troll", 201, Rarity.UNCOMMON, mage.cards.a.ArniSlaysTheTroll.class));
|
||||
cards.add(new SetCardInfo("Ascendant Spirit", 43, Rarity.RARE, mage.cards.a.AscendantSpirit.class));
|
||||
cards.add(new SetCardInfo("Ascendant Spirit", 341, Rarity.RARE, mage.cards.a.AscendantSpirit.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Ascendant Spirit", 43, Rarity.RARE, mage.cards.a.AscendantSpirit.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Ascent of the Worthy", 202, Rarity.UNCOMMON, mage.cards.a.AscentOfTheWorthy.class));
|
||||
cards.add(new SetCardInfo("Augury Raven", 44, Rarity.COMMON, mage.cards.a.AuguryRaven.class));
|
||||
cards.add(new SetCardInfo("Avalanche Caller", 45, Rarity.UNCOMMON, mage.cards.a.AvalancheCaller.class));
|
||||
|
@ -58,9 +63,11 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Axgard Braggart", 1, Rarity.COMMON, mage.cards.a.AxgardBraggart.class));
|
||||
cards.add(new SetCardInfo("Axgard Cavalry", 121, Rarity.COMMON, mage.cards.a.AxgardCavalry.class));
|
||||
cards.add(new SetCardInfo("Barkchannel Pathway", 251, Rarity.RARE, mage.cards.b.BarkchannelPathway.class));
|
||||
cards.add(new SetCardInfo("Barkchannel Pathway", 290, Rarity.RARE, mage.cards.b.BarkchannelPathway.class));
|
||||
cards.add(new SetCardInfo("Basalt Ravager", 122, Rarity.UNCOMMON, mage.cards.b.BasaltRavager.class));
|
||||
cards.add(new SetCardInfo("Battershield Warrior", 2, Rarity.UNCOMMON, mage.cards.b.BattershieldWarrior.class));
|
||||
cards.add(new SetCardInfo("Battle Mammoth", 160, Rarity.MYTHIC, mage.cards.b.BattleMammoth.class));
|
||||
cards.add(new SetCardInfo("Battle Mammoth", 160, Rarity.MYTHIC, mage.cards.b.BattleMammoth.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Battle Mammoth", 298, Rarity.MYTHIC, mage.cards.b.BattleMammoth.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Battle for Bretagard", 203, Rarity.RARE, mage.cards.b.BattleForBretagard.class));
|
||||
cards.add(new SetCardInfo("Battle of Frost and Fire", 204, Rarity.RARE, mage.cards.b.BattleOfFrostAndFire.class));
|
||||
cards.add(new SetCardInfo("Battlefield Raptor", 3, Rarity.COMMON, mage.cards.b.BattlefieldRaptor.class));
|
||||
|
@ -71,10 +78,14 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Bind the Monster", 48, Rarity.COMMON, mage.cards.b.BindTheMonster.class));
|
||||
cards.add(new SetCardInfo("Binding the Old Gods", 206, Rarity.UNCOMMON, mage.cards.b.BindingTheOldGods.class));
|
||||
cards.add(new SetCardInfo("Birgi, God of Storytelling", 123, Rarity.RARE, mage.cards.b.BirgiGodOfStorytelling.class));
|
||||
cards.add(new SetCardInfo("Blessing of Frost", 161, Rarity.RARE, mage.cards.b.BlessingOfFrost.class));
|
||||
cards.add(new SetCardInfo("Birgi, God of Storytelling", 311, Rarity.RARE, mage.cards.b.BirgiGodOfStorytelling.class));
|
||||
cards.add(new SetCardInfo("Blessing of Frost", 161, Rarity.RARE, mage.cards.b.BlessingOfFrost.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Blessing of Frost", 362, Rarity.RARE, mage.cards.b.BlessingOfFrost.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Blightstep Pathway", 252, Rarity.RARE, mage.cards.b.BlightstepPathway.class));
|
||||
cards.add(new SetCardInfo("Blightstep Pathway", 291, Rarity.RARE, mage.cards.b.BlightstepPathway.class));
|
||||
cards.add(new SetCardInfo("Blizzard Brawl", 162, Rarity.UNCOMMON, mage.cards.b.BlizzardBrawl.class));
|
||||
cards.add(new SetCardInfo("Blood on the Snow", 79, Rarity.RARE, mage.cards.b.BloodOnTheSnow.class));
|
||||
cards.add(new SetCardInfo("Blood on the Snow", 348, Rarity.RARE, mage.cards.b.BloodOnTheSnow.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Blood on the Snow", 79, Rarity.RARE, mage.cards.b.BloodOnTheSnow.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Bloodline Pretender", 235, Rarity.UNCOMMON, mage.cards.b.BloodlinePretender.class));
|
||||
cards.add(new SetCardInfo("Bloodsky Berserker", 80, Rarity.UNCOMMON, mage.cards.b.BloodskyBerserker.class));
|
||||
cards.add(new SetCardInfo("Boreal Outrider", 163, Rarity.UNCOMMON, mage.cards.b.BorealOutrider.class));
|
||||
|
@ -83,22 +94,30 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Bretagard Stronghold", 253, Rarity.UNCOMMON, mage.cards.b.BretagardStronghold.class));
|
||||
cards.add(new SetCardInfo("Brinebarrow Intruder", 49, Rarity.COMMON, mage.cards.b.BrinebarrowIntruder.class));
|
||||
cards.add(new SetCardInfo("Broken Wings", 164, Rarity.COMMON, mage.cards.b.BrokenWings.class));
|
||||
cards.add(new SetCardInfo("Burning-Rune Demon", 81, Rarity.MYTHIC, mage.cards.b.BurningRuneDemon.class));
|
||||
cards.add(new SetCardInfo("Calamity Bearer", 125, Rarity.RARE, mage.cards.c.CalamityBearer.class));
|
||||
cards.add(new SetCardInfo("Burning-Rune Demon", 349, Rarity.MYTHIC, mage.cards.b.BurningRuneDemon.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Burning-Rune Demon", 81, Rarity.MYTHIC, mage.cards.b.BurningRuneDemon.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Calamity Bearer", 125, Rarity.RARE, mage.cards.c.CalamityBearer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Calamity Bearer", 356, Rarity.RARE, mage.cards.c.CalamityBearer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Canopy Tactician", 378, Rarity.RARE, mage.cards.c.CanopyTactician.class));
|
||||
cards.add(new SetCardInfo("Cinderheart Giant", 126, Rarity.COMMON, mage.cards.c.CinderheartGiant.class));
|
||||
cards.add(new SetCardInfo("Clarion Spirit", 6, Rarity.UNCOMMON, mage.cards.c.ClarionSpirit.class));
|
||||
cards.add(new SetCardInfo("Cleaving Reaper", 376, Rarity.RARE, mage.cards.c.CleavingReaper.class));
|
||||
cards.add(new SetCardInfo("Codespell Cleric", 7, Rarity.COMMON, mage.cards.c.CodespellCleric.class));
|
||||
cards.add(new SetCardInfo("Colossal Plow", 236, Rarity.UNCOMMON, mage.cards.c.ColossalPlow.class));
|
||||
cards.add(new SetCardInfo("Cosima, God of the Voyage", 303, Rarity.RARE, mage.cards.c.CosimaGodOfTheVoyage.class));
|
||||
cards.add(new SetCardInfo("Cosima, God of the Voyage", 50, Rarity.RARE, mage.cards.c.CosimaGodOfTheVoyage.class));
|
||||
cards.add(new SetCardInfo("Cosmos Charger", 51, Rarity.RARE, mage.cards.c.CosmosCharger.class));
|
||||
cards.add(new SetCardInfo("Cosmos Elixir", 237, Rarity.RARE, mage.cards.c.CosmosElixir.class));
|
||||
cards.add(new SetCardInfo("Cosmos Charger", 342, Rarity.RARE, mage.cards.c.CosmosCharger.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Cosmos Charger", 51, Rarity.RARE, mage.cards.c.CosmosCharger.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Cosmos Elixir", 237, Rarity.RARE, mage.cards.c.CosmosElixir.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Cosmos Elixir", 368, Rarity.RARE, mage.cards.c.CosmosElixir.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Craven Hulk", 127, Rarity.COMMON, mage.cards.c.CravenHulk.class));
|
||||
cards.add(new SetCardInfo("Crippling Fear", 82, Rarity.RARE, mage.cards.c.CripplingFear.class));
|
||||
cards.add(new SetCardInfo("Crippling Fear", 350, Rarity.RARE, mage.cards.c.CripplingFear.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Crippling Fear", 82, Rarity.RARE, mage.cards.c.CripplingFear.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Crush the Weak", 128, Rarity.UNCOMMON, mage.cards.c.CrushTheWeak.class));
|
||||
cards.add(new SetCardInfo("Cyclone Summoner", 52, Rarity.RARE, mage.cards.c.CycloneSummoner.class));
|
||||
cards.add(new SetCardInfo("Cyclone Summoner", 343, Rarity.RARE, mage.cards.c.CycloneSummoner.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Cyclone Summoner", 52, Rarity.RARE, mage.cards.c.CycloneSummoner.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Darkbore Pathway", 254, Rarity.RARE, mage.cards.d.DarkborePathway.class));
|
||||
cards.add(new SetCardInfo("Darkbore Pathway", 292, Rarity.RARE, mage.cards.d.DarkborePathway.class));
|
||||
cards.add(new SetCardInfo("Deathknell Berserker", 83, Rarity.COMMON, mage.cards.d.DeathknellBerserker.class));
|
||||
cards.add(new SetCardInfo("Demon Bolt", 129, Rarity.COMMON, mage.cards.d.DemonBolt.class));
|
||||
cards.add(new SetCardInfo("Demonic Gifts", 84, Rarity.COMMON, mage.cards.d.DemonicGifts.class));
|
||||
|
@ -108,45 +127,58 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Dogged Pursuit", 85, Rarity.COMMON, mage.cards.d.DoggedPursuit.class));
|
||||
cards.add(new SetCardInfo("Doomskar Oracle", 10, Rarity.COMMON, mage.cards.d.DoomskarOracle.class));
|
||||
cards.add(new SetCardInfo("Doomskar Titan", 130, Rarity.UNCOMMON, mage.cards.d.DoomskarTitan.class));
|
||||
cards.add(new SetCardInfo("Doomskar", 9, Rarity.RARE, mage.cards.d.Doomskar.class));
|
||||
cards.add(new SetCardInfo("Dragonkin Berserker", 131, Rarity.RARE, mage.cards.d.DragonkinBerserker.class));
|
||||
cards.add(new SetCardInfo("Draugr Necromancer", 86, Rarity.RARE, mage.cards.d.DraugrNecromancer.class));
|
||||
cards.add(new SetCardInfo("Doomskar", 334, Rarity.RARE, mage.cards.d.Doomskar.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Doomskar", 9, Rarity.RARE, mage.cards.d.Doomskar.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Dragonkin Berserker", 131, Rarity.RARE, mage.cards.d.DragonkinBerserker.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Dragonkin Berserker", 357, Rarity.RARE, mage.cards.d.DragonkinBerserker.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Draugr Necromancer", 351, Rarity.RARE, mage.cards.d.DraugrNecromancer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Draugr Necromancer", 86, Rarity.RARE, mage.cards.d.DraugrNecromancer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Draugr Recruiter", 87, Rarity.COMMON, mage.cards.d.DraugrRecruiter.class));
|
||||
cards.add(new SetCardInfo("Draugr Thought-Thief", 55, Rarity.COMMON, mage.cards.d.DraugrThoughtThief.class));
|
||||
cards.add(new SetCardInfo("Draugr's Helm", 88, Rarity.UNCOMMON, mage.cards.d.DraugrsHelm.class));
|
||||
cards.add(new SetCardInfo("Dread Rider", 89, Rarity.COMMON, mage.cards.d.DreadRider.class));
|
||||
cards.add(new SetCardInfo("Dream Devourer", 352, Rarity.RARE, mage.cards.d.DreamDevourer.class));
|
||||
cards.add(new SetCardInfo("Dream Devourer", 352, Rarity.RARE, mage.cards.d.DreamDevourer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Dream Devourer", 90, Rarity.RARE, mage.cards.d.DreamDevourer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Dual Strike", 132, Rarity.UNCOMMON, mage.cards.d.DualStrike.class));
|
||||
cards.add(new SetCardInfo("Duskwielder", 91, Rarity.COMMON, mage.cards.d.Duskwielder.class));
|
||||
cards.add(new SetCardInfo("Dwarven Hammer", 133, Rarity.UNCOMMON, mage.cards.d.DwarvenHammer.class));
|
||||
cards.add(new SetCardInfo("Dwarven Reinforcements", 134, Rarity.COMMON, mage.cards.d.DwarvenReinforcements.class));
|
||||
cards.add(new SetCardInfo("Egon, God of Death", 306, Rarity.RARE, mage.cards.e.EgonGodOfDeath.class));
|
||||
cards.add(new SetCardInfo("Egon, God of Death", 92, Rarity.RARE, mage.cards.e.EgonGodOfDeath.class));
|
||||
cards.add(new SetCardInfo("Elderfang Disciple", 93, Rarity.COMMON, mage.cards.e.ElderfangDisciple.class));
|
||||
cards.add(new SetCardInfo("Elderfang Ritualist", 385, Rarity.UNCOMMON, mage.cards.e.ElderfangRitualist.class));
|
||||
cards.add(new SetCardInfo("Elderleaf Mentor", 165, Rarity.COMMON, mage.cards.e.ElderleafMentor.class));
|
||||
cards.add(new SetCardInfo("Elven Ambush", 391, Rarity.UNCOMMON, mage.cards.e.ElvenAmbush.class));
|
||||
cards.add(new SetCardInfo("Elven Bow", 166, Rarity.UNCOMMON, mage.cards.e.ElvenBow.class));
|
||||
cards.add(new SetCardInfo("Elvish Warmaster", 167, Rarity.RARE, mage.cards.e.ElvishWarmaster.class));
|
||||
cards.add(new SetCardInfo("Eradicator Valkyrie", 94, Rarity.MYTHIC, mage.cards.e.EradicatorValkyrie.class));
|
||||
cards.add(new SetCardInfo("Esika's Chariot", 169, Rarity.RARE, mage.cards.e.EsikasChariot.class));
|
||||
cards.add(new SetCardInfo("Elvish Warmaster", 167, Rarity.RARE, mage.cards.e.ElvishWarmaster.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Elvish Warmaster", 363, Rarity.RARE, mage.cards.e.ElvishWarmaster.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Eradicator Valkyrie", 353, Rarity.MYTHIC, mage.cards.e.EradicatorValkyrie.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Eradicator Valkyrie", 94, Rarity.MYTHIC, mage.cards.e.EradicatorValkyrie.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Esika's Chariot", 169, Rarity.RARE, mage.cards.e.EsikasChariot.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Esika's Chariot", 315, Rarity.RARE, mage.cards.e.EsikasChariot.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Esika, God of the Tree", 168, Rarity.MYTHIC, mage.cards.e.EsikaGodOfTheTree.class));
|
||||
cards.add(new SetCardInfo("Faceless Haven", 255, Rarity.RARE, mage.cards.f.FacelessHaven.class));
|
||||
cards.add(new SetCardInfo("Esika, God of the Tree", 314, Rarity.MYTHIC, mage.cards.e.EsikaGodOfTheTree.class));
|
||||
cards.add(new SetCardInfo("Faceless Haven", 255, Rarity.RARE, mage.cards.f.FacelessHaven.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Faceless Haven", 371, Rarity.RARE, mage.cards.f.FacelessHaven.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Fall of the Impostor", 208, Rarity.UNCOMMON, mage.cards.f.FallOfTheImpostor.class));
|
||||
cards.add(new SetCardInfo("Fearless Liberator", 135, Rarity.UNCOMMON, mage.cards.f.FearlessLiberator.class));
|
||||
cards.add(new SetCardInfo("Fearless Pup", 136, Rarity.COMMON, mage.cards.f.FearlessPup.class));
|
||||
cards.add(new SetCardInfo("Feed the Serpent", 95, Rarity.COMMON, mage.cards.f.FeedTheSerpent.class));
|
||||
cards.add(new SetCardInfo("Fire Giant's Fury", 389, Rarity.UNCOMMON, mage.cards.f.FireGiantsFury.class));
|
||||
cards.add(new SetCardInfo("Firja's Retribution", 210, Rarity.RARE, mage.cards.f.FirjasRetribution.class));
|
||||
cards.add(new SetCardInfo("Firja, Judge of Valor", 209, Rarity.UNCOMMON, mage.cards.f.FirjaJudgeOfValor.class));
|
||||
cards.add(new SetCardInfo("Firja, Judge of Valor", 209, Rarity.UNCOMMON, mage.cards.f.FirjaJudgeOfValor.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Firja, Judge of Valor", 322, Rarity.UNCOMMON, mage.cards.f.FirjaJudgeOfValor.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Forest", 398, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Forging the Tyrite Sword", 211, Rarity.UNCOMMON, mage.cards.f.ForgingTheTyriteSword.class));
|
||||
cards.add(new SetCardInfo("Frenzied Raider", 137, Rarity.UNCOMMON, mage.cards.f.FrenziedRaider.class));
|
||||
cards.add(new SetCardInfo("Frost Augur", 56, Rarity.UNCOMMON, mage.cards.f.FrostAugur.class));
|
||||
cards.add(new SetCardInfo("Frost Bite", 138, Rarity.COMMON, mage.cards.f.FrostBite.class));
|
||||
cards.add(new SetCardInfo("Frost Bite", 138, Rarity.COMMON, mage.cards.f.FrostBite.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Frost Bite", 404, Rarity.COMMON, mage.cards.f.FrostBite.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Frostpeak Yeti", 57, Rarity.COMMON, mage.cards.f.FrostpeakYeti.class));
|
||||
cards.add(new SetCardInfo("Frostpyre Arcanist", 58, Rarity.UNCOMMON, mage.cards.f.FrostpyreArcanist.class));
|
||||
cards.add(new SetCardInfo("Funeral Longboat", 238, Rarity.COMMON, mage.cards.f.FuneralLongboat.class));
|
||||
cards.add(new SetCardInfo("Fynn, the Fangbearer", 170, Rarity.UNCOMMON, mage.cards.f.FynnTheFangbearer.class));
|
||||
cards.add(new SetCardInfo("Fynn, the Fangbearer", 170, Rarity.UNCOMMON, mage.cards.f.FynnTheFangbearer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Fynn, the Fangbearer", 316, Rarity.UNCOMMON, mage.cards.f.FynnTheFangbearer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Gates of Istfell", 256, Rarity.UNCOMMON, mage.cards.g.GatesOfIstfell.class));
|
||||
cards.add(new SetCardInfo("Giant Ox", 11, Rarity.COMMON, mage.cards.g.GiantOx.class));
|
||||
cards.add(new SetCardInfo("Giant's Amulet", 59, Rarity.UNCOMMON, mage.cards.g.GiantsAmulet.class));
|
||||
|
@ -156,14 +188,17 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gladewalker Ritualist", 392, Rarity.UNCOMMON, mage.cards.g.GladewalkerRitualist.class));
|
||||
cards.add(new SetCardInfo("Glimpse the Cosmos", 60, Rarity.UNCOMMON, mage.cards.g.GlimpseTheCosmos.class));
|
||||
cards.add(new SetCardInfo("Glittering Frost", 171, Rarity.COMMON, mage.cards.g.GlitteringFrost.class));
|
||||
cards.add(new SetCardInfo("Glorious Protector", 12, Rarity.RARE, mage.cards.g.GloriousProtector.class));
|
||||
cards.add(new SetCardInfo("Glorious Protector", 12, Rarity.RARE, mage.cards.g.GloriousProtector.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Glorious Protector", 335, Rarity.RARE, mage.cards.g.GloriousProtector.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Gnottvold Recluse", 172, Rarity.COMMON, mage.cards.g.GnottvoldRecluse.class));
|
||||
cards.add(new SetCardInfo("Gnottvold Slumbermound", 258, Rarity.UNCOMMON, mage.cards.g.GnottvoldSlumbermound.class));
|
||||
cards.add(new SetCardInfo("Gods' Hall Guardian", 13, Rarity.COMMON, mage.cards.g.GodsHallGuardian.class));
|
||||
cards.add(new SetCardInfo("Goldmaw Champion", 14, Rarity.COMMON, mage.cards.g.GoldmawChampion.class));
|
||||
cards.add(new SetCardInfo("Goldspan Dragon", 139, Rarity.MYTHIC, mage.cards.g.GoldspanDragon.class));
|
||||
cards.add(new SetCardInfo("Goldspan Dragon", 139, Rarity.MYTHIC, mage.cards.g.GoldspanDragon.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Goldspan Dragon", 358, Rarity.MYTHIC, mage.cards.g.GoldspanDragon.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Goldvein Pick", 239, Rarity.COMMON, mage.cards.g.GoldveinPick.class));
|
||||
cards.add(new SetCardInfo("Graven Lore", 61, Rarity.RARE, mage.cards.g.GravenLore.class));
|
||||
cards.add(new SetCardInfo("Graven Lore", 344, Rarity.RARE, mage.cards.g.GravenLore.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Graven Lore", 61, Rarity.RARE, mage.cards.g.GravenLore.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Great Hall of Starnheim", 259, Rarity.UNCOMMON, mage.cards.g.GreatHallOfStarnheim.class));
|
||||
cards.add(new SetCardInfo("Grim Draugr", 96, Rarity.COMMON, mage.cards.g.GrimDraugr.class));
|
||||
cards.add(new SetCardInfo("Grizzled Outrider", 173, Rarity.COMMON, mage.cards.g.GrizzledOutrider.class));
|
||||
|
@ -171,22 +206,30 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Hagi Mob", 140, Rarity.COMMON, mage.cards.h.HagiMob.class));
|
||||
cards.add(new SetCardInfo("Hailstorm Valkyrie", 97, Rarity.UNCOMMON, mage.cards.h.HailstormValkyrie.class));
|
||||
cards.add(new SetCardInfo("Halvar, God of Battle", 15, Rarity.MYTHIC, mage.cards.h.HalvarGodOfBattle.class));
|
||||
cards.add(new SetCardInfo("Halvar, God of Battle", 299, Rarity.MYTHIC, mage.cards.h.HalvarGodOfBattle.class));
|
||||
cards.add(new SetCardInfo("Harald Unites the Elves", 213, Rarity.RARE, mage.cards.h.HaraldUnitesTheElves.class));
|
||||
cards.add(new SetCardInfo("Harald, King of Skemfar", 212, Rarity.UNCOMMON, mage.cards.h.HaraldKingOfSkemfar.class));
|
||||
cards.add(new SetCardInfo("Haunting Voyage", 98, Rarity.MYTHIC, mage.cards.h.HauntingVoyage.class));
|
||||
cards.add(new SetCardInfo("Harald, King of Skemfar", 212, Rarity.UNCOMMON, mage.cards.h.HaraldKingOfSkemfar.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Harald, King of Skemfar", 323, Rarity.UNCOMMON, mage.cards.h.HaraldKingOfSkemfar.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Haunting Voyage", 296, Rarity.MYTHIC, mage.cards.h.HauntingVoyage.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Haunting Voyage", 98, Rarity.MYTHIC, mage.cards.h.HauntingVoyage.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Hengegate Pathway", 260, Rarity.RARE, mage.cards.h.HengegatePathway.class));
|
||||
cards.add(new SetCardInfo("Hengegate Pathway", 293, Rarity.RARE, mage.cards.h.HengegatePathway.class));
|
||||
cards.add(new SetCardInfo("Highland Forest", 261, Rarity.COMMON, mage.cards.h.HighlandForest.class));
|
||||
cards.add(new SetCardInfo("Horizon Seeker", 175, Rarity.COMMON, mage.cards.h.HorizonSeeker.class));
|
||||
cards.add(new SetCardInfo("Ice Tunnel", 262, Rarity.COMMON, mage.cards.i.IceTunnel.class));
|
||||
cards.add(new SetCardInfo("Icebind Pillar", 62, Rarity.UNCOMMON, mage.cards.i.IcebindPillar.class));
|
||||
cards.add(new SetCardInfo("Icebreaker Kraken", 63, Rarity.RARE, mage.cards.i.IcebreakerKraken.class));
|
||||
cards.add(new SetCardInfo("Icebreaker Kraken", 345, Rarity.RARE, mage.cards.i.IcebreakerKraken.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Icebreaker Kraken", 63, Rarity.RARE, mage.cards.i.IcebreakerKraken.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Icehide Troll", 176, Rarity.COMMON, mage.cards.i.IcehideTroll.class));
|
||||
cards.add(new SetCardInfo("Immersturm Predator", 214, Rarity.RARE, mage.cards.i.ImmersturmPredator.class));
|
||||
cards.add(new SetCardInfo("Immersturm Predator", 214, Rarity.RARE, mage.cards.i.ImmersturmPredator.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Immersturm Predator", 367, Rarity.RARE, mage.cards.i.ImmersturmPredator.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Immersturm Raider", 141, Rarity.COMMON, mage.cards.i.ImmersturmRaider.class));
|
||||
cards.add(new SetCardInfo("Immersturm Skullcairn", 263, Rarity.UNCOMMON, mage.cards.i.ImmersturmSkullcairn.class));
|
||||
cards.add(new SetCardInfo("In Search of Greatness", 177, Rarity.RARE, mage.cards.i.InSearchOfGreatness.class));
|
||||
cards.add(new SetCardInfo("In Search of Greatness", 177, Rarity.RARE, mage.cards.i.InSearchOfGreatness.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("In Search of Greatness", 364, Rarity.RARE, mage.cards.i.InSearchOfGreatness.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Infernal Pet", 99, Rarity.COMMON, mage.cards.i.InfernalPet.class));
|
||||
cards.add(new SetCardInfo("Inga Rune-Eyes", 64, Rarity.UNCOMMON, mage.cards.i.IngaRuneEyes.class));
|
||||
cards.add(new SetCardInfo("Inga Rune-Eyes", 304, Rarity.UNCOMMON, mage.cards.i.IngaRuneEyes.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Inga Rune-Eyes", 64, Rarity.UNCOMMON, mage.cards.i.IngaRuneEyes.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Invasion of the Giants", 215, Rarity.UNCOMMON, mage.cards.i.InvasionOfTheGiants.class));
|
||||
cards.add(new SetCardInfo("Invoke the Divine", 16, Rarity.COMMON, mage.cards.i.InvokeTheDivine.class));
|
||||
cards.add(new SetCardInfo("Iron Verdict", 17, Rarity.COMMON, mage.cards.i.IronVerdict.class));
|
||||
|
@ -194,66 +237,95 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Jarl of the Forsaken", 100, Rarity.COMMON, mage.cards.j.JarlOfTheForsaken.class));
|
||||
cards.add(new SetCardInfo("Jaspera Sentinel", 178, Rarity.COMMON, mage.cards.j.JasperaSentinel.class));
|
||||
cards.add(new SetCardInfo("Jorn, God of Winter", 179, Rarity.RARE, mage.cards.j.JornGodOfWinter.class));
|
||||
cards.add(new SetCardInfo("Jorn, God of Winter", 317, Rarity.RARE, mage.cards.j.JornGodOfWinter.class));
|
||||
cards.add(new SetCardInfo("Kardur's Vicious Return", 217, Rarity.UNCOMMON, mage.cards.k.KardursViciousReturn.class));
|
||||
cards.add(new SetCardInfo("Kardur, Doomscourge", 216, Rarity.UNCOMMON, mage.cards.k.KardurDoomscourge.class));
|
||||
cards.add(new SetCardInfo("Kardur, Doomscourge", 216, Rarity.UNCOMMON, mage.cards.k.KardurDoomscourge.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Kardur, Doomscourge", 324, Rarity.UNCOMMON, mage.cards.k.KardurDoomscourge.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Karfell Harbinger", 65, Rarity.COMMON, mage.cards.k.KarfellHarbinger.class));
|
||||
cards.add(new SetCardInfo("Karfell Kennel-Master", 101, Rarity.COMMON, mage.cards.k.KarfellKennelMaster.class));
|
||||
cards.add(new SetCardInfo("Kaya the Inexorable", 218, Rarity.MYTHIC, mage.cards.k.KayaTheInexorable.class));
|
||||
cards.add(new SetCardInfo("Kaya the Inexorable", 218, Rarity.MYTHIC, mage.cards.k.KayaTheInexorable.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Kaya the Inexorable", 288, Rarity.MYTHIC, mage.cards.k.KayaTheInexorable.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Kaya's Onslaught", 18, Rarity.UNCOMMON, mage.cards.k.KayasOnslaught.class));
|
||||
cards.add(new SetCardInfo("King Harald's Revenge", 180, Rarity.COMMON, mage.cards.k.KingHaraldsRevenge.class));
|
||||
cards.add(new SetCardInfo("King Narfi's Betrayal", 219, Rarity.RARE, mage.cards.k.KingNarfisBetrayal.class));
|
||||
cards.add(new SetCardInfo("Koll, the Forgemaster", 220, Rarity.UNCOMMON, mage.cards.k.KollTheForgemaster.class));
|
||||
cards.add(new SetCardInfo("Koll, the Forgemaster", 220, Rarity.UNCOMMON, mage.cards.k.KollTheForgemaster.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Koll, the Forgemaster", 325, Rarity.UNCOMMON, mage.cards.k.KollTheForgemaster.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Kolvori, God of Kinship", 181, Rarity.RARE, mage.cards.k.KolvoriGodOfKinship.class));
|
||||
cards.add(new SetCardInfo("Kolvori, God of Kinship", 318, Rarity.RARE, mage.cards.k.KolvoriGodOfKinship.class));
|
||||
cards.add(new SetCardInfo("Koma's Faithful", 102, Rarity.COMMON, mage.cards.k.KomasFaithful.class));
|
||||
cards.add(new SetCardInfo("Koma, Cosmos Serpent", 221, Rarity.MYTHIC, mage.cards.k.KomaCosmosSerpent.class));
|
||||
cards.add(new SetCardInfo("Koma, Cosmos Serpent", 221, Rarity.MYTHIC, mage.cards.k.KomaCosmosSerpent.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Koma, Cosmos Serpent", 326, Rarity.MYTHIC, mage.cards.k.KomaCosmosSerpent.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Littjara Glade-Warden", 182, Rarity.UNCOMMON, mage.cards.l.LittjaraGladeWarden.class));
|
||||
cards.add(new SetCardInfo("Littjara Kinseekers", 66, Rarity.COMMON, mage.cards.l.LittjaraKinseekers.class));
|
||||
cards.add(new SetCardInfo("Littjara Mirrorlake", 264, Rarity.UNCOMMON, mage.cards.l.LittjaraMirrorlake.class));
|
||||
cards.add(new SetCardInfo("Magda, Brazen Outlaw", 142, Rarity.RARE, mage.cards.m.MagdaBrazenOutlaw.class));
|
||||
cards.add(new SetCardInfo("Maja, Bretagard Protector", 222, Rarity.UNCOMMON, mage.cards.m.MajaBretagardProtector.class));
|
||||
cards.add(new SetCardInfo("Magda, Brazen Outlaw", 142, Rarity.RARE, mage.cards.m.MagdaBrazenOutlaw.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Magda, Brazen Outlaw", 312, Rarity.RARE, mage.cards.m.MagdaBrazenOutlaw.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Maja, Bretagard Protector", 222, Rarity.UNCOMMON, mage.cards.m.MajaBretagardProtector.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Maja, Bretagard Protector", 327, Rarity.UNCOMMON, mage.cards.m.MajaBretagardProtector.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mammoth Growth", 183, Rarity.COMMON, mage.cards.m.MammothGrowth.class));
|
||||
cards.add(new SetCardInfo("Masked Vandal", 184, Rarity.COMMON, mage.cards.m.MaskedVandal.class));
|
||||
cards.add(new SetCardInfo("Maskwood Nexus", 240, Rarity.RARE, mage.cards.m.MaskwoodNexus.class));
|
||||
cards.add(new SetCardInfo("Masked Vandal", 184, Rarity.COMMON, mage.cards.m.MaskedVandal.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Masked Vandal", 405, Rarity.COMMON, mage.cards.m.MaskedVandal.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Maskwood Nexus", 240, Rarity.RARE, mage.cards.m.MaskwoodNexus.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Maskwood Nexus", 369, Rarity.RARE, mage.cards.m.MaskwoodNexus.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Master Skald", 19, Rarity.COMMON, mage.cards.m.MasterSkald.class));
|
||||
cards.add(new SetCardInfo("Mists of Littjara", 67, Rarity.COMMON, mage.cards.m.MistsOfLittjara.class));
|
||||
cards.add(new SetCardInfo("Mistwalker", 68, Rarity.COMMON, mage.cards.m.Mistwalker.class));
|
||||
cards.add(new SetCardInfo("Moritte of the Frost", 223, Rarity.UNCOMMON, mage.cards.m.MoritteOfTheFrost.class));
|
||||
cards.add(new SetCardInfo("Moritte of the Frost", 223, Rarity.UNCOMMON, mage.cards.m.MoritteOfTheFrost.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Moritte of the Frost", 328, Rarity.UNCOMMON, mage.cards.m.MoritteOfTheFrost.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mountain", 397, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mystic Reflection", 69, Rarity.RARE, mage.cards.m.MysticReflection.class));
|
||||
cards.add(new SetCardInfo("Narfi, Betrayer King", 224, Rarity.UNCOMMON, mage.cards.n.NarfiBetrayerKing.class));
|
||||
cards.add(new SetCardInfo("Niko Aris", 225, Rarity.MYTHIC, mage.cards.n.NikoAris.class));
|
||||
cards.add(new SetCardInfo("Mystic Reflection", 346, Rarity.RARE, mage.cards.m.MysticReflection.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mystic Reflection", 69, Rarity.RARE, mage.cards.m.MysticReflection.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Narfi, Betrayer King", 224, Rarity.UNCOMMON, mage.cards.n.NarfiBetrayerKing.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Narfi, Betrayer King", 329, Rarity.UNCOMMON, mage.cards.n.NarfiBetrayerKing.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Niko Aris", 225, Rarity.MYTHIC, mage.cards.n.NikoAris.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Niko Aris", 289, Rarity.MYTHIC, mage.cards.n.NikoAris.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Niko Defies Destiny", 226, Rarity.UNCOMMON, mage.cards.n.NikoDefiesDestiny.class));
|
||||
cards.add(new SetCardInfo("Old-Growth Troll", 185, Rarity.RARE, mage.cards.o.OldGrowthTroll.class));
|
||||
cards.add(new SetCardInfo("Old-Growth Troll", 185, Rarity.RARE, mage.cards.o.OldGrowthTroll.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Old-Growth Troll", 365, Rarity.RARE, mage.cards.o.OldGrowthTroll.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Open the Omenpaths", 143, Rarity.COMMON, mage.cards.o.OpenTheOmenpaths.class));
|
||||
cards.add(new SetCardInfo("Orvar, the All-Form", 70, Rarity.MYTHIC, mage.cards.o.OrvarTheAllForm.class));
|
||||
cards.add(new SetCardInfo("Orvar, the All-Form", 305, Rarity.MYTHIC, mage.cards.o.OrvarTheAllForm.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Orvar, the All-Form", 70, Rarity.MYTHIC, mage.cards.o.OrvarTheAllForm.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Path to the World Tree", 186, Rarity.UNCOMMON, mage.cards.p.PathToTheWorldTree.class));
|
||||
cards.add(new SetCardInfo("Pilfering Hawk", 71, Rarity.COMMON, mage.cards.p.PilferingHawk.class));
|
||||
cards.add(new SetCardInfo("Plains", 394, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Poison the Cup", 103, Rarity.UNCOMMON, mage.cards.p.PoisonTheCup.class));
|
||||
cards.add(new SetCardInfo("Poison the Cup", 103, Rarity.UNCOMMON, mage.cards.p.PoisonTheCup.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Poison the Cup", 403, Rarity.UNCOMMON, mage.cards.p.PoisonTheCup.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Port of Karfell", 265, Rarity.UNCOMMON, mage.cards.p.PortOfKarfell.class));
|
||||
cards.add(new SetCardInfo("Priest of the Haunted Edge", 104, Rarity.COMMON, mage.cards.p.PriestOfTheHauntedEdge.class));
|
||||
cards.add(new SetCardInfo("Provoke the Trolls", 144, Rarity.UNCOMMON, mage.cards.p.ProvokeTheTrolls.class));
|
||||
cards.add(new SetCardInfo("Pyre of Heroes", 241, Rarity.RARE, mage.cards.p.PyreOfHeroes.class));
|
||||
cards.add(new SetCardInfo("Quakebringer", 145, Rarity.MYTHIC, mage.cards.q.Quakebringer.class));
|
||||
cards.add(new SetCardInfo("Pyre of Heroes", 241, Rarity.RARE, mage.cards.p.PyreOfHeroes.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Pyre of Heroes", 370, Rarity.RARE, mage.cards.p.PyreOfHeroes.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Quakebringer", 145, Rarity.MYTHIC, mage.cards.q.Quakebringer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Quakebringer", 297, Rarity.MYTHIC, mage.cards.q.Quakebringer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Raiders' Karve", 242, Rarity.COMMON, mage.cards.r.RaidersKarve.class));
|
||||
cards.add(new SetCardInfo("Raise the Draugr", 105, Rarity.COMMON, mage.cards.r.RaiseTheDraugr.class));
|
||||
cards.add(new SetCardInfo("Rally the Ranks", 20, Rarity.RARE, mage.cards.r.RallyTheRanks.class));
|
||||
cards.add(new SetCardInfo("Rally the Ranks", 20, Rarity.RARE, mage.cards.r.RallyTheRanks.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Rally the Ranks", 336, Rarity.RARE, mage.cards.r.RallyTheRanks.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Rampage of the Valkyries", 393, Rarity.UNCOMMON, mage.cards.r.RampageOfTheValkyries.class));
|
||||
cards.add(new SetCardInfo("Raven Wings", 243, Rarity.COMMON, mage.cards.r.RavenWings.class));
|
||||
cards.add(new SetCardInfo("Ravenform", 72, Rarity.COMMON, mage.cards.r.Ravenform.class));
|
||||
cards.add(new SetCardInfo("Ravenous Lindwurm", 187, Rarity.COMMON, mage.cards.r.RavenousLindwurm.class));
|
||||
cards.add(new SetCardInfo("Realmwalker", 188, Rarity.RARE, mage.cards.r.Realmwalker.class));
|
||||
cards.add(new SetCardInfo("Reckless Crew", 146, Rarity.RARE, mage.cards.r.RecklessCrew.class));
|
||||
cards.add(new SetCardInfo("Reflections of Littjara", 73, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class));
|
||||
cards.add(new SetCardInfo("Realmwalker", 188, Rarity.RARE, mage.cards.r.Realmwalker.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Realmwalker", 366, Rarity.RARE, mage.cards.r.Realmwalker.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Realmwalker", 399, Rarity.RARE, mage.cards.r.Realmwalker.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Reckless Crew", 146, Rarity.RARE, mage.cards.r.RecklessCrew.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Reckless Crew", 359, Rarity.RARE, mage.cards.r.RecklessCrew.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Reflections of Littjara", 347, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Reflections of Littjara", 400, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Reflections of Littjara", 73, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Reidane, God of the Worthy", 21, Rarity.RARE, mage.cards.r.ReidaneGodOfTheWorthy.class));
|
||||
cards.add(new SetCardInfo("Reidane, God of the Worthy", 300, Rarity.RARE, mage.cards.r.ReidaneGodOfTheWorthy.class));
|
||||
cards.add(new SetCardInfo("Renegade Reaper", 386, Rarity.UNCOMMON, mage.cards.r.RenegadeReaper.class));
|
||||
cards.add(new SetCardInfo("Replicating Ring", 244, Rarity.UNCOMMON, mage.cards.r.ReplicatingRing.class));
|
||||
cards.add(new SetCardInfo("Resplendent Marshal", 22, Rarity.MYTHIC, mage.cards.r.ResplendentMarshal.class));
|
||||
cards.add(new SetCardInfo("Resplendent Marshal", 22, Rarity.MYTHIC, mage.cards.r.ResplendentMarshal.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Resplendent Marshal", 337, Rarity.MYTHIC, mage.cards.r.ResplendentMarshal.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Return Upon the Tide", 106, Rarity.UNCOMMON, mage.cards.r.ReturnUponTheTide.class));
|
||||
cards.add(new SetCardInfo("Revitalize", 23, Rarity.COMMON, mage.cards.r.Revitalize.class));
|
||||
cards.add(new SetCardInfo("Righteous Valkyrie", 24, Rarity.RARE, mage.cards.r.RighteousValkyrie.class));
|
||||
cards.add(new SetCardInfo("Righteous Valkyrie", 24, Rarity.RARE, mage.cards.r.RighteousValkyrie.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Righteous Valkyrie", 338, Rarity.RARE, mage.cards.r.RighteousValkyrie.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Rimewood Falls", 266, Rarity.COMMON, mage.cards.r.RimewoodFalls.class));
|
||||
cards.add(new SetCardInfo("Rise of the Dread Marn", 107, Rarity.RARE, mage.cards.r.RiseOfTheDreadMarn.class));
|
||||
cards.add(new SetCardInfo("Rise of the Dread Marn", 107, Rarity.RARE, mage.cards.r.RiseOfTheDreadMarn.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Rise of the Dread Marn", 354, Rarity.RARE, mage.cards.r.RiseOfTheDreadMarn.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Rootless Yew", 189, Rarity.UNCOMMON, mage.cards.r.RootlessYew.class));
|
||||
cards.add(new SetCardInfo("Roots of Wisdom", 190, Rarity.COMMON, mage.cards.r.RootsOfWisdom.class));
|
||||
cards.add(new SetCardInfo("Run Amok", 147, Rarity.COMMON, mage.cards.r.RunAmok.class));
|
||||
|
@ -264,30 +336,40 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Rune of Speed", 148, Rarity.UNCOMMON, mage.cards.r.RuneOfSpeed.class));
|
||||
cards.add(new SetCardInfo("Rune of Sustenance", 25, Rarity.UNCOMMON, mage.cards.r.RuneOfSustenance.class));
|
||||
cards.add(new SetCardInfo("Runed Crown", 245, Rarity.UNCOMMON, mage.cards.r.RunedCrown.class));
|
||||
cards.add(new SetCardInfo("Runeforge Champion", 26, Rarity.RARE, mage.cards.r.RuneforgeChampion.class));
|
||||
cards.add(new SetCardInfo("Runeforge Champion", 26, Rarity.RARE, mage.cards.r.RuneforgeChampion.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Runeforge Champion", 339, Rarity.RARE, mage.cards.r.RuneforgeChampion.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sarulf's Packmate", 192, Rarity.COMMON, mage.cards.s.SarulfsPackmate.class));
|
||||
cards.add(new SetCardInfo("Sarulf, Realm Eater", 228, Rarity.RARE, mage.cards.s.SarulfRealmEater.class));
|
||||
cards.add(new SetCardInfo("Sarulf, Realm Eater", 228, Rarity.RARE, mage.cards.s.SarulfRealmEater.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sarulf, Realm Eater", 330, Rarity.RARE, mage.cards.s.SarulfRealmEater.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Saw It Coming", 76, Rarity.UNCOMMON, mage.cards.s.SawItComing.class));
|
||||
cards.add(new SetCardInfo("Scorn Effigy", 246, Rarity.COMMON, mage.cards.s.ScornEffigy.class));
|
||||
cards.add(new SetCardInfo("Sculptor of Winter", 193, Rarity.COMMON, mage.cards.s.SculptorOfWinter.class));
|
||||
cards.add(new SetCardInfo("Search for Glory", 27, Rarity.RARE, mage.cards.s.SearchForGlory.class));
|
||||
cards.add(new SetCardInfo("Search for Glory", 27, Rarity.RARE, mage.cards.s.SearchForGlory.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Search for Glory", 340, Rarity.RARE, mage.cards.s.SearchForGlory.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Seize the Spoils", 149, Rarity.COMMON, mage.cards.s.SeizeTheSpoils.class));
|
||||
cards.add(new SetCardInfo("Shackles of Treachery", 150, Rarity.COMMON, mage.cards.s.ShacklesOfTreachery.class));
|
||||
cards.add(new SetCardInfo("Shepherd of the Cosmos", 28, Rarity.UNCOMMON, mage.cards.s.ShepherdOfTheCosmos.class));
|
||||
cards.add(new SetCardInfo("Shimmerdrift Vale", 267, Rarity.COMMON, mage.cards.s.ShimmerdriftVale.class));
|
||||
cards.add(new SetCardInfo("Showdown of the Skalds", 229, Rarity.RARE, mage.cards.s.ShowdownOfTheSkalds.class));
|
||||
cards.add(new SetCardInfo("Sigrid, God-Favored", 29, Rarity.RARE, mage.cards.s.SigridGodFavored.class));
|
||||
cards.add(new SetCardInfo("Skemfar Avenger", 109, Rarity.RARE, mage.cards.s.SkemfarAvenger.class));
|
||||
cards.add(new SetCardInfo("Sigrid, God-Favored", 29, Rarity.RARE, mage.cards.s.SigridGodFavored.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sigrid, God-Favored", 301, Rarity.RARE, mage.cards.s.SigridGodFavored.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Skemfar Avenger", 109, Rarity.RARE, mage.cards.s.SkemfarAvenger.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Skemfar Avenger", 355, Rarity.RARE, mage.cards.s.SkemfarAvenger.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Skemfar Elderhall", 268, Rarity.UNCOMMON, mage.cards.s.SkemfarElderhall.class));
|
||||
cards.add(new SetCardInfo("Skemfar Shadowsage", 110, Rarity.UNCOMMON, mage.cards.s.SkemfarShadowsage.class));
|
||||
cards.add(new SetCardInfo("Skull Raid", 111, Rarity.COMMON, mage.cards.s.SkullRaid.class));
|
||||
cards.add(new SetCardInfo("Smashing Success", 151, Rarity.COMMON, mage.cards.s.SmashingSuccess.class));
|
||||
cards.add(new SetCardInfo("Snakeskin Veil", 194, Rarity.COMMON, mage.cards.s.SnakeskinVeil.class));
|
||||
cards.add(new SetCardInfo("Snow-Covered Forest", 284, Rarity.LAND, mage.cards.s.SnowCoveredForest.class));
|
||||
cards.add(new SetCardInfo("Snow-Covered Island", 278, Rarity.LAND, mage.cards.s.SnowCoveredIsland.class));
|
||||
cards.add(new SetCardInfo("Snow-Covered Mountain", 282, Rarity.LAND, mage.cards.s.SnowCoveredMountain.class));
|
||||
cards.add(new SetCardInfo("Snow-Covered Plains", 276, Rarity.LAND, mage.cards.s.SnowCoveredPlains.class));
|
||||
cards.add(new SetCardInfo("Snow-Covered Swamp", 280, Rarity.LAND, mage.cards.s.SnowCoveredSwamp.class));
|
||||
cards.add(new SetCardInfo("Snow-Covered Forest", 284, Rarity.LAND, mage.cards.s.SnowCoveredForest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Forest", 285, Rarity.LAND, mage.cards.s.SnowCoveredForest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Island", 278, Rarity.LAND, mage.cards.s.SnowCoveredIsland.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Island", 279, Rarity.LAND, mage.cards.s.SnowCoveredIsland.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Mountain", 282, Rarity.LAND, mage.cards.s.SnowCoveredMountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Mountain", 283, Rarity.LAND, mage.cards.s.SnowCoveredMountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Plains", 276, Rarity.LAND, mage.cards.s.SnowCoveredPlains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Plains", 277, Rarity.LAND, mage.cards.s.SnowCoveredPlains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Swamp", 280, Rarity.LAND, mage.cards.s.SnowCoveredSwamp.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Swamp", 281, Rarity.LAND, mage.cards.s.SnowCoveredSwamp.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snowfield Sinkhole", 269, Rarity.COMMON, mage.cards.s.SnowfieldSinkhole.class));
|
||||
cards.add(new SetCardInfo("Spectral Steel", 30, Rarity.UNCOMMON, mage.cards.s.SpectralSteel.class));
|
||||
cards.add(new SetCardInfo("Spirit of the Aldergard", 195, Rarity.UNCOMMON, mage.cards.s.SpiritOfTheAldergard.class));
|
||||
|
@ -295,46 +377,64 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Stalwart Valkyrie", 31, Rarity.COMMON, mage.cards.s.StalwartValkyrie.class));
|
||||
cards.add(new SetCardInfo("Starnheim Aspirant", 380, Rarity.UNCOMMON, mage.cards.s.StarnheimAspirant.class));
|
||||
cards.add(new SetCardInfo("Starnheim Courser", 32, Rarity.COMMON, mage.cards.s.StarnheimCourser.class));
|
||||
cards.add(new SetCardInfo("Starnheim Unleashed", 33, Rarity.MYTHIC, mage.cards.s.StarnheimUnleashed.class));
|
||||
cards.add(new SetCardInfo("Starnheim Unleashed", 294, Rarity.MYTHIC, mage.cards.s.StarnheimUnleashed.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Starnheim Unleashed", 33, Rarity.MYTHIC, mage.cards.s.StarnheimUnleashed.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Story Seeker", 34, Rarity.COMMON, mage.cards.s.StorySeeker.class));
|
||||
cards.add(new SetCardInfo("Strategic Planning", 77, Rarity.COMMON, mage.cards.s.StrategicPlanning.class));
|
||||
cards.add(new SetCardInfo("Strategic Planning", 402, Rarity.COMMON, mage.cards.s.StrategicPlanning.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Strategic Planning", 77, Rarity.COMMON, mage.cards.s.StrategicPlanning.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Struggle for Skemfar", 196, Rarity.COMMON, mage.cards.s.StruggleForSkemfar.class));
|
||||
cards.add(new SetCardInfo("Sulfurous Mire", 270, Rarity.COMMON, mage.cards.s.SulfurousMire.class));
|
||||
cards.add(new SetCardInfo("Surtland Elementalist", 375, Rarity.RARE, mage.cards.s.SurtlandElementalist.class));
|
||||
cards.add(new SetCardInfo("Surtland Flinger", 377, Rarity.RARE, mage.cards.s.SurtlandFlinger.class));
|
||||
cards.add(new SetCardInfo("Surtland Frostpyre", 271, Rarity.UNCOMMON, mage.cards.s.SurtlandFrostpyre.class));
|
||||
cards.add(new SetCardInfo("Svella, Ice Shaper", 230, Rarity.UNCOMMON, mage.cards.s.SvellaIceShaper.class));
|
||||
cards.add(new SetCardInfo("Svella, Ice Shaper", 230, Rarity.UNCOMMON, mage.cards.s.SvellaIceShaper.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Svella, Ice Shaper", 331, Rarity.UNCOMMON, mage.cards.s.SvellaIceShaper.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Swamp", 396, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tergrid's Shadow", 113, Rarity.UNCOMMON, mage.cards.t.TergridsShadow.class));
|
||||
cards.add(new SetCardInfo("Tergrid, God of Fright", 112, Rarity.RARE, mage.cards.t.TergridGodOfFright.class));
|
||||
cards.add(new SetCardInfo("Tergrid, God of Fright", 307, Rarity.RARE, mage.cards.t.TergridGodOfFright.class));
|
||||
cards.add(new SetCardInfo("The Bears of Littjara", 205, Rarity.RARE, mage.cards.t.TheBearsOfLittjara.class));
|
||||
cards.add(new SetCardInfo("The Bloodsky Massacre", 207, Rarity.RARE, mage.cards.t.TheBloodskyMassacre.class));
|
||||
cards.add(new SetCardInfo("The Raven's Warning", 227, Rarity.RARE, mage.cards.t.TheRavensWarning.class));
|
||||
cards.add(new SetCardInfo("The Three Seasons", 231, Rarity.UNCOMMON, mage.cards.t.TheThreeSeasons.class));
|
||||
cards.add(new SetCardInfo("The Trickster-God's Heist", 232, Rarity.UNCOMMON, mage.cards.t.TheTricksterGodsHeist.class));
|
||||
cards.add(new SetCardInfo("The World Tree", 275, Rarity.RARE, mage.cards.t.TheWorldTree.class));
|
||||
cards.add(new SetCardInfo("The World Tree", 275, Rarity.RARE, mage.cards.t.TheWorldTree.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("The World Tree", 373, Rarity.RARE, mage.cards.t.TheWorldTree.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Thornmantle Striker", 387, Rarity.UNCOMMON, mage.cards.t.ThornmantleStriker.class));
|
||||
cards.add(new SetCardInfo("Tibalt's Trickery", 153, Rarity.RARE, mage.cards.t.TibaltsTrickery.class));
|
||||
cards.add(new SetCardInfo("Tibalt's Trickery", 153, Rarity.RARE, mage.cards.t.TibaltsTrickery.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tibalt's Trickery", 360, Rarity.RARE, mage.cards.t.TibaltsTrickery.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Toralf, God of Fury", 154, Rarity.MYTHIC, mage.cards.t.ToralfGodOfFury.class));
|
||||
cards.add(new SetCardInfo("Toralf, God of Fury", 313, Rarity.MYTHIC, mage.cards.t.ToralfGodOfFury.class));
|
||||
cards.add(new SetCardInfo("Tormentor's Helm", 155, Rarity.COMMON, mage.cards.t.TormentorsHelm.class));
|
||||
cards.add(new SetCardInfo("Toski, Bearer of Secrets", 197, Rarity.RARE, mage.cards.t.ToskiBearerOfSecrets.class));
|
||||
cards.add(new SetCardInfo("Tundra Fumarole", 156, Rarity.RARE, mage.cards.t.TundraFumarole.class));
|
||||
cards.add(new SetCardInfo("Toski, Bearer of Secrets", 197, Rarity.RARE, mage.cards.t.ToskiBearerOfSecrets.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Toski, Bearer of Secrets", 319, Rarity.RARE, mage.cards.t.ToskiBearerOfSecrets.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tundra Fumarole", 156, Rarity.RARE, mage.cards.t.TundraFumarole.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tundra Fumarole", 361, Rarity.RARE, mage.cards.t.TundraFumarole.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tuskeri Firewalker", 157, Rarity.COMMON, mage.cards.t.TuskeriFirewalker.class));
|
||||
cards.add(new SetCardInfo("Tyrite Sanctum", 272, Rarity.RARE, mage.cards.t.TyriteSanctum.class));
|
||||
cards.add(new SetCardInfo("Tyvar Kell", 198, Rarity.MYTHIC, mage.cards.t.TyvarKell.class));
|
||||
cards.add(new SetCardInfo("Tyrite Sanctum", 272, Rarity.RARE, mage.cards.t.TyriteSanctum.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tyrite Sanctum", 372, Rarity.RARE, mage.cards.t.TyriteSanctum.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tyvar Kell", 198, Rarity.MYTHIC, mage.cards.t.TyvarKell.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tyvar Kell", 287, Rarity.MYTHIC, mage.cards.t.TyvarKell.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Undersea Invader", 78, Rarity.COMMON, mage.cards.u.UnderseaInvader.class));
|
||||
cards.add(new SetCardInfo("Usher of the Fallen", 35, Rarity.UNCOMMON, mage.cards.u.UsherOfTheFallen.class));
|
||||
cards.add(new SetCardInfo("Usher of the Fallen", 35, Rarity.UNCOMMON, mage.cards.u.UsherOfTheFallen.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Usher of the Fallen", 401, Rarity.UNCOMMON, mage.cards.u.UsherOfTheFallen.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Valki, God of Lies", 114, Rarity.MYTHIC, mage.cards.v.ValkiGodOfLies.class));
|
||||
cards.add(new SetCardInfo("Valki, God of Lies", 286, Rarity.MYTHIC, mage.cards.v.ValkiGodOfLies.class));
|
||||
cards.add(new SetCardInfo("Valki, God of Lies", 308, Rarity.MYTHIC, mage.cards.v.ValkiGodOfLies.class));
|
||||
cards.add(new SetCardInfo("Valkyrie Harbinger", 374, Rarity.RARE, mage.cards.v.ValkyrieHarbinger.class));
|
||||
cards.add(new SetCardInfo("Valkyrie's Sword", 36, Rarity.UNCOMMON, mage.cards.v.ValkyriesSword.class));
|
||||
cards.add(new SetCardInfo("Valor of the Worthy", 37, Rarity.COMMON, mage.cards.v.ValorOfTheWorthy.class));
|
||||
cards.add(new SetCardInfo("Varragoth, Bloodsky Sire", 115, Rarity.RARE, mage.cards.v.VarragothBloodskySire.class));
|
||||
cards.add(new SetCardInfo("Varragoth, Bloodsky Sire", 115, Rarity.RARE, mage.cards.v.VarragothBloodskySire.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Varragoth, Bloodsky Sire", 309, Rarity.RARE, mage.cards.v.VarragothBloodskySire.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Vault Robber", 158, Rarity.COMMON, mage.cards.v.VaultRobber.class));
|
||||
cards.add(new SetCardInfo("Vega, the Watcher", 233, Rarity.UNCOMMON, mage.cards.v.VegaTheWatcher.class));
|
||||
cards.add(new SetCardInfo("Vega, the Watcher", 233, Rarity.UNCOMMON, mage.cards.v.VegaTheWatcher.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Vega, the Watcher", 332, Rarity.UNCOMMON, mage.cards.v.VegaTheWatcher.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Vengeful Reaper", 116, Rarity.UNCOMMON, mage.cards.v.VengefulReaper.class));
|
||||
cards.add(new SetCardInfo("Village Rites", 117, Rarity.COMMON, mage.cards.v.VillageRites.class));
|
||||
cards.add(new SetCardInfo("Volatile Fjord", 273, Rarity.COMMON, mage.cards.v.VolatileFjord.class));
|
||||
cards.add(new SetCardInfo("Vorinclex, Monstrous Raider", 199, Rarity.MYTHIC, mage.cards.v.VorinclexMonstrousRaider.class));
|
||||
cards.add(new SetCardInfo("Vorinclex, Monstrous Raider", 199, Rarity.MYTHIC, mage.cards.v.VorinclexMonstrousRaider.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Vorinclex, Monstrous Raider", 320, Rarity.MYTHIC, mage.cards.v.VorinclexMonstrousRaider.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Vorinclex, Monstrous Raider", 333, Rarity.MYTHIC, mage.cards.v.VorinclexMonstrousRaider.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Waking the Trolls", 234, Rarity.RARE, mage.cards.w.WakingTheTrolls.class));
|
||||
cards.add(new SetCardInfo("Warchanter Skald", 381, Rarity.UNCOMMON, mage.cards.w.WarchanterSkald.class));
|
||||
cards.add(new SetCardInfo("Warhorn Blast", 38, Rarity.COMMON, mage.cards.w.WarhornBlast.class));
|
||||
|
|
|
@ -40159,7 +40159,7 @@ Iron Verdict|Kaldheim|17|C|{2}{W}|Instant|||Iron Verdict deals 5 damage to targe
|
|||
Kaya's Onslaught|Kaldheim|18|U|{2}{W}|Instant|||Target creature gets +1/+1 and gains double strike until end of turn.$Foretell {W}|
|
||||
Master Skald|Kaldheim|19|C|{4}{W}|Creature - Dwarf Warrior|4|4|When Master Skald enters the battlefield, you may exile a creature card from your graveyard. If you do, return target artifact or enchantment card from your graveyard to your hand.|
|
||||
Rally the Ranks|Kaldheim|20|R|{1}{W}|Enchantment|||As Rally the Ranks enters the battlefield, choose a creature type.$Creatures you control of the chosen type get +1/+1.|
|
||||
Reidane, God of the Worthy|Kaldheim|21|R|{2}{W}|Legendary Creature - God|2|3|Flying, vigilance$Snow lands your opponents control enter the battlefield tapped.$Noncreature spells your opponents cast with converted mana cost 4 or more cost {2} more to cast.|
|
||||
Reidane, God of the Worthy|Kaldheim|21|R|{2}{W}|Legendary Creature - God|2|3|Flying, vigilance$Snow lands your opponents control enter the battlefield tapped.$Noncreature spells your opponents cast with converted mana cost 4 or greater cost {2} more to cast.|
|
||||
Valkmira, Protector's Shield|Kaldheim|21|R|{3}{W}|Legendary Artifact|||If a source an opponent controls would deal damage to you or a permanent you control, prevent 1 of that damage.$Whenever you or a permanent you control becomes the target of a spell or ability an opponent controls, counter that spell or ability unless its controller pays {1}.|
|
||||
Resplendent Marshal|Kaldheim|22|M|{1}{W}{W}|Creature - Angel Warrior|3|3|Flying$When Resplendent Marshal enters the battlefield or dies, you may exile another creature card from your graveyard. When you do, put a +1/+1 counter on each creature you control other than Resplendent Marshal that shares a creature type with the exiled card.|
|
||||
Revitalize|Kaldheim|23|C|{1}{W}|Instant|||You gain 3 life.$Draw a card.|
|
||||
|
@ -40179,22 +40179,22 @@ Valkyrie's Sword|Kaldheim|36|U|{1}{W}|Artifact - Equipment|||When Valkyrie's Swo
|
|||
Valor of the Worthy|Kaldheim|37|C|{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +1/+1.$When enchanted creature leaves the battlefield, create a 1/1 white Spirit creature token with flying.|
|
||||
Warhorn Blast|Kaldheim|38|C|{4}{W}|Instant|||Creatures you control get +2/+1 until end of turn.$Foretell {2}{W}|
|
||||
Wings of the Cosmos|Kaldheim|39|C|{W}|Instant|||Target creature gets +1/+3 and gains flying until end of turn. Untap it.|
|
||||
Alrund, God of the Cosmos|Kaldheim|40|M|{3}{U}{U}|Legendary Creature - God|1|1|Alrund gets +1/+1 for each card in your hand and each foretold card you own in exile.$At the beginning of your end step, choose a card type, then reveal the top two cards of your library. Put all cards of the chosen type into your hand and the rest on the bottom of your library in any order.|
|
||||
Alrund, God of the Cosmos|Kaldheim|40|M|{3}{U}{U}|Legendary Creature - God|1|1|Alrund gets +1/+1 for each card in your hand and each foretold card you own in exile.$At the beginning of your end step, choose a card type, then reveal the top two cards of your library. Put all cards revealed this way of the chosen type into your hand and the rest on the bottom of your library in any order.|
|
||||
Hakka, Whispering Raven|Kaldheim|40|M|{1}{U}|Legendary Creature - Bird|2|3|Flying$Whenever Hakka, Whispering Raven deals combat damage to a player, return it to its owner's hand, then scry 2.|
|
||||
Alrund's Epiphany|Kaldheim|41|M|{5}{U}{U}|Sorcery|||Create two 1/1 blue Bird creature tokens with flying. Take an extra turn after this one. Exile Alrund's Epiphany.$Foretell {4}{U}{U}|
|
||||
Annul|Kaldheim|42|C|{U}|Instant|||Counter target artifact or enchantment spell.|
|
||||
Ascendant Spirit|Kaldheim|43|R|{U}|Snow Creature - Spirit|1|1|{S}{S}: Ascendant Spirit becomes a Spirit Warrior with base power and toughness 2/3.${S}{S}{S}: If Ascendant Spirit is a Warrior, put a flying counter on it and it becomes a Spirit Warrior Angel with base power and toughness 4/4.${S}{S}{S}{S}: If Ascendant Spirit is an Angel, put two +1/+1 counters on it and it gains "Whenever this creature deals combat damage to a player, draw a card."|
|
||||
Augury Raven|Kaldheim|44|C|{3}{U}|Creature - Bird|3|3|Flying$Foretell {1}{U}|
|
||||
Avalanche Caller|Kaldheim|45|U|{1}{U}|Snow Creature - Human Wizard|1|3|{2}: Target snow land you control becomes a 4/4 Elemental creature with haste and hexproof until end of turn. It's still a land.|
|
||||
Avalanche Caller|Kaldheim|45|U|{1}{U}|Snow Creature - Human Wizard|1|3|{2}: Target snow land you control becomes a 4/4 Elemental creature with hexproof and haste until end of turn. It's still a land.|
|
||||
Behold the Multiverse|Kaldheim|46|C|{3}{U}|Instant|||Scry 2, then draw two cards.$Foretell {1}{U}|
|
||||
Berg Strider|Kaldheim|47|C|{4}{U}|Snow Creature - Giant Wizard|4|4|When Berg Strider enters the battlefield, tap target artifact or creature an opponent controls. If {S} was spent to cast this spell, that permanent doesn't untap during its controller's next untap step.|
|
||||
Bind the Monster|Kaldheim|48|C|{U}|Enchantment - Aura|||Enchant creature$When Bind the Monster enters the battlefield, tap enchanted creature. It deals damage to you equal to its power.$Enchanted creature doesn't untap during its controller's untap step.|
|
||||
Brinebarrow Intruder|Kaldheim|49|C|{U}|Creature - Human Rogue|1|2|Flash$When Brinebarrow Intruder enters the battlefield, target creature an opponent controls gets -2/-0 until end of turn.|
|
||||
Cosima, God of the Voyage|Kaldheim|50|R|{2}{U}|Legendary Creature - God|2|4|At the beginning of your upkeep, you may exile Cosima. If you do, it gains "Whenever a land enters the battlefield under your control, if Cosima is exiled, you may put a voyage counter on it. If you don't, return Cosima to the battlefield with X +1/+1 counters on it and draw X cards, where X is the number of voyage counters on it.|
|
||||
Cosima, God of the Voyage|Kaldheim|50|R|{2}{U}|Legendary Creature - God|2|4|At the beginning of your upkeep, you may exile Cosima. If you do, it gains "Whenever a land enters the battlefield under your control, if Cosima is exiled, you may put a voyage counter on it. If you don't, return Cosima to the battlefield with X +1/+1 counters on it and draw X cards, where X is the number of voyage counters on it."|
|
||||
The Omenkeel|Kaldheim|50|R|{1}{U}|Legendary Artifact - Vehicle|3|3|Whenever a Vehicle you control deals combat damage to a player, that player exiles that many cards from the top of their library. You may play lands from among those cards for as long as they remain exiled.$Crew 1|
|
||||
Cosmos Charger|Kaldheim|51|R|{3}{U}|Creature - Horse Spirit|3|3|Flash$Flying$Foretelling cards from your hand costs {1} less and can be done on any player's turn.$Foretell {2}{U}|
|
||||
Cyclone Summoner|Kaldheim|52|R|{5}{U}{U}|Creature - Giant Wizard|7|7|When Cyclone Summoner enters the battlefield, if you cast it from your hand, return all permanents to their owners' hands except for Giants, Wizards, and lands.|
|
||||
Depart the Realm|Kaldheim|53|C|{1}{U}|Instant|||Return target nonland permanent to its owners's hand.$Foretell {U}|
|
||||
Depart the Realm|Kaldheim|53|C|{1}{U}|Instant|||Return target nonland permanent to its owner's hand.$Foretell {U}|
|
||||
Disdainful Stroke|Kaldheim|54|C|{1}{U}|Instant|||Counter target spell with converted mana cost 4 or greater.|
|
||||
Draugr Thought-Thief|Kaldheim|55|C|{2}{U}|Creature - Zombie Rogue|3|2|When Draugr Thought-Thief enters the battlefield, look at the top card of target player's library. You may put that card into their graveyard.|
|
||||
Frost Augur|Kaldheim|56|U|{U}|Snow Creature - Human Wizard|1|2|{S}, {T}: Look at the top card of your library. If it's a snow card, you may reveal it and put it into your hand.|
|
||||
|
@ -40202,7 +40202,7 @@ Frostpeak Yeti|Kaldheim|57|C|{3}{U}|Snow Creature - Yeti|3|3|{1}{S}: Frostpeak Y
|
|||
Frostpyre Arcanist|Kaldheim|58|U|{4}{U}|Creature - Giant Wizard|2|5|This spell costs {1} less to cast if you control a Giant or a Wizard.$When Frostpyre Arcanist enters the battlefield, search your library for an instant or sorcery card with the same name as a card in your graveyard, reveal it, put it into your hand, then shuffle your library.|
|
||||
Giant's Amulet|Kaldheim|59|U|{U}|Artifact - Equipment|||When Giant's Amulet enters the battlefield, you may pay {3}{U}. If you do, create a 4/4 blue Giant Wizard creature token, then attach Giant's Amulet to it.$Equipped creature gets +0/+1 and has "This creature has hexproof as long as it's untapped."$Equip {2}|
|
||||
Glimpse the Cosmos|Kaldheim|60|U|{1}{U}|Sorcery|||Look at the top three cards of your library. Put one of them into your hand and the rest on the bottom of your library in any order.$As long as you control a Giant, you may cast Glimpse the Cosmos from your graveyard by paying {U} rather than paying its mana cost. If you cast Glimpse the Cosmos this way and it would be put into your graveyard, exile it instead.|
|
||||
Graven Lore|Kaldheim|61|R|{3}{U}{U}|Snow Instant|||Scry X, where is the amount of {S} spent to cast this spell, then draw three cards.|
|
||||
Graven Lore|Kaldheim|61|R|{3}{U}{U}|Snow Instant|||Scry X, where X is the amount of {S} spent to cast this spell, then draw three cards.|
|
||||
Icebind Pillar|Kaldheim|62|U|{2}{U}|Snow Artifact|||{S}, {T}: Tap target artifact or creature.|
|
||||
Icebreaker Kraken|Kaldheim|63|R|{10}{U}{U}|Snow Creature - Kraken|8|8|This spell costs {1} less to cast for each snow land you control.$When Icebreaker Kraken enters the battlefield, artifacts and creatures target opponent controls don't untap during that player's next untap step.$Return three snow lands you control to their owner's hand: Return Icebreaker Kraken to its owner's hand.|
|
||||
Inga Rune-Eyes|Kaldheim|64|U|{3}{U}|Legendary Creature - Human Wizard|3|3|When Inga Rune-Eyes enters the battlefield, scry 3.$When Inga Rune-Eyes dies, draw three cards if three or more creatures died this turn.|
|
||||
|
@ -40210,7 +40210,7 @@ Karfell Harbinger|Kaldheim|65|C|{1}{U}|Creature - Zombie Wizard|1|3|{T}: Add {U}
|
|||
Littjara Kinseekers|Kaldheim|66|C|{3}{U}|Creature - Shapeshifter|2|4|Changeling$When Littjara Kinseekers enters the battlefield, if you control three or more creatures that share a creature type, put a +1/+1 counter on Littjara Kinseekers, then scry 1.|
|
||||
Mists of Littjara|Kaldheim|67|C|{1}{U}|Enchantment - Aura|||Flash$Enchant creature or Vehicle$Enchanted creature gets -3/-0.|
|
||||
Mistwalker|Kaldheim|68|C|{2}{U}|Creature - Shapeshifter|1|4|Changeling$Flying${1}{U}: Mistwalker gets +1/-1 until end of turn.|
|
||||
Mystic Reflection|Kaldheim|69|R|{1}{U}|Instant|||Choose target nonlegendary creature. The next time one or more creatures or planeswalkers enter the battlefield this turn, they enter as copies of the chosen creature instead.$Foretell {U}|
|
||||
Mystic Reflection|Kaldheim|69|R|{1}{U}|Instant|||Choose target nonlegendary creature. The next time one or more creatures or planeswalkers enter the battlefield this turn, they enter as copies of the chosen creature.$Foretell {U}|
|
||||
Orvar, the All-Form|Kaldheim|70|M|{3}{U}|Legendary Creature - Shapeshifter|3|3|Changeling$Whenever you cast an instant or sorcery spell, if it targets one or more other permanents you control, create a token that's a copy of one of those permanents.$When a spell or ability an opponent controls causes you to discard this card, create a token that's a copy of target permanent.|
|
||||
Pilfering Hawk|Kaldheim|71|C|{1}{U}|Snow Creature - Bird|1|2|Flying${S}, {T}: Draw a card, then discard a card.|
|
||||
Ravenform|Kaldheim|72|C|{2}{U}|Sorcery|||Exile target artifact or creature. Its controller creates a 1/1 blue Bird creature token with flying.$Foretell {U}|
|
||||
|
@ -40240,7 +40240,7 @@ Eradicator Valkyrie|Kaldheim|94|M|{2}{B}{B}|Creature - Angel Berserker|4|3|Flyin
|
|||
Feed the Serpent|Kaldheim|95|C|{2}{B}{B}|Instant|||Exile target creature or planeswalker.|
|
||||
Grim Draugr|Kaldheim|96|C|{2}{B}|Snow Creature - Zombie Berserker|3|2|{1}{S}: Grim Draugr gets +1/+0 and gains menace until end of turn.|
|
||||
Hailstorm Valkyrie|Kaldheim|97|U|{3}{B}|Snow Creature - Angel Wizard|2|2|Flying, trample${S}{S}: Hailstorm Valkyrie gets +2/+2 until end of turn.|
|
||||
Haunting Voyage|Kaldheim|98|M|{4}{B}{B}|Sorcery|||Choose a creature type. Return up to two creature cards of the chosen type from your graveyard to the battlefield. If this spell was foretold, return all creature cards of the chosen type from your graveyard to the battlefield instead.$Foretell {5}{B}{B}|
|
||||
Haunting Voyage|Kaldheim|98|M|{4}{B}{B}|Sorcery|||Choose a creature type. Return up to two creature cards of that type from your graveyard to the battlefield. If this spell was foretold, return all creature cards of that type from your graveyard to the battlefield instead.$Foretell {5}{B}{B}|
|
||||
Infernal Pet|Kaldheim|99|C|{2}{B}|Creature - Imp|2|2|Whenever you cast your second spell each turn, put a +1/+1 counter on Infernal Pet and it gains flying until end of turn.|
|
||||
Jarl of the Forsaken|Kaldheim|100|C|{3}{B}|Creature - Zombie Cleric|3|2|Flash$When Jarl of the Forsaken enters the battlefield, destroy target creature or planeswalker an opponent controls that was dealt damage this turn.$Foretell {1}{B}|
|
||||
Karfell Kennel-Master|Kaldheim|101|C|{4}{B}|Creature - Zombie Berserker|4|4|When Karfell Kennel-Master enters the battlefield, up to two target creatures each get +1/+0 and gain indestructible until end of turn.|
|
||||
|
@ -40255,7 +40255,7 @@ Skemfar Avenger|Kaldheim|109|R|{1}{B}|Creature - Elf Berserker|3|1|Whenever anot
|
|||
Skemfar Shadowsage|Kaldheim|110|U|{3}{B}|Creature - Elf Cleric|2|5|When Skemfar Shadowsage enters the battlefield, choose one —$• Each opponent loses X life, where X is the greatest number of creatures you control that have a creature type in common.$• You gain X life, where X is the greatest number of creatures you control that have a creature type in common.|
|
||||
Skull Raid|Kaldheim|111|C|{3}{B}|Sorcery|||Target opponent discards two cards. If fewer than two cards were discarded this way, you draw cards equal to the difference.$Foretell {1}{B}|
|
||||
Tergrid's Lantern|Kaldheim|112|R|{3}{B}|Legendary Artifact|||{T}: Target player loses 3 life unless they sacrifice a nonland permanent or discard a card.${3}{B}: Untap Tergrid's Lantern.|
|
||||
Tergrid, God of Fright|Kaldheim|112|R|{3}{B}{B}|Legendary Creature - God|4|5|Menace$Whenever an opponent sacrifices a nontoken permanent or discards a permanent card, you may put that card onto the battlefield under your control from their graveyard.|
|
||||
Tergrid, God of Fright|Kaldheim|112|R|{3}{B}{B}|Legendary Creature - God|4|5|Menace$Whenever an opponent sacrifices a nontoken permanent or discards a permanent card, you may put that card from a graveyard onto the battlefield under your control.|
|
||||
Tergrid's Shadow|Kaldheim|113|U|{3}{B}{B}|Instant|||Each player sacrifices two creatures.$Foretell {2}{B}{B}|
|
||||
Tibalt, Cosmic Impostor|Kaldheim|114|M|{5}{B}{R}|Legendary Planeswalker - Tibalt|5|As Tibalt enters the battlefield, you get an emblem with "You may play cards exiled with Tibalt, Cosmic Impostor, and you may spend mana as though it were mana of any color to cast those spells."$+2: Exile the top card of each player's library.$−3: Exile target artifact or creature.$−8: Exile all cards from all graveyards. Add {R}{R}{R}.|
|
||||
Valki, God of Lies|Kaldheim|114|M|{1}{B}|Legendary Creature - God|2|1|When Valki enters the battlefield, each opponent reveals their hand. For each opponent, exile a creature card they revealed this way until Valki leaves the battlefield.${X}: Choose a creature card exiled with Valki with converted mana cost X. Valki becomes a copy of that card.|
|
||||
|
@ -40291,7 +40291,7 @@ Magda, Brazen Outlaw|Kaldheim|142|R|{1}{R}|Legendary Creature - Dwarf Berserker|
|
|||
Open the Omenpaths|Kaldheim|143|C|{2}{R}|Instant|||Choose one —$• Add two mana of any one color and two mana of any other color. Spend this mana only to cast creature or enchantment spells.$• Creatures you control get +1/+0 until end of turn.|
|
||||
Provoke the Trolls|Kaldheim|144|U|{3}{R}|Instant|||Provoke the Trolls deals 3 damage to any target. If a creature is dealt damage this way, it gets +5/+0 until end of turn.|
|
||||
Quakebringer|Kaldheim|145|M|{3}{R}{R}|Creature - Giant Berserker|5|4|Your opponents can't gain life.$At the beginning of your upkeep, Quakebringer deals 2 damage to each opponent. This ability triggers only if Quakebringer is on the battlefield or if Quakebringer is in your graveyard and you control a Giant.$Foretell {2}{R}{R}|
|
||||
Reckless Crew|Kaldheim|146|R|{3}{R}|Sorcery|||Create X 2/1 red Dwarf creature tokens, where X is the number of Vehicles you control plus the number of Equipment you control. For each of those tokens, you may attach an Equipment you control to it.|
|
||||
Reckless Crew|Kaldheim|146|R|{3}{R}|Sorcery|||Create X 2/1 red Dwarf Berserker creature tokens, where X is the number of Vehicles you control plus the number of Equipment you control. For each of those tokens, you may attach an Equipment you control to it.|
|
||||
Run Amok|Kaldheim|147|C|{1}{R}|Instant|||Target attacking creature gets +3/+3 and gains trample until end of turn.|
|
||||
Rune of Speed|Kaldheim|148|U|{1}{R}|Enchantment - Aura Rune|||Enchant permanent$When Rune of Speed enters the battlefield, draw a card.$As long as enchanted permanent is a creature, it gets +1/+0 and has haste.$As long as enchanted permanent is an Equipment, it has "Equipped creature gets +1/+0 and has haste."|
|
||||
Seize the Spoils|Kaldheim|149|C|{2}{R}|Sorcery|||As an additional cost to cast this spell, discard a card.$Draw two cards and create a Treasure token.|
|
||||
|
@ -40300,7 +40300,7 @@ Smashing Success|Kaldheim|151|C|{3}{R}|Instant|||Destroy target artifact or land
|
|||
Squash|Kaldheim|152|C|{4}{R}|Instant|||This spell costs {3} less to cast if you control a Giant.$Squash deals 6 damage to target creature or planeswalker.|
|
||||
Tibalt's Trickery|Kaldheim|153|R|{1}{R}|Instant|||Counter target spell. Choose 1, 2, or 3 at random. Its controller mills that many cards, then exiles cards from the top of their library until they exile a nonland card with a different name than that spell. They may cast that card without paying its mana cost. Then they put the exiled cards on the bottom of their library in a random order.|
|
||||
Toralf's Hammer|Kaldheim|154|M|{1}{R}|Legendary Artifact - Equipment|||Equipped creature has "{1}{R}, {T}, Unattach Toralf's Hammer: It deals 3 damage to any target. Return Toralf's Hammer to its owner's hand."$Equipped creature gets +3/+0 as long as it's legendary.$Equip {1}{R}|
|
||||
Toralf, God of Fury|Kaldheim|154|M|{2}{R}{R}|Legendary Creature - God|5|4|Trample$Whenever a creature or planeswalker an opponent controls is dealt excess noncombat damage, Toralf, God of Fury deals damage equal to the excess to any target other than that permanent.|
|
||||
Toralf, God of Fury|Kaldheim|154|M|{2}{R}{R}|Legendary Creature - God|5|4|Trample$Whenever a creature or planeswalker an opponent controls is dealt excess noncombat damage, Toralf deals damage equal to the excess to any target other than that permanent.|
|
||||
Tormentor's Helm|Kaldheim|155|C|{R}|Artifact - Equipment|||Equipped creature gets +1/+1.$Whenever equipped creature becomes blocked, it deals 1 damage to defending player.$Equip {1}|
|
||||
Tundra Fumarole|Kaldheim|156|R|{1}{R}{R}|Snow Sorcery|||Tundra Fumarole deals 4 damage to target creature or planeswalker. Add {C} for each {S} spent to cast this spell. Until end of turn, you don't lose this mana as steps and phases end.|
|
||||
Tuskeri Firewalker|Kaldheim|157|C|{2}{R}|Creature - Human Berserker|3|2|Boast — {1}: Exile the top card of your library. You may play that card this turn.|
|
||||
|
@ -40309,11 +40309,11 @@ Arachnoform|Kaldheim|159|C|{1}{G}|Enchantment - Aura|||Enchant creature$Enchante
|
|||
Battle Mammoth|Kaldheim|160|M|{3}{G}{G}|Creature - Elephant|6|5|Trample$Whenever a permanent you control becomes the target of a spell or ability an opponent controls, you may draw a card.$Foretell {2}{G}{G}|
|
||||
Blessing of Frost|Kaldheim|161|R|{3}{G}|Snow Sorcery|||Distribute X +1/+1 counters among any number of creatures you control, where X is the amount of {S} spent to cast this spell. Then draw a card for each creature you control with power 4 or greater.|
|
||||
Blizzard Brawl|Kaldheim|162|U|{G}|Snow Sorcery|||Choose target creature you control and target creature you don't control. If you control three or more snow permanents, the creature you control gets +1/+0 and gains indestructible until end of turn. Then those creatures fight each other.|
|
||||
Boreal Outrider|Kaldheim|163|U|{2}{G}|Snow Creature - Elf Warrior|3|2|Whenever you cast a creature spell, if {S} of any of that spell's color was spent to cast it, that creature enters the battlefield with an additional +1/+1 counter on it.|
|
||||
Boreal Outrider|Kaldheim|163|U|{2}{G}|Snow Creature - Elf Warrior|3|2|Whenever you cast a creature spell, if {S} of any of that spell's colors was spent to cast it, that creature enters the battlefield with an additional +1/+1 counter on it.|
|
||||
Broken Wings|Kaldheim|164|C|{2}{G}|Instant|||Destroy target artifact, enchantment, or creature with flying.|
|
||||
Elderleaf Mentor|Kaldheim|165|C|{3}{G}|Creature - Elf Warrior|3|2|When Elderleaf Mentor enters the battlefield, create a 1/1 green Elf Warrior creature token.|
|
||||
Elven Bow|Kaldheim|166|U|{G}|Artifact - Equipment|||When Elven Bow enters the battlefield, you may pay {2}. If you do, create a 1/1 green Elf Warrior creature token, then attach Elven Bow to it.$Equipped creature gets +1/+2 and has reach.$Equip {3}|
|
||||
Elvish Warmaster|Kaldheim|167|R|{1}{G}|Creature - Elf Warrior|2|2|Whenever one or more other Elves enters the battlefield under your control, create a 1/1 green Elf Warrior creature token. This ability triggers only once each turn.${5}{G}{G}: Elves you control get +2/+2 and gain deathtouch until end of turn.|
|
||||
Elvish Warmaster|Kaldheim|167|R|{1}{G}|Creature - Elf Warrior|2|2|Whenever one or more other Elves enter the battlefield under your control, create a 1/1 green Elf Warrior creature token. This ability triggers only once each turn.${5}{G}{G}: Elves you control get +2/+2 and gain deathtouch until end of turn.|
|
||||
Esika, God of the Tree|Kaldheim|168|M|{1}{G}{G}|Legendary Creature - God|1|4|Vigilance${T}: Add one mana of any color.$Other legendary creatures you control have vigilance and "{T}: Add one mana of any color."|
|
||||
The Prismatic Bridge|Kaldheim|168|M|{W}{U}{B}{R}{G}|Legendary Enchantment|||At the beginning of your upkeep, reveal cards from the top of your library until you reveal a creature or planeswalker card. Put that card onto the battlefield and the rest on the bottom of your library in a random order.|
|
||||
Esika's Chariot|Kaldheim|169|R|{3}{G}|Legendary Artifact - Vehicle|4|4|When Esika's Chariot enters the battlefield, create two 2/2 green Cat creature tokens.$Whenever Esika's Chariot attacks, create a token that's a copy of target token you control.$Crew 4|
|
||||
|
@ -40328,13 +40328,13 @@ In Search of Greatness|Kaldheim|177|R|{G}{G}|Enchantment|||At the beginning of y
|
|||
Jaspera Sentinel|Kaldheim|178|C|{G}|Creature - Elf Rogue|1|2|Reach${T}, Tap an untapped creature you control: Add one mana of any color.|
|
||||
Jorn, God of Winter|Kaldheim|179|R|{2}{G}|Legendary Snow Creature - God|3|3|Whenever Jorn attacks, untap each snow permanent you control.|
|
||||
Kaldring, the Rimestaff|Kaldheim|179|R|{1}{U}{B}|Legendary Snow Artifact|||{T}: You may play target snow permanent card from your graveyard this turn. If you do, it enters the battlefield tapped.|
|
||||
King Harald's Revenge|Kaldheim|180|C|{2}{G}|Sorcery|||Until end of tun, target creature gets +1/+1 for each creature you control and gains trample. It must be blocked this turn if able.|
|
||||
Kolvori, God of Kinship|Kaldheim|181|R|{2}{G}{G}|Legendary Creature - God|2|4|As long as you control three or more legendary creatures, Kolvori, God of Kinship gets +4/+2 and has vigilance.${1}{G}, {T}: Look at the top six cards of your library. You may reveal a legendary creature card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.|
|
||||
King Harald's Revenge|Kaldheim|180|C|{2}{G}|Sorcery|||Until end of turn, target creature gets +1/+1 for each creature you control and gains trample. It must be blocked this turn if able.|
|
||||
Kolvori, God of Kinship|Kaldheim|181|R|{2}{G}{G}|Legendary Creature - God|2|4|As long as you control three or more legendary creatures, Kolvori gets +4/+2 and has vigilance.${1}{G}, {T}: Look at the top six cards of your library. You may reveal a legendary creature card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.|
|
||||
The Ringhart Crest|Kaldheim|181|R|{1}{G}|Legendary Artifact|||As The Ringhart Crest enters the battlefield, choose a creature type.${T}: Add {G}. Spend this mana only to cast a creature spell of the chosen type or a legendary creature spell.|
|
||||
Littjara Glade-Warden|Kaldheim|182|U|{3}{G}|Creature - Shapeshifter|3|3|Changeling${2}{G}, {T}, Exile a creature card from your graveyard: Put two +1/+1 counters on target creature. Activate this ability only any time you could cast a sorcery.|
|
||||
Mammoth Growth|Kaldheim|183|C|{2}{G}|Instant|||Target creature gets +4/+4 until end of turn.$Foretell {G}|
|
||||
Masked Vandal|Kaldheim|184|C|{1}{G}|Creature - Shapeshifter|1|3|Changeling$When Masked Vandal enters the battlefield, you may exile a creature card from your graveyard. If you do, exile target artifact or enchantment an opponent controls.|
|
||||
Old-Growth Troll|Kaldheim|185|R|{G}{G}{G}|Creature - Troll Warrior|4|4|Trample$When Old-Growth Troll dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and "Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice this land: Create a 4/4 green Troll Warrior creature token with trample.'"|
|
||||
Old-Growth Troll|Kaldheim|185|R|{G}{G}{G}|Creature - Troll Warrior|4|4|Trample$When Old-Growth Troll dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and "Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice this land: Create a tapped 4/4 green Troll Warrior creature token with trample.'"|
|
||||
Path to the World Tree|Kaldheim|186|U|{1}{G}|Enchantment|||When Path to the World Tree enters the battlefield, search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.${2}{W}{U}{B}{R}{G}, Sacrifice Path to the World Tree: You gain 2 life and draw two cards. Target opponent loses 2 life. Path to the World Tree deals 2 damage to up to one target creature. You create a 2/2 green Bear creature token.|
|
||||
Ravenous Lindwurm|Kaldheim|187|C|{4}{G}{G}|Creature - Wurm|6|6|When Ravenous Lindwurm enters the battlefield, you gain 4 life.|
|
||||
Realmwalker|Kaldheim|188|R|{2}{G}|Creature - Shapeshifter|2|3|Changeling$As Realmwalker enters the battlefield, choose a creature type.$You may look at the top card of your library any time.$You may cast creature spells of the chosen type from the top of your library.|
|
||||
|
@ -40352,11 +40352,11 @@ Vorinclex, Monstrous Raider|Kaldheim|199|M|{4}{G}{G}|Legendary Creature - Phyrex
|
|||
Aegar, the Freezing Flame|Kaldheim|200|U|{1}{U}{R}|Legendary Creature - Giant Wizard|3|3|Whenever a creature or planeswalker an opponent controls is dealt excess damage, if a Giant, Wizard, or spell you controlled dealt damage to it this turn, draw a card.|
|
||||
Arni Slays the Troll|Kaldheim|201|U|{R}{G}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Target creature you control fights up to one target creature you don't control.$II — Add {R}. Put two +1/+1 counters on up to one target creature you control.$III — You gain life equal to the greatest power among creatures you control.|
|
||||
Ascent of the Worthy|Kaldheim|202|U|{1}{W}{B}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I, II — Choose a creature you control. Until your next turn, all damage that would be dealt to creatures you control is dealt to that creature instead.$III — Return target creature card from your graveyard to the battlefield with a flying counter on it. That creature is an Angel Warrior in addition to its other types.|
|
||||
Battle for Bretagard|Kaldheim|203|R|{1}{G}{W}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Create a 1/1 white Human Warrior creature token.$II — Create a 1/1 green Elf Warrior creature token.$III — Choose any number of artifact tokens and/or creature tokens you control with different names. For each of them, create a token thats a copy of it.|
|
||||
Battle for Bretagard|Kaldheim|203|R|{1}{G}{W}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Create a 1/1 white Human Warrior creature token.$II — Create a 1/1 green Elf Warrior creature token.$III — Choose any number of artifact tokens and/or creature tokens you control with different names. For each of them, create a token that's a copy of it.|
|
||||
Battle of Frost and Fire|Kaldheim|204|R|{3}{U}{R}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Battle of Frost and Fire deals 4 damage to each non-Giant creature and each planeswalker.$II — Scry 3.$III — Whenever you cast a spell with converted mana cost 5 or greater this turn, draw two cards, then discard a card.|
|
||||
The Bears of Littjara|Kaldheim|205|R|{1}{G}{U}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Create a 2/2 blue Shapeshifter creature token with changeling.$II — Any number of target Shapeshifter creatures you control have base power and toughness 4/4.$III — Choose up to one target creature or planeswalker. Each creature with power 4 or greater you control deals damage equal to its power to that permanent.|
|
||||
Binding the Old Gods|Kaldheim|206|U|{2}{B}{G}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Destroy target nonland permanent an opponent controls.$II — Search your library for a Forest card, put it onto the battlefield tapped, then shuffle your library.$III — Creatures you control gain deathtouch until end of turn.|
|
||||
The Bloodsky Massacre|Kaldheim|207|R|{1}{B}{R}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Create a 2/3 red Demon Berserker creature token with menace.$II — Whenever a Berserker attacks this turn, you draw a card and you lose 1 life.$III — Add {R} for each Berserker you control. Until end of turn, you don't lose this mana as steps or phases end.|
|
||||
The Bloodsky Massacre|Kaldheim|207|R|{1}{B}{R}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Create a 2/3 red Demon Berserker creature token with menace.$II — Whenever a Berserker attacks this turn, you draw a card and you lose 1 life.$III — Add {R} for each Berserker you control. Until end of turn, you don't lose this mana as steps and phases end.|
|
||||
Fall of the Impostor|Kaldheim|208|U|{1}{G}{W}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I, II — Put a +1/+1 counter on up to one target creature.$III — Exile a creature with the greatest power among creatures target opponent controls.|
|
||||
Firja, Judge of Valor|Kaldheim|209|U|{2}{W}{B}{B}|Legendary Creature - Angel Cleric|2|4|Flying, lifelink$Whenever you cast your second spell each turn, look at the top three cards of your library. Put one of them into your hand and the rest into your graveyard.|
|
||||
Firja's Retribution|Kaldheim|210|R|{1}{W}{W}{B}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Create a 4/4 white Angel Warrior creature token with flying and vigilance.$II — Until end of turn, Angels you control gain "{T}: Destroy target creature with power less than this creature's power."$III — Angels you control gain double strike until end of turn.|
|
||||
|
@ -40368,7 +40368,7 @@ Invasion of the Giants|Kaldheim|215|U|{U}{R}|Enchantment - Saga|||(As this Saga
|
|||
Kardur, Doomscourge|Kaldheim|216|U|{2}{B}{R}|Legendary Creature - Demon Berserker|4|3|When Kardur, Doomscourge enters the battlefield, until your next turn, creatures your opponents control attack each combat if able and attack a player other than you if able.$Whenever an attacking creature dies, each opponent loses 1 life and you gain 1 life.|
|
||||
Kardur's Vicious Return|Kaldheim|217|U|{2}{B}{R}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — You may sacrifice a creature. When you do, Kardur's Vicious Return deals 3 damage to any target.$II — Each player discards a card.$III — Return target creature card from your graveyard to the battlefield. Put a +1/+1 counter on it. It gains haste until your next turn.|
|
||||
Kaya the Inexorable|Kaldheim|218|M|{3}{W}{B}|Legendary Planeswalker - Kaya|5|+1: Put a ghostform counter on up to one target nontoken creature. It gains "When this creature dies or is put into exile, return it to its owner's hand and create a 1/1 white Spirit creature token with flying."$−3: Exile target nonland permanent.$−7: You get an emblem with "At the beginning of your upkeep, you may cast a legendary spell from your hand, from your graveyard, or from among cards you own in exile without paying its mana cost."|
|
||||
King Narfi's Betrayal|Kaldheim|219|R|{1}{U}{B}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Each player mills four cards. You may exile up to one creature or planeswalker card from each graveyard.$II, III — Until end of turn, you may cast spells from among cards exiled with King Narfi's Betrayal, and you may spend mana as though it were mana of any color to cast those spells.|
|
||||
King Narfi's Betrayal|Kaldheim|219|R|{1}{U}{B}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Each player mills four cards. Then you may exile a creature or planeswalker card from each graveyard.$II, III — Until end of turn, you may cast spells from among cards exiled with King Narfi's Betrayal, and you may spend mana as though it were mana of any color to cast those spells.|
|
||||
Koll, the Forgemaster|Kaldheim|220|U|{R}{W}|Legendary Creature - Dwarf Warrior|2|2|Whenever another nontoken creature you control dies, if it was enchanted or equipped, return it to its owner's hand.$Creature tokens you control that are enchanted or equipped get +1/+1.|
|
||||
Koma, Cosmos Serpent|Kaldheim|221|M|{3}{G}{G}{U}{U}|Legendary Creature - Serpent|6|6|This spell can't be countered.$At the beginning of each upkeep, create a 3/3 blue Serpent creature token named Koma's Coil.$Sacrifice another Serpent: Choose one —$• Tap target permanent. Its activated abilities can't be activated this turn.$• Koma, Cosmos Serpent gains indestructible until end of turn.|
|
||||
Maja, Bretagard Protector|Kaldheim|222|U|{2}{G}{W}{W}|Legendary Creature - Human Warrior|2|3|Other creatures you control get +1/+1.$Whenever a land enters the battlefield under your control, create a 1/1 white Human Warrior creature token.|
|
||||
|
@ -40380,7 +40380,7 @@ The Raven's Warning|Kaldheim|227|R|{1}{W}{U}|Enchantment - Saga|||(As this Saga
|
|||
Sarulf, Realm Eater|Kaldheim|228|R|{1}{B}{G}|Legendary Creature - Wolf|3|3|Whenever a permanent an opponent controls is put into a graveyard from the battlefield, put a +1/+1 counter on Sarulf, Realm Eater.$At the beginning of your upkeep, if Sarulf has one or more +1/+1 counters on it, you may remove all of them. If you do, exile each other nonland permanent with converted mana cost less than or equal to the number of counters removed this way.|
|
||||
Showdown of the Skalds|Kaldheim|229|R|{2}{R}{W}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Exile the top four cards of your library. Until the end of your next turn, you may play those cards.$II, III — Whenever you cast a spell this turn, put a +1/+1 counter on target creature you control.|
|
||||
Svella, Ice Shaper|Kaldheim|230|U|{1}{R}{G}|Legendary Snow Creature - Troll Warrior|2|4|{3}, {T}: Create a colorless snow artifact token named Icy Manalith with "{T}: Add one mana of any color."${6}{R}{G}, {T}: Look at the top four cards of your library. You may cast a spell from among them without paying its mana cost. Put the rest on the bottom of your library in a random order.|
|
||||
The Three Seasons|Kaldheim|231|U|{G}{U}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Mill three cards.$II — Return up to two target snow permanent cards from your graveyard to your hand.$III — Choose up to three cards in each graveyard. Their owners shuffle those cards into their libraries.|
|
||||
The Three Seasons|Kaldheim|231|U|{G}{U}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Mill three cards.$II — Return up to two target snow permanent cards from your graveyard to your hand.$III — Choose three cards in each graveyard. Their owners shuffle those cards into their libraries.|
|
||||
The Trickster-God's Heist|Kaldheim|232|U|{2}{U}{B}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — You may exchange control of two target creatures.$II — You may exchange control of two target nonbasic, noncreature permanents that share a card type.$III — Target player loses 3 life and you gain 3 life.|
|
||||
Vega, the Watcher|Kaldheim|233|U|{1}{W}{U}|Legendary Creature - Bird Spirit|2|2|Flying$Whenever you cast a spell from anywhere other than your hand, draw a card.|
|
||||
Waking the Trolls|Kaldheim|234|R|{4}{R}{G}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)$I — Destroy target land.$II — Put target land card from a graveyard onto the battlefield under your control.$III — Choose target opponent. If they control fewer lands than you, create a number of 4/4 green Troll Warrior creature tokens with trample equal to the difference.|
|
||||
|
@ -40394,12 +40394,12 @@ Pyre of Heroes|Kaldheim|241|R|{2}|Artifact|||{2}, {T}, Sacrifice a creature: Sea
|
|||
Raiders' Karve|Kaldheim|242|C|{3}|Artifact - Vehicle|4|4|Whenever Raiders' Karve attacks, look at the top card of your library. If it's a land card, you may put it onto the battlefield tapped.$Crew 3|
|
||||
Raven Wings|Kaldheim|243|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0, has flying, and is a Bird in addition to its other types.$Equip {2}|
|
||||
Replicating Ring|Kaldheim|244|U|{3}|Snow Artifact|||{T}: Add one mana of any color.$At the beginning of your upkeep, put a night counter on Replicating Ring. Then if it has eight or more night counters on it, remove all of them and create eight colorless snow artifact tokens named Replicated Ring with "{T}: Add one mana of any color."|
|
||||
Runed Crown|Kaldheim|245|U|{3}|Artifact - Equipment|||When Runed Crown enters the battlefield, you may search your library, hand, and/or graveyard for a Rune card and put it onto the battlefield attached to Runed Crown. If you search your library this way, shuffle it.$Equipped Creature gets +1/+1.$Equip {2}|
|
||||
Runed Crown|Kaldheim|245|U|{3}|Artifact - Equipment|||When Runed Crown enters the battlefield, you may search your library, hand, and/or graveyard for a Rune card and put it onto the battlefield attached to Runed Crown. If you search your library this way, shuffle it.$Equipped creature gets +1/+1.$Equip {2}|
|
||||
Scorn Effigy|Kaldheim|246|C|{3}|Artifact Creature - Scarecrow|2|3|Foretell {0}|
|
||||
Weathered Runestone|Kaldheim|247|U|{2}|Artifact|||Nonland permanent cards in graveyards and libraries can't enter the battlefield.$Players can't cast spells from graveyards or libraries.|
|
||||
Alpine Meadow|Kaldheim|248|C||Snow Land - Mountain Plains|||({T}: Add {R} or {W}.)$Alpine Meadow enters the battlefield tapped.|
|
||||
Arctic Treeline|Kaldheim|249|C||Snow Land - Forest Plains|||({T}: Add {G} or {W}.)$Arctic Treeline enters the battlefield tapped.|
|
||||
Axgard Armory|Kaldheim|250|U||Land|||Axgard Armory enters the battlefield tapped.${T}: Add {W}.${1}{R}{R}{W}, {T}: Sacrifice Axgard Armory: Search your library for an Aura card and/or Equipment card, reveal them, put them into your hand, then shuffle your library.|
|
||||
Axgard Armory|Kaldheim|250|U||Land|||Axgard Armory enters the battlefield tapped.${T}: Add {W}.${1}{R}{R}{W}, {T}, Sacrifice Axgard Armory: Search your library for an Aura card and/or an Equipment card, reveal them, put them into your hand, then shuffle your library.|
|
||||
Barkchannel Pathway|Kaldheim|251|R||Land|||{T}: Add {G}.|
|
||||
Tidechannel Pathway|Kaldheim|251|R||Land|||{T}: Add {U}.|
|
||||
Blightstep Pathway|Kaldheim|252|R||Land|||{T}: Add {B}.|
|
||||
|
@ -40419,7 +40419,7 @@ Ice Tunnel|Kaldheim|262|C||Snow Land - Island Swamp|||({T}: Add {U} or {B}.)$Ice
|
|||
Immersturm Skullcairn|Kaldheim|263|U||Land|||Immersturm Skullcairn enters the battlefield tapped.${T}: Add {B}.${1}{B}{R}{R}, {T}, Sacrifice Immersturm Skullcairn: It deals 3 damage to target player. That player discards a card. Activate this ability only any time you could cast a sorcery.|
|
||||
Littjara Mirrorlake|Kaldheim|264|U||Land|||Littjara Mirrorlake enters the battlefield tapped.${T}: Add {U}.${2}{G}{G}{U}, {T}, Sacrifice Littjara Mirrorlake: Create a token that's a copy of target creature you control, except it enters the battlefield with an additional +1/+1 counter on it. Activate this ability only any time you could cast a sorcery.|
|
||||
Port of Karfell|Kaldheim|265|U||Land|||Port of Karfell enters the battlefield tapped.${T}: Add {U}.${3}{U}{B}{B}, {T}, Sacrifice Port of Karfell: Mill four cards, then return a creature card from your graveyard to the battlefield tapped.|
|
||||
Rimewood Falls|Kaldheim|266|C||Snow Land - Forest Island|||({T}: Add {G} or {U})$Rimewood Falls enters the battlefield tapped.|
|
||||
Rimewood Falls|Kaldheim|266|C||Snow Land - Forest Island|||({T}: Add {G} or {U}.)$Rimewood Falls enters the battlefield tapped.|
|
||||
Shimmerdrift Vale|Kaldheim|267|C||Snow Land|||Shimmerdrift Vale enters the battlefield tapped.$As Shimmerdrift Vale enters the battlefield, choose a color.${T}: Add one mana of the chosen color.|
|
||||
Skemfar Elderhall|Kaldheim|268|U||Land|||Skemfar Elderhall enters the battlefield tapped.${T}: Add {G}.${2}{B}{B}{G}, {T}, Sacrifice Skemfar Elderhall: Up to one target creature you don't control gets -2/-2 until end of turn. Create two 1/1 green Elf Warrior creature tokens. Activate this ability only any time you could cast a sorcery.|
|
||||
Snowfield Sinkhole|Kaldheim|269|C||Snow Land - Plains Swamp|||({T}: Add {W} or {B}.)$Snowfield Sinkhole enters the battlefield tapped.|
|
||||
|
@ -40430,10 +40430,120 @@ Volatile Fjord|Kaldheim|273|C||Snow Land - Island Mountain|||({T}: Add {U} or {R
|
|||
Woodland Chasm|Kaldheim|274|C||Snow Land - Swamp Forest|||({T}: Add {B} or {G}.)$Woodland Chasm enters the battlefield tapped.|
|
||||
The World Tree|Kaldheim|275|R||Land|||The World Tree enters the battlefield tapped.${T}: Add {G}.$As long as you control six or more lands, lands you control have "{T}: Add one mana of any color."${W}{W}{U}{U}{B}{B}{R}{R}{G}{G}, {T}, Sacrifice The World Tree: Search your library for any number of God cards, put them onto the battlefield, then shuffle your library.|
|
||||
Snow-Covered Plains|Kaldheim|276|C||Basic Snow Land - Plains|||({T}: Add {W}.)|
|
||||
Snow-Covered Plains|Kaldheim|277|C||Basic Snow Land - Plains|||({T}: Add {W}.)|
|
||||
Snow-Covered Island|Kaldheim|278|C||Basic Snow Land - Island|||({T}: Add {U}.)|
|
||||
Snow-Covered Island|Kaldheim|279|C||Basic Snow Land - Island|||({T}: Add {U}.)|
|
||||
Snow-Covered Swamp|Kaldheim|280|C||Basic Snow Land - Swamp|||({T}: Add {B}.)|
|
||||
Snow-Covered Swamp|Kaldheim|281|C||Basic Snow Land - Swamp|||({T}: Add {B}.)|
|
||||
Snow-Covered Mountain|Kaldheim|282|C||Basic Snow Land - Mountain|||({T}: Add {R}.)|
|
||||
Snow-Covered Mountain|Kaldheim|283|C||Basic Snow Land - Mountain|||({T}: Add {R}.)|
|
||||
Snow-Covered Forest|Kaldheim|284|C||Basic Snow Land - Forest|||({T}: Add {G}.)|
|
||||
Snow-Covered Forest|Kaldheim|285|C||Basic Snow Land - Forest|||({T}: Add {G}.)|
|
||||
Tibalt, Cosmic Impostor|Kaldheim|286|M|{5}{B}{R}|Legendary Planeswalker - Tibalt|5|As Tibalt enters the battlefield, you get an emblem with "You may play cards exiled with Tibalt, Cosmic Impostor, and you may spend mana as though it were mana of any color to cast those spells."$+2: Exile the top card of each player's library.$−3: Exile target artifact or creature.$−8: Exile all cards from all graveyards. Add {R}{R}{R}.|
|
||||
Valki, God of Lies|Kaldheim|286|M|{1}{B}|Legendary Creature - God|2|1|When Valki enters the battlefield, each opponent reveals their hand. For each opponent, exile a creature card they revealed this way until Valki leaves the battlefield.${X}: Choose a creature card exiled with Valki with converted mana cost X. Valki becomes a copy of that card.|
|
||||
Tyvar Kell|Kaldheim|287|M|{2}{G}{G}|Legendary Planeswalker - Tyvar|3|Elves you control have "{T}: Add {B}."$+1: Put a +1/+1 counter on up to one target Elf. Untap it. It gains deathtouch until end of turn.$0: Create a 1/1 green Elf Warrior creature token.$−6: You get an emblem with "Whenever you cast an Elf spell, it gains haste until end of turn and you draw two cards."|
|
||||
Kaya the Inexorable|Kaldheim|288|M|{3}{W}{B}|Legendary Planeswalker - Kaya|5|+1: Put a ghostform counter on up to one target nontoken creature. It gains "When this creature dies or is put into exile, return it to its owner's hand and create a 1/1 white Spirit creature token with flying."$−3: Exile target nonland permanent.$−7: You get an emblem with "At the beginning of your upkeep, you may cast a legendary spell from your hand, from your graveyard, or from among cards you own in exile without paying its mana cost."|
|
||||
Niko Aris|Kaldheim|289|M|{X}{W}{U}{U}|Legendary Planeswalker - Niko|3|When Niko Aris enters the battlefield, create X Shard tokens.$+1: Up to one target creature you control can't be blocked this turn. Whenever that creature deals damage this turn, return it to its owner's hand.$−1: Niko Aris deals 2 damage to target tapped creature for each card you've drawn this turn.$−1: Create a Shard token.|
|
||||
Barkchannel Pathway|Kaldheim|290|R||Land|||{T}: Add {G}.|
|
||||
Tidechannel Pathway|Kaldheim|290|R||Land|||{T}: Add {U}.|
|
||||
Blightstep Pathway|Kaldheim|291|R||Land|||{T}: Add {B}.|
|
||||
Searstep Pathway|Kaldheim|291|R||Land|||{T}: Add {R}.|
|
||||
Darkbore Pathway|Kaldheim|292|R||Land|||{T}: Add {B}.|
|
||||
Slitherbore Pathway|Kaldheim|292|R||Land|||{T}: Add {G}.|
|
||||
Hengegate Pathway|Kaldheim|293|R||Land|||{T}: Add {W}.|
|
||||
Mistgate Pathway|Kaldheim|293|R||Land|||{T}: Add {U}.|
|
||||
Starnheim Unleashed|Kaldheim|294|M|{2}{W}{W}|Sorcery|||Create a 4/4 white Angel Warrior creature token with flying and vigilance. If this spell was foretold, create X of those tokens instead.$Foretell {X}{X}{W}|
|
||||
Alrund's Epiphany|Kaldheim|295|M|{5}{U}{U}|Sorcery|||Create two 1/1 blue Bird creature tokens with flying. Take an extra turn after this one. Exile Alrund's Epiphany.$Foretell {4}{U}{U}|
|
||||
Haunting Voyage|Kaldheim|296|M|{4}{B}{B}|Sorcery|||Choose a creature type. Return up to two creature cards of that type from your graveyard to the battlefield. If this spell was foretold, return all creature cards of that type from your graveyard to the battlefield instead.$Foretell {5}{B}{B}|
|
||||
Quakebringer|Kaldheim|297|M|{3}{R}{R}|Creature - Giant Berserker|5|4|Your opponents can't gain life.$At the beginning of your upkeep, Quakebringer deals 2 damage to each opponent. This ability triggers only if Quakebringer is on the battlefield or if Quakebringer is in your graveyard and you control a Giant.$Foretell {2}{R}{R}|
|
||||
Battle Mammoth|Kaldheim|298|M|{3}{G}{G}|Creature - Elephant|6|5|Trample$Whenever a permanent you control becomes the target of a spell or ability an opponent controls, you may draw a card.$Foretell {2}{G}{G}|
|
||||
Halvar, God of Battle|Kaldheim|299|M|{2}{W}{W}|Legendary Creature - God|4|4|Creatures you control that are enchanted or equipped have double strike.$At the beginning of each combat, you may attach target Aura or Equipment attached to a creature you control to target creature you control.|
|
||||
Sword of the Realms|Kaldheim|299|M|{1}{W}|Legendary Artifact - Equipment|||Equipped creature gets +2/+0 and has vigilance.$Whenever equipped creature dies, return it to its owner's hand.$Equip {1}{W}|
|
||||
Reidane, God of the Worthy|Kaldheim|300|R|{2}{W}|Legendary Creature - God|2|3|Flying, vigilance$Snow lands your opponents control enter the battlefield tapped.$Noncreature spells your opponents cast with converted mana cost 4 or greater cost {2} more to cast.|
|
||||
Valkmira, Protector's Shield|Kaldheim|300|R|{3}{W}|Legendary Artifact|||If a source an opponent controls would deal damage to you or a permanent you control, prevent 1 of that damage.$Whenever you or a permanent you control becomes the target of a spell or ability an opponent controls, counter that spell or ability unless its controller pays {1}.|
|
||||
Sigrid, God-Favored|Kaldheim|301|R|{1}{W}{W}|Legendary Creature - Human Warrior|2|2|Flash$First strike, protection from God creatures$When Sigrid, God-Favored enters the battlefield, exile up to one target attacking or blocking creature until Sigrid leaves the battlefield.|
|
||||
Alrund, God of the Cosmos|Kaldheim|302|M|{3}{U}{U}|Legendary Creature - God|1|1|Alrund gets +1/+1 for each card in your hand and each foretold card you own in exile.$At the beginning of your end step, choose a card type, then reveal the top two cards of your library. Put all cards revealed this way of the chosen type into your hand and the rest on the bottom of your library in any order.|
|
||||
Hakka, Whispering Raven|Kaldheim|302|M|{1}{U}|Legendary Creature - Bird|2|3|Flying$Whenever Hakka, Whispering Raven deals combat damage to a player, return it to its owner's hand, then scry 2.|
|
||||
Cosima, God of the Voyage|Kaldheim|303|R|{2}{U}|Legendary Creature - God|2|4|At the beginning of your upkeep, you may exile Cosima. If you do, it gains "Whenever a land enters the battlefield under your control, if Cosima is exiled, you may put a voyage counter on it. If you don't, return Cosima to the battlefield with X +1/+1 counters on it and draw X cards, where X is the number of voyage counters on it."|
|
||||
The Omenkeel|Kaldheim|303|R|{1}{U}|Legendary Artifact - Vehicle|3|3|Whenever a Vehicle you control deals combat damage to a player, that player exiles that many cards from the top of their library. You may play lands from among those cards for as long as they remain exiled.$Crew 1|
|
||||
Inga Rune-Eyes|Kaldheim|304|U|{3}{U}|Legendary Creature - Human Wizard|3|3|When Inga Rune-Eyes enters the battlefield, scry 3.$When Inga Rune-Eyes dies, draw three cards if three or more creatures died this turn.|
|
||||
Orvar, the All-Form|Kaldheim|305|M|{3}{U}|Legendary Creature - Shapeshifter|3|3|Changeling$Whenever you cast an instant or sorcery spell, if it targets one or more other permanents you control, create a token that's a copy of one of those permanents.$When a spell or ability an opponent controls causes you to discard this card, create a token that's a copy of target permanent.|
|
||||
Egon, God of Death|Kaldheim|306|R|{2}{B}|Legendary Creature - God|6|6|Deathtouch$At the beginning of your upkeep, exile two cards from your graveyard. If you can't, sacrifice Egon and draw a card.|
|
||||
Throne of Death|Kaldheim|306|R|{B}|Legendary Artifact|||At the beginning of your upkeep, mill a card.${2}{B}, {T}, Exile a creature card from your graveyard: Draw a card.|
|
||||
Tergrid's Lantern|Kaldheim|307|R|{3}{B}|Legendary Artifact|||{T}: Target player loses 3 life unless they sacrifice a nonland permanent or discard a card.${3}{B}: Untap Tergrid's Lantern.|
|
||||
Tergrid, God of Fright|Kaldheim|307|R|{3}{B}{B}|Legendary Creature - God|4|5|Menace$Whenever an opponent sacrifices a nontoken permanent or discards a permanent card, you may put that card from a graveyard onto the battlefield under your control.|
|
||||
Tibalt, Cosmic Impostor|Kaldheim|308|M|{5}{B}{R}|Legendary Planeswalker - Tibalt|5|As Tibalt enters the battlefield, you get an emblem with "You may play cards exiled with Tibalt, Cosmic Impostor, and you may spend mana as though it were mana of any color to cast those spells."$+2: Exile the top card of each player's library.$−3: Exile target artifact or creature.$−8: Exile all cards from all graveyards. Add {R}{R}{R}.|
|
||||
Valki, God of Lies|Kaldheim|308|M|{1}{B}|Legendary Creature - God|2|1|When Valki enters the battlefield, each opponent reveals their hand. For each opponent, exile a creature card they revealed this way until Valki leaves the battlefield.${X}: Choose a creature card exiled with Valki with converted mana cost X. Valki becomes a copy of that card.|
|
||||
Varragoth, Bloodsky Sire|Kaldheim|309|R|{2}{B}|Legendary Creature - Demon Rogue|2|3|Deathtouch$Boast — {1}{B}: Target player searches their library for a card, then shuffles their library and puts that card on top of it.|
|
||||
Arni Brokenbrow|Kaldheim|310|R|{2}{R}|Legendary Creature - Human Berserker|3|3|Haste$Boast — {1}: You may change Arni Brokenbrow's base power to 1 plus the greatest power among other creatures you control until end of turn.|
|
||||
Birgi, God of Storytelling|Kaldheim|311|R|{2}{R}|Legendary Creature - God|3|3|Whenever you cast a spell, add {R}. Until end of turn, you don't lose this mana as steps and phases end.$Creatures you control can boast twice during each of your turns rather than once.|
|
||||
Harnfel, Horn of Bounty|Kaldheim|311|R|{4}{R}|Legendary Artifact|||Discard a card: Exile the top two cards of your library. You may play those cards this turn.|
|
||||
Magda, Brazen Outlaw|Kaldheim|312|R|{1}{R}|Legendary Creature - Dwarf Berserker|2|1|Other Dwarves you control get +1/+0.$Whenever a Dwarf you control becomes tapped, create a Treasure token.$Sacrifice five Treasures: Search your library for an artifact or Dragon card, put that card onto the battlefield, then shuffle your library.|
|
||||
Toralf's Hammer|Kaldheim|313|M|{1}{R}|Legendary Artifact - Equipment|||Equipped creature has "{1}{R}, {T}, Unattach Toralf's Hammer: It deals 3 damage to any target. Return Toralf's Hammer to its owner's hand."$Equipped creature gets +3/+0 as long as it's legendary.$Equip {1}{R}|
|
||||
Toralf, God of Fury|Kaldheim|313|M|{2}{R}{R}|Legendary Creature - God|5|4|Trample$Whenever a creature or planeswalker an opponent controls is dealt excess noncombat damage, Toralf deals damage equal to the excess to any target other than that permanent.|
|
||||
Esika, God of the Tree|Kaldheim|314|M|{1}{G}{G}|Legendary Creature - God|1|4|Vigilance${T}: Add one mana of any color.$Other legendary creatures you control have vigilance and "{T}: Add one mana of any color."|
|
||||
The Prismatic Bridge|Kaldheim|314|M|{W}{U}{B}{R}{G}|Legendary Enchantment|||At the beginning of your upkeep, reveal cards from the top of your library until you reveal a creature or planeswalker card. Put that card onto the battlefield and the rest on the bottom of your library in a random order.|
|
||||
Esika's Chariot|Kaldheim|315|R|{3}{G}|Legendary Artifact - Vehicle|4|4|When Esika's Chariot enters the battlefield, create two 2/2 green Cat creature tokens.$Whenever Esika's Chariot attacks, create a token that's a copy of target token you control.$Crew 4|
|
||||
Fynn, the Fangbearer|Kaldheim|316|U|{1}{G}|Legendary Creature - Human Warrior|1|3|Deathtouch$Whenever a creature you control with deathtouch deals combat damage to a player, that player gets two poison counters.|
|
||||
Jorn, God of Winter|Kaldheim|317|R|{2}{G}|Legendary Snow Creature - God|3|3|Whenever Jorn attacks, untap each snow permanent you control.|
|
||||
Kaldring, the Rimestaff|Kaldheim|317|R|{1}{U}{B}|Legendary Snow Artifact|||{T}: You may play target snow permanent card from your graveyard this turn. If you do, it enters the battlefield tapped.|
|
||||
Kolvori, God of Kinship|Kaldheim|318|R|{2}{G}{G}|Legendary Creature - God|2|4|As long as you control three or more legendary creatures, Kolvori gets +4/+2 and has vigilance.${1}{G}, {T}: Look at the top six cards of your library. You may reveal a legendary creature card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.|
|
||||
The Ringhart Crest|Kaldheim|318|R|{1}{G}|Legendary Artifact|||As The Ringhart Crest enters the battlefield, choose a creature type.${T}: Add {G}. Spend this mana only to cast a creature spell of the chosen type or a legendary creature spell.|
|
||||
Toski, Bearer of Secrets|Kaldheim|319|R|{3}{G}|Legendary Creature - Squirrel|1|1|This spell can't be countered.$Indestructible$Toski, Bearer of Secrets attacks each combat if able.$Whenever a creature you control deals combat damage to a player, draw a card.|
|
||||
Vorinclex, Monstrous Raider|Kaldheim|320|M|{4}{G}{G}|Legendary Creature - Phyrexian Praetor|6|6|Trample, haste$If you would put one or more counters on a permanent or player, put twice that many of each of those kinds of counters on that permanent or player instead.$If an opponent would put one or more counters on a permanent or player, they put half that many of each of those kinds of counters on that permanent or player instead, rounded down.|
|
||||
Aegar, the Freezing Flame|Kaldheim|321|U|{1}{U}{R}|Legendary Creature - Giant Wizard|3|3|Whenever a creature or planeswalker an opponent controls is dealt excess damage, if a Giant, Wizard, or spell you controlled dealt damage to it this turn, draw a card.|
|
||||
Firja, Judge of Valor|Kaldheim|322|U|{2}{W}{B}{B}|Legendary Creature - Angel Cleric|2|4|Flying, lifelink$Whenever you cast your second spell each turn, look at the top three cards of your library. Put one of them into your hand and the rest into your graveyard.|
|
||||
Harald, King of Skemfar|Kaldheim|323|U|{1}{B}{G}|Legendary Creature - Elf Warrior|3|2|Menace$When Harald, King of Skemfar enters the battlefield, look at the top five cards of your library. You may reveal an Elf, Warrior, or Tyvar card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.|
|
||||
Kardur, Doomscourge|Kaldheim|324|U|{2}{B}{R}|Legendary Creature - Demon Berserker|4|3|When Kardur, Doomscourge enters the battlefield, until your next turn, creatures your opponents control attack each combat if able and attack a player other than you if able.$Whenever an attacking creature dies, each opponent loses 1 life and you gain 1 life.|
|
||||
Koll, the Forgemaster|Kaldheim|325|U|{R}{W}|Legendary Creature - Dwarf Warrior|2|2|Whenever another nontoken creature you control dies, if it was enchanted or equipped, return it to its owner's hand.$Creature tokens you control that are enchanted or equipped get +1/+1.|
|
||||
Koma, Cosmos Serpent|Kaldheim|326|M|{3}{G}{G}{U}{U}|Legendary Creature - Serpent|6|6|This spell can't be countered.$At the beginning of each upkeep, create a 3/3 blue Serpent creature token named Koma's Coil.$Sacrifice another Serpent: Choose one —$• Tap target permanent. Its activated abilities can't be activated this turn.$• Koma, Cosmos Serpent gains indestructible until end of turn.|
|
||||
Maja, Bretagard Protector|Kaldheim|327|U|{2}{G}{W}{W}|Legendary Creature - Human Warrior|2|3|Other creatures you control get +1/+1.$Whenever a land enters the battlefield under your control, create a 1/1 white Human Warrior creature token.|
|
||||
Moritte of the Frost|Kaldheim|328|U|{2}{G}{U}{U}|Legendary Snow Creature - Shapeshifter|0|0|Changeling$You may have Moritte of the Frost enter the battlefield as a copy of a permanent you control, except it's legendary and snow in addition to its other types and, if it's a creature, it enters with two additional +1/+1 counters on it and has changeling.|
|
||||
Narfi, Betrayer King|Kaldheim|329|U|{3}{U}{B}|Legendary Snow Creature - Zombie Wizard|4|3|Other snow and Zombie creatures you control get +1/+1.${S}{S}{S}: Return Narfi, Betrayer King from your graveyard to the battlefield tapped.|
|
||||
Sarulf, Realm Eater|Kaldheim|330|R|{1}{B}{G}|Legendary Creature - Wolf|3|3|Whenever a permanent an opponent controls is put into a graveyard from the battlefield, put a +1/+1 counter on Sarulf, Realm Eater.$At the beginning of your upkeep, if Sarulf has one or more +1/+1 counters on it, you may remove all of them. If you do, exile each other nonland permanent with converted mana cost less than or equal to the number of counters removed this way.|
|
||||
Svella, Ice Shaper|Kaldheim|331|U|{1}{R}{G}|Legendary Snow Creature - Troll Warrior|2|4|{3}, {T}: Create a colorless snow artifact token named Icy Manalith with "{T}: Add one mana of any color."${6}{R}{G}, {T}: Look at the top four cards of your library. You may cast a spell from among them without paying its mana cost. Put the rest on the bottom of your library in a random order.|
|
||||
Vega, the Watcher|Kaldheim|332|U|{1}{W}{U}|Legendary Creature - Bird Spirit|2|2|Flying$Whenever you cast a spell from anywhere other than your hand, draw a card.|
|
||||
Vorinclex, Monstrous Raider|Kaldheim|333|M|{4}{G}{G}|Legendary Creature - Phyrexian Praetor|6|6|Trample, haste$If you would put one or more counters on a permanent or player, put twice that many of each of those kinds of counters on that permanent or player instead.$If an opponent would put one or more counters on a permanent or player, they put half that many of each of those kinds of counters on that permanent or player instead, rounded down.|
|
||||
Doomskar|Kaldheim|334|R|{3}{W}{W}|Sorcery|||Destroy all creatures.$Foretell {1}{W}{W}|
|
||||
Glorious Protector|Kaldheim|335|R|{2}{W}{W}|Creature - Angel Cleric|3|4|Flash$Flying$When Glorious Protector enters the battlefield, you may exile any number of non-Angel creatures you control until Glorious Protector leaves the battlefield.$Foretell {2}{W}|
|
||||
Rally the Ranks|Kaldheim|336|R|{1}{W}|Enchantment|||As Rally the Ranks enters the battlefield, choose a creature type.$Creatures you control of the chosen type get +1/+1.|
|
||||
Resplendent Marshal|Kaldheim|337|M|{1}{W}{W}|Creature - Angel Warrior|3|3|Flying$When Resplendent Marshal enters the battlefield or dies, you may exile another creature card from your graveyard. When you do, put a +1/+1 counter on each creature you control other than Resplendent Marshal that shares a creature type with the exiled card.|
|
||||
Righteous Valkyrie|Kaldheim|338|R|{2}{W}|Creature - Angel Cleric|2|4|Flying$Whenever another Angel or Cleric enters the battlefield under your control, you gain life equal to that creature's toughness.$As long as you have at least 7 life more than your starting life total, creatures you control get +2/+2.|
|
||||
Runeforge Champion|Kaldheim|339|R|{2}{W}|Creature - Dwarf Warrior|2|3|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 it.$You may pay {1} rather than pay the mana cost for Rune spells you cast.|
|
||||
Search for Glory|Kaldheim|340|R|{2}{W}|Snow Sorcery|||Search your library for a snow permanent card, a legendary card, or a Saga card, reveal it, put it into your hand, then shuffle your library. You gain 1 life for each {S} spent to cast this spell.|
|
||||
Ascendant Spirit|Kaldheim|341|R|{U}|Snow Creature - Spirit|1|1|{S}{S}: Ascendant Spirit becomes a Spirit Warrior with base power and toughness 2/3.${S}{S}{S}: If Ascendant Spirit is a Warrior, put a flying counter on it and it becomes a Spirit Warrior Angel with base power and toughness 4/4.${S}{S}{S}{S}: If Ascendant Spirit is an Angel, put two +1/+1 counters on it and it gains "Whenever this creature deals combat damage to a player, draw a card."|
|
||||
Cosmos Charger|Kaldheim|342|R|{3}{U}|Creature - Horse Spirit|3|3|Flash$Flying$Foretelling cards from your hand costs {1} less and can be done on any player's turn.$Foretell {2}{U}|
|
||||
Cyclone Summoner|Kaldheim|343|R|{5}{U}{U}|Creature - Giant Wizard|7|7|When Cyclone Summoner enters the battlefield, if you cast it from your hand, return all permanents to their owners' hands except for Giants, Wizards, and lands.|
|
||||
Graven Lore|Kaldheim|344|R|{3}{U}{U}|Snow Instant|||Scry X, where X is the amount of {S} spent to cast this spell, then draw three cards.|
|
||||
Icebreaker Kraken|Kaldheim|345|R|{10}{U}{U}|Snow Creature - Kraken|8|8|This spell costs {1} less to cast for each snow land you control.$When Icebreaker Kraken enters the battlefield, artifacts and creatures target opponent controls don't untap during that player's next untap step.$Return three snow lands you control to their owner's hand: Return Icebreaker Kraken to its owner's hand.|
|
||||
Mystic Reflection|Kaldheim|346|R|{1}{U}|Instant|||Choose target nonlegendary creature. The next time one or more creatures or planeswalkers enter the battlefield this turn, they enter as copies of the chosen creature.$Foretell {U}|
|
||||
Reflections of Littjara|Kaldheim|347|R|{4}{U}|Enchantment|||As Reflections of Littjara enters the battlefield, choose a creature type.$Whenever you cast a spell of the chosen type, copy that spell.|
|
||||
Blood on the Snow|Kaldheim|348|R|{4}{B}{B}|Snow Sorcery|||Choose one —$• Destroy all creatures.$• Destroy all planeswalkers.$Then return a creature or planeswalker card with converted mana cost X or less from your graveyard to the battlefield, where X is the amount of {S} spent to cast this spell.|
|
||||
Burning-Rune Demon|Kaldheim|349|M|{4}{B}{B}|Creature - Demon Berserker|6|6|Flying$When Burning-Rune Demon enters the battlefield, you may search your library for exactly two cards not named Burning-Rune Demon that have different names. If you do, reveal those cards. An opponent chooses one of them. Put the chosen card into your hand and the other into your graveyard, then shuffle your library.|
|
||||
Crippling Fear|Kaldheim|350|R|{2}{B}{B}|Sorcery|||Choose a creature type. Creatures that aren't of the chosen type get -3/-3 until end of turn.|
|
||||
Draugr Necromancer|Kaldheim|351|R|{3}{B}|Snow Creature - Zombie Cleric|4|4|If a nontoken creature an opponent controls would die, exile that card with an ice counter on it instead.$You may cast spells from among cards in exile your opponents own with ice counters on them, and you may spend mana from snow sources as though it were mana of any color to cast those spells.|
|
||||
Dream Devourer|Kaldheim|352|R|{1}{B}|Creature - Demon Cleric|0|3|Each nonland card in your hand without foretell has foretell. Its foretell cost is equal to its mana cost reduced by {2}.$Whenever you foretell a card, Dream Devourer gets +2/+0 until end of turn.|
|
||||
Eradicator Valkyrie|Kaldheim|353|M|{2}{B}{B}|Creature - Angel Berserker|4|3|Flying, lifelink, hexproof from planeswalkers$Boast — {1}{B}, Sacrifice a creature: Each opponent sacrifices a creature or planeswalker.|
|
||||
Rise of the Dread Marn|Kaldheim|354|R|{2}{B}|Instant|||Create X 2/2 black Zombie Berserker creature tokens, where X is the number of nontoken creatures that died this turn.$Foretell {B}|
|
||||
Skemfar Avenger|Kaldheim|355|R|{1}{B}|Creature - Elf Berserker|3|1|Whenever another nontoken Elf or Berserker you control dies, you draw a card and you lose 1 life.|
|
||||
Calamity Bearer|Kaldheim|356|R|{2}{R}{R}|Creature - Giant Berserker|3|4|If a Giant source you control would deal damage to a permanent or player, it deals double that damage to that permanent or player instead.|
|
||||
Dragonkin Berserker|Kaldheim|357|R|{1}{R}|Creature - Human Berserker|2|2|First strike$Boast abilities you activate cost {1} less to activate for each Dragon you control.$Boast — {4}{R}: Create a 5/5 red Dragon creature token with flying.|
|
||||
Goldspan Dragon|Kaldheim|358|M|{3}{R}{R}|Creature - Dragon|4|4|Flying, haste$Whenever Goldspan Dragon attacks or becomes the target of a spell, create a Treasure token.$Treasures you control have "{T}, Sacrifice this artifact: Add two mana of any one color."|
|
||||
Reckless Crew|Kaldheim|359|R|{3}{R}|Sorcery|||Create X 2/1 red Dwarf Berserker creature tokens, where X is the number of Vehicles you control plus the number of Equipment you control. For each of those tokens, you may attach an Equipment you control to it.|
|
||||
Tibalt's Trickery|Kaldheim|360|R|{1}{R}|Instant|||Counter target spell. Choose 1, 2, or 3 at random. Its controller mills that many cards, then exiles cards from the top of their library until they exile a nonland card with a different name than that spell. They may cast that card without paying its mana cost. Then they put the exiled cards on the bottom of their library in a random order.|
|
||||
Tundra Fumarole|Kaldheim|361|R|{1}{R}{R}|Snow Sorcery|||Tundra Fumarole deals 4 damage to target creature or planeswalker. Add {C} for each {S} spent to cast this spell. Until end of turn, you don't lose this mana as steps and phases end.|
|
||||
Blessing of Frost|Kaldheim|362|R|{3}{G}|Snow Sorcery|||Distribute X +1/+1 counters among any number of creatures you control, where X is the amount of {S} spent to cast this spell. Then draw a card for each creature you control with power 4 or greater.|
|
||||
Elvish Warmaster|Kaldheim|363|R|{1}{G}|Creature - Elf Warrior|2|2|Whenever one or more other Elves enter the battlefield under your control, create a 1/1 green Elf Warrior creature token. This ability triggers only once each turn.${5}{G}{G}: Elves you control get +2/+2 and gain deathtouch until end of turn.|
|
||||
In Search of Greatness|Kaldheim|364|R|{G}{G}|Enchantment|||At the beginning of your upkeep, you may cast a permanent spell from your hand with converted mana cost equal to 1 plus the highest converted mana cost among other permanents you control without paying its mana cost. If you don't, scry 1.|
|
||||
Old-Growth Troll|Kaldheim|365|R|{G}{G}{G}|Creature - Troll Warrior|4|4|Trample$When Old-Growth Troll dies, if it was a creature, return it to the battlefield. It's an Aura enchantment with enchant Forest you control and "Enchanted Forest has '{T}: Add {G}{G}' and '{1}, {T}, Sacrifice this land: Create a tapped 4/4 green Troll Warrior creature token with trample.'"|
|
||||
Realmwalker|Kaldheim|366|R|{2}{G}|Creature - Shapeshifter|2|3|Changeling$As Realmwalker enters the battlefield, choose a creature type.$You may look at the top card of your library any time.$You may cast creature spells of the chosen type from the top of your library.|
|
||||
Immersturm Predator|Kaldheim|367|R|{2}{B}{R}|Creature - Vampire Dragon|3|3|Flying$Whenever Immersturm Predator becomes tapped, exile up to one target card from a graveyard and put a +1/+1 counter on Immersturm Predator.$Sacrifice another creature: Immersturm Predator gains indestructible until end of turn. Tap it.|
|
||||
Cosmos Elixir|Kaldheim|368|R|{4}|Artifact|||At the beginning of your end step, draw a card if your life total is greater than your starting life total. Otherwise, you gain 2 life.|
|
||||
Maskwood Nexus|Kaldheim|369|R|{4}|Artifact|||Creatures you control are every creature type. The same is true for creature spells you control and creature cards you own that aren't on the battlefield.${3}, {T}: Create a 2/2 blue Shapeshifter creature token with changeling.|
|
||||
Pyre of Heroes|Kaldheim|370|R|{2}|Artifact|||{2}, {T}, Sacrifice a creature: Search your library for a creature card that shares a creature type with the sacrificed creature and has converted mana cost equal to 1 plus that creature's converted mana cost. Put that card onto the battlefield, then shuffle your library. Activate this ability only any time you could cast a sorcery.|
|
||||
Faceless Haven|Kaldheim|371|R||Snow Land|||{T}: Add {C}.${S}{S}{S}: Faceless Haven becomes a 4/3 creature with vigilance and all creature types until end of turn. It's still a land.|
|
||||
Tyrite Sanctum|Kaldheim|372|R||Land|||{T}: Add {C}.${2}, {T}: Target legendary creature becomes a God in addition to its other types. Put a +1/+1 counter on it.${4}, {T}, Sacrifice Tyrite Sanctum: Put an indestructible counter on target God.|
|
||||
The World Tree|Kaldheim|373|R||Land|||The World Tree enters the battlefield tapped.${T}: Add {G}.$As long as you control six or more lands, lands you control have "{T}: Add one mana of any color."${W}{W}{U}{U}{B}{B}{R}{R}{G}{G}, {T}, Sacrifice The World Tree: Search your library for any number of God cards, put them onto the battlefield, then shuffle your library.|
|
||||
Valkyrie Harbinger|Kaldheim|374|R|{4}{W}{W}|Creature - Angel Cleric|4|5|Flying, lifelink$At the beginning of each end step, if you gained 4 or more life this turn, create a 4/4 white Angel creature token with flying and vigilance.|
|
||||
Surtland Elementalist|Kaldheim|375|R|{5}{U}{U}|Creature - Giant Wizard|8|8|As an additional cost to cast this spell, reveal a Giant card from your hand or pay {2}.$Whenever Surtland Elementalist attacks, you may cast an instant or sorcery spell from your hand without paying its mana cost.|
|
||||
Cleaving Reaper|Kaldheim|376|R|{3}{B}{B}|Creature - Angel Berserker|5|3|Flying, trample$Pay 3 life: Return Cleaving Reaper from your graveyard to your hand. Activate this ability only if you had an Angel or Berserker enter the battlefield under your control this turn.|
|
||||
|
@ -40442,7 +40552,7 @@ Canopy Tactician|Kaldheim|378|R|{3}{G}|Creature - Elf Warrior|3|3|Other Elves yo
|
|||
Armed and Armored|Kaldheim|379|U|{1}{W}|Instant|||Vehicles you control become artifact creatures until end of turn. Choose a Dwarf you control. Attach any number of Equipment you control to it.|
|
||||
Starnheim Aspirant|Kaldheim|380|U|{2}{W}|Creature - Human Cleric|2|2|Angel spells you cast cost {2} less to cast.|
|
||||
Warchanter Skald|Kaldheim|381|U|{2}{W}|Creature - Dwarf Cleric|2|3|Whenever Warchanter Skald becomes tapped, if it's enchanted or equipped, create a 2/1 red Dwarf Berserker creature token.|
|
||||
Youthful Valkyrie|Kaldheim|382|U|{1}{W}|Creature - Angel|1|3|Flying$Whenever another Angel enters the battlefield under your control, put a +1/+1 counter on Youthful Valyrie.|
|
||||
Youthful Valkyrie|Kaldheim|382|U|{1}{W}|Creature - Angel|1|3|Flying$Whenever another Angel enters the battlefield under your control, put a +1/+1 counter on Youthful Valkyrie.|
|
||||
Absorb Identity|Kaldheim|383|U|{1}{U}|Instant|||Return target creature to its owner's hand. You may have Shapeshifters you control become copies of that creature until end of turn.|
|
||||
Giant's Grasp|Kaldheim|384|U|{2}{U}{U}|Enchantment - Aura|||Enchant Giant you control$When Giant's Grasp enters the battlefield, gain control of target nonland permanent for as long as Giant's Grasp remains on the battlefield.|
|
||||
Elderfang Ritualist|Kaldheim|385|U|{2}{B}|Creature - Elf Cleric|3|1|When Elderfang Ritualist dies, return another target Elf card from your graveyard to your hand.|
|
||||
|
@ -40453,9 +40563,16 @@ Fire Giant's Fury|Kaldheim|389|U|{1}{R}|Sorcery|||Target Giant you control gets
|
|||
Gilded Assault Cart|Kaldheim|390|U|{1}{R}{R}|Artifact - Vehicle|5|1|Trample$Crew 2$Sacrifice two Treasures: Return Gilded Assault Cart from your graveyard to your hand.|
|
||||
Elven Ambush|Kaldheim|391|U|{3}{G}|Instant|||Create a 1/1 green Elf Warrior creature token for each Elf you control.|
|
||||
Gladewalker Ritualist|Kaldheim|392|U|{2}{G}|Creature - Shapeshifter|3|3|Changeling$Whenever another creature named Gladewalker Ritualist enters the battlefield under your control, draw a card.|
|
||||
Rampage of the Valkyries|Kaldheim|393|U|{3}{W}{B}|Enchantment|||When Rampage of the Valkyries enters the battlefield, create a 4/4 white Angel token with flying and vigilance.$Whenever an Angel you control dies, each other player sacrifices a creature.|
|
||||
Rampage of the Valkyries|Kaldheim|393|U|{3}{W}{B}|Enchantment|||When Rampage of the Valkyries enters the battlefield, create a 4/4 white Angel creature token with flying and vigilance.$Whenever an Angel you control dies, each other player sacrifices a creature.|
|
||||
Plains|Kaldheim|394|C||Basic Land - Plains|||({T}: Add {W}.)|
|
||||
Island|Kaldheim|395|C||Basic Land - Island|||({T}: Add {U}.)|
|
||||
Swamp|Kaldheim|396|C||Basic Land - Swamp|||({T}: Add {B}.)|
|
||||
Mountain|Kaldheim|397|C||Basic Land - Mountain|||({T}: Add {R}.)|
|
||||
Forest|Kaldheim|398|C||Basic Land - Forest|||({T}: Add {G}.)|
|
||||
Realmwalker|Kaldheim|399|R|{2}{G}|Creature - Shapeshifter|2|3|Changeling$As Realmwalker enters the battlefield, choose a creature type.$You may look at the top card of your library any time.$You may cast creature spells of the chosen type from the top of your library.|
|
||||
Reflections of Littjara|Kaldheim|400|R|{4}{U}|Enchantment|||As Reflections of Littjara enters the battlefield, choose a creature type.$Whenever you cast a spell of the chosen type, copy that spell.|
|
||||
Usher of the Fallen|Kaldheim|401|U|{W}|Creature - Spirit Warrior|2|1|Boast — {1}{W}: Create a 1/1 white Human Warrior creature token.|
|
||||
Strategic Planning|Kaldheim|402|C|{1}{U}|Sorcery|||Look at the top three cards of your library. Put one of them into your hand and the rest into your graveyard.|
|
||||
Poison the Cup|Kaldheim|403|U|{1}{B}{B}|Instant|||Destroy target creature. If this spell was foretold, scry 2.$Foretell {1}{B}|
|
||||
Frost Bite|Kaldheim|404|C|{R}|Snow Instant|||Frost Bite deals 2 damage to target creature or planeswalker. If you control three or more snow permanents, it deals 3 damage instead.|
|
||||
Masked Vandal|Kaldheim|405|C|{1}{G}|Creature - Shapeshifter|1|3|Changeling$When Masked Vandal enters the battlefield, you may exile a creature card from your graveyard. If you do, exile target artifact or enchantment an opponent controls.|
|
||||
|
|
Loading…
Reference in a new issue