From 4044b9aa3b8b9d0d1338363e07576d2debc7bf64 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 16 Apr 2017 01:38:36 +0200 Subject: [PATCH] [AKH] Embalm - Fixed that the token wrongly had the mana costs of the original card. --- Mage/src/main/java/mage/abilities/keyword/EmbalmAbility.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mage/src/main/java/mage/abilities/keyword/EmbalmAbility.java b/Mage/src/main/java/mage/abilities/keyword/EmbalmAbility.java index ed87289b54..30a1866e17 100644 --- a/Mage/src/main/java/mage/abilities/keyword/EmbalmAbility.java +++ b/Mage/src/main/java/mage/abilities/keyword/EmbalmAbility.java @@ -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; }