[AKH] Embalm - Fixed that the token wrongly had the mana costs of the original card.

This commit is contained in:
LevelX2 2017-04-16 01:38:36 +02:00
parent f58ab300b2
commit 4044b9aa3b

View file

@ -111,7 +111,10 @@ class EmbalmEffect extends OneShotEffect {
if (!token.getSubtype(game).contains("Zombie")) {
token.getSubtype(game).add(0, "Zombie");
}
token.getManaCost().clear();
token.putOntoBattlefield(1, game, source.getSourceId(), source.getControllerId(), false, false, null);
// Probably it makes sense to remove also the Embalm ability (it's not shown on the token cards).
// Also it can never get active or? But it's not mentioned in the reminder text.
return true;
}