Cloudstone Curio's "may" 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
S4r0m
Posts: 50
Joined: Thu Jan 20, 2011 11:45 pm

Cloudstone Curio's "may" not working.

Post by S4r0m »

The option "may" Isn't working with this card, possibly with some others, still testing but i haven't messing with the script in years (a lot of new things here).

The card reads: "Whenever a nonartifact permanent enters the battlefield under your control, you MAY return another permanent you control that shares a permanent type with it to its owner's hand."

The current primitive reads:

Code: Select all

[card]
name=Cloudstone Curio
auto=@movedto(land[-artifact]|mybattlefield) restriction{type(land|mybattlefield)~morethan~1}:all(trigger) transforms((,newability[may moveto(ownerhand) notatarget(other land|mybattlefield)]))
auto=@movedto(creature[-artifact]|mybattlefield) restriction{type(creature|mybattlefield)~morethan~1}:all(trigger) transforms((,newability[may moveto(ownerhand) notatarget(other creature|mybattlefield)]))
auto=@movedto(enchantment[-artifact]|mybattlefield) restriction{type(enchantment|mybattlefield)~morethan~1}:all(trigger) transforms((,newability[may moveto(ownerhand) notatarget(other enchantment|mybattlefield)]))
auto=@movedto(planeswalker[-artifact]|mybattlefield) restriction{type(planeswalker|mybattlefield)~morethan~1}:all(trigger) transforms((,newability[may moveto(ownerhand) notatarget(other planeswalker|mybattlefield)]))
text=Whenever a nonartifact permanent enters the battlefield under your control, you may return another permanent you control that shares a card type with it to its owner's hand.
mana={3}
type=Artifact
[/card]
Which is supposed to be correct but in practice it doesn't work; It doesn't gives the option to cancel the ability. For example: You put a land and then you should be able to trigger or not the ability, but there's no option to do it, so you must return another land you control to your hand.
Locked