From 8e38294d62b4baa2c4462923df1cef55fc442ecb Mon Sep 17 00:00:00 2001 From: etpalmer63 Date: Sat, 27 Jun 2020 11:44:44 -0700 Subject: [PATCH] 'put' should be 'create' tokens. Added rule note. --- Mage.Sets/src/mage/cards/s/SoulSeparator.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/s/SoulSeparator.java b/Mage.Sets/src/mage/cards/s/SoulSeparator.java index 736df1a1f6..9691ba8772 100644 --- a/Mage.Sets/src/mage/cards/s/SoulSeparator.java +++ b/Mage.Sets/src/mage/cards/s/SoulSeparator.java @@ -34,6 +34,12 @@ public final class SoulSeparator extends CardImpl { // {5}, {T}, Sacrifice Soul Separator: Exile target creature card from your graveyard. // Create a token that's a copy of that card except it's 1/1, it's a Spirit in addition to its other types, and it has flying. // Put a black Zombie creature token onto the battlefield with power equal to that card's power and toughness equal that card's toughness. + + // 20200601 - 701.6c + // Previously, an effect that created tokens instructed a player to “put [those tokens] onto the battlefield.” + // Cards that were printed with that text have received errata in the Oracle card reference so they now + // “create” those tokens. + CreateTokenCopyTargetEffect copyEffect = new CreateTokenCopyTargetEffect(null, null, false, 1, false, false, null, 1, 1, true); copyEffect.setAdditionalSubType(SubType.SPIRIT); copyEffect.setText("Create a token that's a copy of that card except it's 1/1, it's a Spirit in addition to its other types, and it has flying"); @@ -59,7 +65,7 @@ class SoulSeparatorEffect extends OneShotEffect { public SoulSeparatorEffect() { super(Outcome.PutCreatureInPlay); - this.staticText = "Put a black Zombie creature token with power equal to that card's power and toughness equal that card's toughness"; + this.staticText = "Create a black Zombie creature token with power equal to that card's power and toughness equal that card's toughness"; } public SoulSeparatorEffect(final SoulSeparatorEffect effect) {