mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Sekki, Seasons' Guide - Fixed that it wrongly returned to hand instead to battlefield.
This commit is contained in:
parent
9dd6e616cd
commit
25db567c89
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ import mage.abilities.common.SimpleStaticAbility;
|
|||
import mage.abilities.costs.common.SacrificeTargetCost;
|
||||
import mage.abilities.effects.PreventionEffectImpl;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.ReturnSourceFromGraveyardToHandEffect;
|
||||
import mage.abilities.effects.common.ReturnSourceFromGraveyardToBattlefieldEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
|
@ -82,7 +82,7 @@ public class SekkiSeasonsGuide extends CardImpl {
|
|||
// Sacrifice eight Spirits: Return Sekki from your graveyard to the battlefield.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
Zone.GRAVEYARD,
|
||||
new ReturnSourceFromGraveyardToHandEffect(),
|
||||
new ReturnSourceFromGraveyardToBattlefieldEffect(),
|
||||
new SacrificeTargetCost(new TargetControlledPermanent(8, 8, filter, true))));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue