Show and Tell, Mishra's Workshop, Time Vault finally working

For all your questions regarding Image Card Coding.
Please read the Image Posting Guideline & Index before posting in this forum.
Forum rules
DO NOT POST BUG REPORT IN THIS FORUM !!

Please read carefully the forum rules related to the card coding section : viewtopic.php?f=21&t=1545

All post will be edited to follow forum rules.
Garrafa
Posts: 15
Joined: Tue Nov 08, 2011 1:50 am

Re: Show and Tell, Mishra's Workshop, Time Vault finally wor

Post by Garrafa »

Zethfox wrote:protean hulk is a total of 6 or less, meaning one of 5 one of 1, 6 of 1, 2 of 3...you get the point. this allows you to put 60 creatures of 6 or less mana.

show and tell is already in
[card]
name=Show and Tell
auto=moveto(ownerbattlefield) notatarget(*[creature;artifact;enchantment;land]|myhand)
auto=ability$! moveto(ownerbattlefield) notatarget(*[creature;artifact;enchantment;land]|myhand) !$ opponent
text=Each player may put an artifact, creature, enchantment, or land card from his or her hand onto the battlefield.
mana={2}{U}
type=Sorcery
[/card]

thanks, do you know if through the breach and goryo's revenge are coded?
Garrafa
Posts: 15
Joined: Tue Nov 08, 2011 1:50 am

Re: Show and Tell, Mishra's Workshop, Time Vault finally wor

Post by Garrafa »

goryo's vengeance*
Garrafa
Posts: 15
Joined: Tue Nov 08, 2011 1:50 am

Re: Show and Tell, Mishra's Workshop, Time Vault finally wor

Post by Garrafa »

I've coded Quest for the Holy Relic
It works fine, but I had to use a token

Code: Select all

[card]
name=Quest for the Holy Relic
auto=@movedTo(creature|mystack):may counter(0/0,1,Quest) all(this)
auto={C(0/0,-5,Quest)}{S}:name(get equipment) moveto(myBattlefield) target(equipment|mylibrary) && token(-3939393399)
mana={W}
type=Enchantment
[/card]

[card]
name=Attach Equipment
id=-3939393399
auto=target(equipment|mybattefield) transforms((,newability[retarget target(creature|mybattlefield)])) forever
auto=moveto(exile) all(this)
type=nothing
[/card]
Zethfox
Posts: 3029
Joined: Thu Jun 10, 2010 11:28 pm

Re: Show and Tell, Mishra's Workshop, Time Vault finally wor

Post by Zethfox »

[card]
name=Quest for the Holy Relic
auto=@movedTo(creature|mystack):may counter(0/0,1,Quest) all(this)
auto={C(0/0,-5,Quest)}{S}:name(get equipment) ability$! moveto(myBattlefield) target(equipment|mylibrary) and!( retarget target(creature|mybattlefield) )!
mana={W}
type=Enchantment
[/card]

try this instead.
Garrafa
Posts: 15
Joined: Tue Nov 08, 2011 1:50 am

Re: Show and Tell, Mishra's Workshop, Time Vault finally wor

Post by Garrafa »

Zethfox wrote:[card]
name=Quest for the Holy Relic
auto=@movedTo(creature|mystack):may counter(0/0,1,Quest) all(this)
auto={C(0/0,-5,Quest)}{S}:name(get equipment) ability$! moveto(myBattlefield) target(equipment|mylibrary) and!( retarget target(creature|mybattlefield) )!
mana={W}
type=Enchantment
[/card]

try this instead.
I tried and it didn't work, the enchantment is put into the graveyard without doing anything, I'll try it again with some changes
Garrafa
Posts: 15
Joined: Tue Nov 08, 2011 1:50 am

Re: Show and Tell, Mishra's Workshop, Time Vault finally wor

Post by Garrafa »

I tried this one:
[card]
name=Quest for the Holy Relic
auto=@movedTo(creature|mystack):may counter(0/0,1,Quest) all(this)
auto={C(0/0,-5,Quest)}{S}:name(get equipment) moveto(myBattlefield) target(equipment|mylibrary) and!( retarget target(creature|mybattlefield) )!
mana={W}
type=Enchantment
[/card]

I've just removed the abilityS! and it's working, but, it doesn't attach the equipment =/
Locked