mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -08:00
* Corrected use of DrawDiscardOneOfThemEffect, rather than DrawDiscardControllerEffect in CastingOfBones.
This commit is contained in:
parent
a0f2311300
commit
3a441349ef
1 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DiesAttachedTriggeredAbility;
|
||||
import mage.abilities.effects.common.AttachEffect;
|
||||
import mage.abilities.effects.common.DrawDiscardControllerEffect;
|
||||
import mage.abilities.effects.common.DrawDiscardOneOfThemEffect;
|
||||
import mage.constants.Outcome;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.abilities.keyword.EnchantAbility;
|
||||
|
|
@ -61,7 +61,7 @@ public class CastingOfBones extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// When enchanted creature dies, draw three cards, then discard one of them.
|
||||
this.addAbility(new DiesAttachedTriggeredAbility(new DrawDiscardControllerEffect(3, 1), "enchanted creature"));
|
||||
this.addAbility(new DiesAttachedTriggeredAbility(new DrawDiscardOneOfThemEffect(3), "enchanted creature"));
|
||||
}
|
||||
|
||||
public CastingOfBones(final CastingOfBones card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue