diff --git a/Mage.Sets/src/mage/cards/b/BreyaEtheriumShaper.java b/Mage.Sets/src/mage/cards/b/BreyaEtheriumShaper.java
new file mode 100644
index 00000000000..0d174e03187
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/b/BreyaEtheriumShaper.java
@@ -0,0 +1,114 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.b;
+
+import java.util.UUID;
+import mage.MageInt;
+import mage.abilities.Ability;
+import mage.abilities.Mode;
+import mage.abilities.common.EntersBattlefieldTriggeredAbility;
+import mage.abilities.common.SimpleActivatedAbility;
+import mage.abilities.costs.common.SacrificeTargetCost;
+import mage.abilities.costs.mana.GenericManaCost;
+import mage.abilities.effects.common.CreateTokenEffect;
+import mage.abilities.effects.common.DamageTargetEffect;
+import mage.abilities.effects.common.GainLifeEffect;
+import mage.abilities.effects.common.continuous.BoostTargetEffect;
+import mage.abilities.keyword.FlyingAbility;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.Duration;
+import mage.constants.Zone;
+import mage.filter.common.FilterControlledArtifactPermanent;
+import mage.game.permanent.token.Token;
+import mage.target.TargetPlayer;
+import mage.target.common.TargetControlledPermanent;
+import mage.target.common.TargetCreaturePermanent;
+
+/**
+ *
+ * @author fireshoes
+ */
+public class BreyaEtheriumShaper extends CardImpl {
+
+ public BreyaEtheriumShaper(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{W}{U}{B}{R}");
+
+ this.supertype.add("Legendary");
+ this.subtype.add("Human");
+ this.power = new MageInt(4);
+ this.toughness = new MageInt(4);
+
+ // When Breya, Etherium Shaper enters the battlefield, create two 1/1 blue Thopter artifact creature tokens with flying.
+ this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new ThopterToken(), 2)));
+
+ // {2}, Sacrifice two artifacts: Choose one — Breya deals 3 damage to target player.
+ Ability ability = new SimpleActivatedAbility(
+ Zone.BATTLEFIELD,
+ new DamageTargetEffect(3),
+ new GenericManaCost(2));
+ ability.addCost(new SacrificeTargetCost(new TargetControlledPermanent(2, 2, new FilterControlledArtifactPermanent("two artifacts"), true)));
+ ability.addTarget(new TargetPlayer());
+
+ // Target creature gets -4/-4 until end of turn.
+ Mode mode = new Mode();
+ mode.getEffects().add(new BoostTargetEffect(-4, -4, Duration.EndOfTurn));
+ mode.getTargets().add(new TargetCreaturePermanent());
+ ability.addMode(mode);
+
+ // or You gain 5 life.
+ mode = new Mode();
+ mode.getEffects().add(new GainLifeEffect(5));
+ ability.addMode(mode);
+ this.addAbility(ability);
+ }
+
+ public BreyaEtheriumShaper(final BreyaEtheriumShaper card) {
+ super(card);
+ }
+
+ @Override
+ public BreyaEtheriumShaper copy() {
+ return new BreyaEtheriumShaper(this);
+ }
+}
+
+class ThopterToken extends Token {
+
+ ThopterToken() {
+ super("Thopter", "1/1 blue Thopter artifact creature tokens with flying");
+ cardType.add(CardType.CREATURE);
+ cardType.add(CardType.ARTIFACT);
+ color.setBlue(true);
+ subtype.add("Thopter");
+ power = new MageInt(1);
+ toughness = new MageInt(1);
+ this.addAbility(FlyingAbility.getInstance());
+ }
+}
\ No newline at end of file
diff --git a/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java b/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java
new file mode 100644
index 00000000000..f93601c1add
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/c/CrystallineCrawler.java
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.c;
+
+import java.util.UUID;
+import mage.MageInt;
+import mage.abilities.common.EntersBattlefieldAbility;
+import mage.abilities.common.SimpleActivatedAbility;
+import mage.abilities.costs.common.RemoveCountersSourceCost;
+import mage.abilities.costs.common.TapSourceCost;
+import mage.abilities.dynamicvalue.common.ColorsOfManaSpentToCastCount;
+import mage.abilities.effects.common.counter.AddCountersSourceEffect;
+import mage.abilities.mana.AnyColorManaAbility;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.Zone;
+import mage.counters.CounterType;
+
+/**
+ *
+ * @author fireshoes
+ */
+public class CrystallineCrawler extends CardImpl {
+
+ public CrystallineCrawler(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
+
+ this.subtype.add("Construct");
+ this.power = new MageInt(1);
+ this.toughness = new MageInt(1);
+
+ // Converge — Crystalline Crawler enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
+ this.addAbility(new EntersBattlefieldAbility(
+ new AddCountersSourceEffect(CounterType.P1P1.createInstance(), ColorsOfManaSpentToCastCount.getInstance(), true),
+ null, "Converge - {this} enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.", null));
+
+ // Remove a +1/+1 counter from Crystalline Crawler: Add one mana of any color to your mana pool.
+ this.addAbility(new AnyColorManaAbility(new RemoveCountersSourceCost(CounterType.P1P1.createInstance(1))));
+
+ // {T}: Put a +1/+1 counter on Crystalline Crawler.
+ this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.P1P1.createInstance(1)), new TapSourceCost()));
+ }
+
+ public CrystallineCrawler(final CrystallineCrawler card) {
+ super(card);
+ }
+
+ @Override
+ public CrystallineCrawler copy() {
+ return new CrystallineCrawler(this);
+ }
+}
diff --git a/Mage.Sets/src/mage/cards/p/PrimevalProtector.java b/Mage.Sets/src/mage/cards/p/PrimevalProtector.java
new file mode 100644
index 00000000000..f59f4588a9b
--- /dev/null
+++ b/Mage.Sets/src/mage/cards/p/PrimevalProtector.java
@@ -0,0 +1,133 @@
+/*
+ * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of BetaSteward_at_googlemail.com.
+ */
+package mage.cards.p;
+
+import java.util.UUID;
+import mage.MageInt;
+import mage.abilities.Ability;
+import mage.abilities.SpellAbility;
+import mage.abilities.common.EntersBattlefieldTriggeredAbility;
+import mage.abilities.common.SimpleStaticAbility;
+import mage.abilities.effects.common.cost.CostModificationEffectImpl;
+import mage.abilities.effects.common.counter.AddCountersAllEffect;
+import mage.cards.CardImpl;
+import mage.cards.CardSetInfo;
+import mage.constants.CardType;
+import mage.constants.CostModificationType;
+import mage.constants.Duration;
+import mage.constants.Outcome;
+import mage.constants.TargetController;
+import mage.constants.Zone;
+import mage.counters.CounterType;
+import mage.filter.common.FilterControlledCreaturePermanent;
+import mage.filter.common.FilterCreaturePermanent;
+import mage.filter.predicate.permanent.AnotherPredicate;
+import mage.filter.predicate.permanent.ControllerPredicate;
+import mage.game.Game;
+import mage.players.Player;
+import mage.util.CardUtil;
+
+/**
+ *
+ * @author fireshoes
+ */
+public class PrimevalProtector extends CardImpl {
+
+ private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("other creature you control");
+
+ static {
+ filter.add(new AnotherPredicate());
+ }
+
+ public PrimevalProtector(UUID ownerId, CardSetInfo setInfo) {
+ super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{10}{G}");
+
+ this.subtype.add("Avatar");
+ this.power = new MageInt(10);
+ this.toughness = new MageInt(10);
+
+ // Primeval Protector costs {1} less to cast for each creature your opponents control.
+ Ability ability = new SimpleStaticAbility(Zone.ALL, new PrimevalProtectorCostReductionEffect());
+ ability.setRuleAtTheTop(true);
+ this.addAbility(ability);
+
+ // When Primeval Protector enters the battlefield, put +1/+1 counter on each other creature you control.
+ this.addAbility(new EntersBattlefieldTriggeredAbility(new AddCountersAllEffect(CounterType.P1P1.createInstance(), filter), false));
+ }
+
+ public PrimevalProtector(final PrimevalProtector card) {
+ super(card);
+ }
+
+ @Override
+ public PrimevalProtector copy() {
+ return new PrimevalProtector(this);
+ }
+}
+
+class PrimevalProtectorCostReductionEffect extends CostModificationEffectImpl {
+
+ private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("each creature your opponents control");
+
+ static {
+ filter.add(new ControllerPredicate(TargetController.OPPONENT));
+ }
+
+ PrimevalProtectorCostReductionEffect() {
+ super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
+ staticText = "{this} costs {1} less to cast for each creature your opponents control";
+ }
+
+ PrimevalProtectorCostReductionEffect(PrimevalProtectorCostReductionEffect effect) {
+ super(effect);
+ }
+
+ @Override
+ public boolean apply(Game game, Ability source, Ability abilityToModify) {
+ Player player = game.getPlayer(source.getControllerId());
+ if (player != null) {
+ int reductionAmount = game.getBattlefield().count(filter, source.getSourceId(), source.getControllerId(), game);
+ CardUtil.reduceCost(abilityToModify, reductionAmount);
+ return true;
+ }
+ return false;
+ }
+
+ @Override
+ public boolean applies(Ability abilityToModify, Ability source, Game game) {
+ if ((abilityToModify instanceof SpellAbility) && abilityToModify.getSourceId().equals(source.getSourceId())) {
+ return game.getCard(abilityToModify.getSourceId()) != null;
+ }
+ return false;
+ }
+
+ @Override
+ public PrimevalProtectorCostReductionEffect copy() {
+ return new PrimevalProtectorCostReductionEffect(this);
+ }
+}
\ No newline at end of file
diff --git a/Mage.Sets/src/mage/cards/t/TajuruStalwart.java b/Mage.Sets/src/mage/cards/t/TajuruStalwart.java
index 3216bc26ec9..67da1989190 100644
--- a/Mage.Sets/src/mage/cards/t/TajuruStalwart.java
+++ b/Mage.Sets/src/mage/cards/t/TajuruStalwart.java
@@ -51,10 +51,10 @@ public class TajuruStalwart extends CardImpl {
this.power = new MageInt(0);
this.toughness = new MageInt(1);
- // Converge - Tajuru Stalwart enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
+ // Converge — Tajuru Stalwart enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
this.addAbility(new EntersBattlefieldAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance(), ColorsOfManaSpentToCastCount.getInstance(), true),
- null, "Converge - {this} enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.", null));
+ null, "Converge — {this} enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.", null));
}
diff --git a/Mage.Sets/src/mage/cards/u/UmezawasJitte.java b/Mage.Sets/src/mage/cards/u/UmezawasJitte.java
index 0e03bcb37b7..ec6d1c5858d 100644
--- a/Mage.Sets/src/mage/cards/u/UmezawasJitte.java
+++ b/Mage.Sets/src/mage/cards/u/UmezawasJitte.java
@@ -27,7 +27,7 @@
*/
package mage.cards.u;
-import mage.constants.*;
+import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.TriggeredAbilityImpl;
@@ -41,16 +41,15 @@ import mage.abilities.effects.common.counter.AddCountersSourceEffect;
import mage.abilities.keyword.EquipAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
+import mage.constants.*;
import mage.counters.CounterType;
import mage.game.Game;
import mage.game.events.DamagedEvent;
import mage.game.events.GameEvent;
+import mage.game.events.GameEvent.EventType;
import mage.game.permanent.Permanent;
import mage.target.common.TargetCreaturePermanent;
-import java.util.UUID;
-import mage.game.events.GameEvent.EventType;
-
/**
* @author Loki
*/
@@ -64,15 +63,19 @@ public class UmezawasJitte extends CardImpl {
// Whenever equipped creature deals combat damage, put two charge counters on Umezawa's Jitte.
this.addAbility(new UmezawasJitteAbility());
- // Remove a charge counter from Umezawa's Jitte: Choose one Equipped creature gets +2/+2 until end of turn; or target creature gets -1/-1 until end of turn; or you gain 2 life.
+ // Remove a charge counter from Umezawa's Jitte: Choose one — Equipped creature gets +2/+2 until end of turn.
Ability ability = new SimpleActivatedAbility(
- Zone.BATTLEFIELD,
- new BoostEquippedEffect(2, 2, Duration.EndOfTurn),
+ Zone.BATTLEFIELD,
+ new BoostEquippedEffect(2, 2, Duration.EndOfTurn),
new RemoveCountersSourceCost(CounterType.CHARGE.createInstance()));
+
+ // Target creature gets -1/-1 until end of turn.
Mode mode = new Mode();
mode.getEffects().add(new BoostTargetEffect(-1, -1, Duration.EndOfTurn));
mode.getTargets().add(new TargetCreaturePermanent());
ability.addMode(mode);
+
+ // You gain 2 life.
mode = new Mode();
mode.getEffects().add(new GainLifeEffect(2));
ability.addMode(mode);
diff --git a/Mage.Sets/src/mage/cards/w/WoodlandWanderer.java b/Mage.Sets/src/mage/cards/w/WoodlandWanderer.java
index d05c310f481..1592c03eacd 100644
--- a/Mage.Sets/src/mage/cards/w/WoodlandWanderer.java
+++ b/Mage.Sets/src/mage/cards/w/WoodlandWanderer.java
@@ -55,7 +55,7 @@ public class WoodlandWanderer extends CardImpl {
this.addAbility(VigilanceAbility.getInstance());
// Trample
this.addAbility(TrampleAbility.getInstance());
- // Converge - Woodland Wanderer enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
+ // Converge — Woodland Wanderer enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.
this.addAbility(new EntersBattlefieldAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance(), ColorsOfManaSpentToCastCount.getInstance(), true),
null, "Converge — {this} enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.", null));
diff --git a/Mage.Sets/src/mage/sets/Commander2016.java b/Mage.Sets/src/mage/sets/Commander2016.java
index c2024867371..c4fe47bd2a4 100644
--- a/Mage.Sets/src/mage/sets/Commander2016.java
+++ b/Mage.Sets/src/mage/sets/Commander2016.java
@@ -48,13 +48,16 @@ public class Commander2016 extends ExpansionSet {
super("Commander 2016 Edition", "C16", ExpansionSet.buildDate(2016, 11, 11), SetType.SUPPLEMENTAL);
this.blockName = "Command Zone";
cards.add(new SetCardInfo("Atraxa, Praetors' Voice", 28, Rarity.MYTHIC, mage.cards.a.AtraxaPraetorsVoice.class));
+ cards.add(new SetCardInfo("Breya, Etherium Shaper", 29, Rarity.MYTHIC, mage.cards.b.BreyaEtheriumShaper.class));
cards.add(new SetCardInfo("Chromatic Lantern", 247, Rarity.RARE, mage.cards.c.ChromaticLantern.class));
cards.add(new SetCardInfo("Command Tower", 286, Rarity.COMMON, mage.cards.c.CommandTower.class));
cards.add(new SetCardInfo("Commander's Sphere", 248, Rarity.COMMON, mage.cards.c.CommandersSphere.class));
+ cards.add(new SetCardInfo("Crystalline Crawler", 54, Rarity.RARE, mage.cards.c.CrystallineCrawler.class));
cards.add(new SetCardInfo("Grave Upheaval", 31, Rarity.UNCOMMON, mage.cards.g.GraveUpheaval.class));
cards.add(new SetCardInfo("Hanna, Ship's Navigator", 203, Rarity.RARE, mage.cards.h.HannaShipsNavigator.class));
cards.add(new SetCardInfo("Iroas, God of Victory", 205, Rarity.MYTHIC, mage.cards.i.IroasGodOfVictory.class));
cards.add(new SetCardInfo("Oath of Druids", 159, Rarity.RARE, mage.cards.o.OathOfDruids.class));
+ cards.add(new SetCardInfo("Primeval Protector", 23, Rarity.RARE, mage.cards.p.PrimevalProtector.class));
cards.add(new SetCardInfo("Prismatic Geoscope", 55, Rarity.RARE, mage.cards.p.PrismaticGeoscope.class));
cards.add(new SetCardInfo("Sylvan Reclamation", 44, Rarity.UNCOMMON, mage.cards.s.SylvanReclamation.class));
cards.add(new SetCardInfo("Zedruu the Greathearted", 231, Rarity.MYTHIC, mage.cards.z.ZedruuTheGreathearted.class));
diff --git a/Mage/src/main/java/mage/abilities/effects/common/CreateTokenEffect.java b/Mage/src/main/java/mage/abilities/effects/common/CreateTokenEffect.java
index 5b61e675d22..09f166c3aba 100644
--- a/Mage/src/main/java/mage/abilities/effects/common/CreateTokenEffect.java
+++ b/Mage/src/main/java/mage/abilities/effects/common/CreateTokenEffect.java
@@ -109,7 +109,7 @@ public class CreateTokenEffect extends OneShotEffect {
}
private void setText() {
- StringBuilder sb = new StringBuilder("put ");
+ StringBuilder sb = new StringBuilder("create ");
if (amount.toString().equals("1")) {
sb.append("a ").append(token.getDescription());
} else {
@@ -118,7 +118,6 @@ public class CreateTokenEffect extends OneShotEffect {
sb.append("s ");
}
}
- sb.append(" onto the battlefield");
if (tapped) {
sb.append(" tapped");
}
diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt
index f947809b5d8..b6d1a290d3d 100644
--- a/Utils/mtg-cards-data.txt
+++ b/Utils/mtg-cards-data.txt
@@ -18561,7 +18561,7 @@ Ghosthelm Courier|Onslaught|85|U|{2}{U}|Creature - Human Wizard|2|1|You may choo
Graxiplon|Onslaught|86|U|{5}{U}|Creature - Beast|3|4|Graxiplon is unblockable unless defending player controls three or more creatures that share a creature type.|
Imagecrafter|Onslaught|87|C|{U}|Creature - Human Wizard|1|1|{tap}: Choose a creature type other than Wall. Target creature becomes that type until end of turn.|
Information Dealer|Onslaught|88|C|{1}{U}|Creature - Human Wizard|1|1|{tap}: Look at the top X cards of your library, where X is the number of Wizards on the battlefield, then put them back in any order.|
-Ixidor, Reality Sculptor|Onslaught|89|R|{3}{U}|Legendary Creature - Human Wizard|3|4|Face-down creatures get +1/+1.${2}{U}: Turn target face-down creature face up.|
+Ixidor, Reality Sculptor|Onslaught|89|R|{3}{U}{U}|Legendary Creature - Human Wizard|3|4|Face-down creatures get +1/+1.${2}{U}: Turn target face-down creature face up.|
Battlefield Medic|Onslaught|9|C|{1}{W}|Creature - Human Cleric|1|1|{tap}: Prevent the next X damage that would be dealt to target creature this turn, where X is the number of Clerics on the battlefield.|
Ixidor's Will|Onslaught|90|C|{2}{U}|Instant|||Counter target spell unless its controller pays {2} for each Wizard on the battlefield.|
Mage's Guile|Onslaught|91|C|{1}{U}|Instant|||Target creature gains shroud until end of turn. (It can't be the target of spells or abilities.)$Cycling {U} ({U}, Discard this card: Draw a card.)|