Groundswell- Worldwake (Working)

In this forum you will find all cards that COULD be added to the game but aren't because they don't work 100%.
Locked
blender2005
Posts: 40
Joined: Mon Dec 20, 2010 8:17 pm
Location: Spain

Groundswell- Worldwake (Working)

Post by blender2005 »

Very good:

I created the Groundswell letter, but when put into play does not work well, always gives +4 / +4, the code I used is as follows:

[card]
name=Groundswell
target=creature
auto=2/2
auto=@movedTo(land|mybattlefield) 2/2
text=Target creature gets +2/+2 until end of turn. -- Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead.
mana={G}
type=Instant
[/card]
If you can tell that fails, it would greatly appreciate, I have watched many agreed and I have not gotten it to work.

Thank you very much
A Salute

P. S. I do not speak English, it is translated with Google, sorry if something bad writing
Last edited by blender2005 on Mon Jan 10, 2011 8:16 pm, edited 1 time in total.
Zethfox
Posts: 3029
Joined: Thu Jun 10, 2010 11:28 pm

Re: Groundswell- Worldwake (Not added)

Post by Zethfox »

this card will actually be added soon...

replace auto=@movedTo(land|mybattlefield) 2/2
with this...
auto=aslongas(land[fresh]|mybattlefield) 2/2
blender2005
Posts: 40
Joined: Mon Dec 20, 2010 8:17 pm
Location: Spain

Re: Groundswell- Worldwake (Working)

Post by blender2005 »

Zethfox wrote:this card will actually be added soon...

replace auto=@movedTo(land|mybattlefield) 2/2
with this...
auto=aslongas(land[fresh]|mybattlefield) 2/2
Thank you very much for the help, I work properly.

I put the full code in case anyone wants to use.

[card]
name=Groundswell
target=creature
auto=2/2
auto=aslongas(land[fresh]|mybattlefield) 2/2
text=Target creature gets +2/+2 until end of turn. -- Landfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead.
mana={G}
type=Instant
[/card]

Thank you very much
A Salute
Spiwy
Posts: 42
Joined: Tue Nov 23, 2010 10:01 pm
Location: Spain

Re: Groundswell- Worldwake (Working)

Post by Spiwy »

With the fresh thing you can code this one too:

Code: Select all

[card]
name=Mysteries of the Deep
rarity=C
grade=Unofficial
id=194699
auto=draw:2
auto=aslongas(land[fresh]|mybattlefield)draw:1
text=Draw two cards. -- Landfall - If you had a land enter the battlefield under your control this turn, draw three cards instead.
mana={4}{U}
type=instant
[/card]
This is the first one that came to my mind, don't know if there are more!

Regards! :)
Locked