CardFactoryUtil: fixed etb tapped

This commit is contained in:
Hanmac
2016-10-31 05:49:03 +00:00
parent ebbe189f4a
commit 6315d0760d

View File

@@ -2601,9 +2601,9 @@ public class CardFactoryUtil {
} else if (kw.equals("CARDNAME enters the battlefield tapped.")) {
card.removeIntrinsicKeyword(kw);
String effect = "AB$ Tap | Cost$ 0 | Defined$ Self | ETB$ True | SpellDescription$ CARDNAME enters the battlefield tapped.";
String effect = "DB$ Tap | Defined$ Self | ETB$ True | SpellDescription$ CARDNAME enters the battlefield tapped.";
createETBReplacement(card, ReplacementLayer.Other, effect, false, false, true, "ValidCard$ Card.Self", "");
createETBReplacement(card, ReplacementLayer.Other, effect, false, false, true, "Card.Self", "");
}
}
}