Sosuke's Summons...Not Working.

Do not post feature requests here, please.
Before posting bugs report check the Image Bug reporting help & guidelines
Forum rules
Do not post Features/Improvments request here (i.e : AI being stupid is not a bug, not being able to do a mulligan is not a bug, etc..etc..)
Before posting, please read the Bugs reporting guideline
Locked
sandman423
Posts: 806
Joined: Thu Sep 10, 2009 8:59 pm

Sosuke's Summons...Not Working.

Post by sandman423 »

Doesn't return to my hand after I cast a Creature Spell...Please fix.

Code: Select all

[card]
name=Sosuke's Summons
auto=token(Snake,Snake Creature,1/1)*2
autograveyard=@movedto(mybattlefield) from(snake[-token]):may moveto(myhand) all(this)
text=Put two 1/1 green Snake creature tokens onto the battlefield. -- Whenever a nontoken Snake enters the battlefield under your control, you may return Sosuke's Summons from your graveyard to your hand.
mana={2}{G}
type=Sorcery
[/card]
pankdm
Posts: 50
Joined: Tue Sep 17, 2013 6:34 am

Re: Sosuke's Summons...Not Working.

Post by pankdm »

Try to change "autograveyard=" to this:

Code: Select all

autograveyard=@movedto(snake[-token]|mybattlefield):may moveto(myhand) all(this)
sandman423
Posts: 806
Joined: Thu Sep 10, 2009 8:59 pm

Re: Sosuke's Summons...Not Working.

Post by sandman423 »

I tried this but the Bounce option pops up but it doesn't go back to my hand after I cast a creature
pankdm
Posts: 50
Joined: Tue Sep 17, 2013 6:34 am

Re: Sosuke's Summons...Not Working.

Post by pankdm »

This variant seems to work:

Code: Select all

autograveyard=@movedto(snake[-token]|mybattlefield):may moveto(myhand)
Locked