mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[AKH] Embalm - Fixed that the token wrongly had the mana costs of the original card.
This commit is contained in:
parent
f58ab300b2
commit
4044b9aa3b
1 changed files with 3 additions and 0 deletions
|
@ -111,7 +111,10 @@ class EmbalmEffect extends OneShotEffect {
|
||||||
if (!token.getSubtype(game).contains("Zombie")) {
|
if (!token.getSubtype(game).contains("Zombie")) {
|
||||||
token.getSubtype(game).add(0, "Zombie");
|
token.getSubtype(game).add(0, "Zombie");
|
||||||
}
|
}
|
||||||
|
token.getManaCost().clear();
|
||||||
token.putOntoBattlefield(1, game, source.getSourceId(), source.getControllerId(), false, false, null);
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue