mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
[KHM] fixed Toralf's Hammer not working correctly (fixes #7441)
This commit is contained in:
parent
a3133089e7
commit
dca4900233
1 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,6 @@ import mage.abilities.costs.mana.ManaCostsImpl;
|
|||
import mage.abilities.decorator.ConditionalContinuousEffect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.TapTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostEquippedEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityWithAttachmentEffect;
|
||||
import mage.abilities.keyword.EquipAbility;
|
||||
|
@ -69,7 +68,7 @@ public final class ToralfGodOfFury extends ModalDoubleFacesCard {
|
|||
// Equipped creature has "{1}{R}, {T}, Unattach Toralf's Hammer: It deals 3 damage to any target. Return Toralf's Hammer to its owner's hand."
|
||||
this.getRightHalfCard().addAbility(new SimpleStaticAbility(new GainAbilityWithAttachmentEffect(
|
||||
"equipped creature has \"{tap}, Unattach {this}: It deals 3 damage to any target. Return {this} to its owner's hand.\"",
|
||||
new TapTargetEffect(), new TargetAnyTarget(), new UnattachCost(), new ManaCostsImpl<>("{1}{R}"), new TapSourceCost()
|
||||
new ToralfsHammerEffect(), new TargetAnyTarget(), new UnattachCost(), new ManaCostsImpl<>("{1}{R}"), new TapSourceCost()
|
||||
)));
|
||||
|
||||
// Equipped creature get +3/+0 as long as it's legendary.
|
||||
|
|
Loading…
Reference in a new issue