goupildb / wagic

Automatically exported from code.google.com/p/wagic
Other
0 stars 0 forks source link

Rancid Earth not working. #531

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Cards like Rancid Earth don't take advantage of the threshold ability.

Original issue reported on code.google.com by wrenc...@gmail.com on 25 Nov 2010 at 5:18

GoogleCodeExporter commented 9 years ago
[card]
name=Rancid Earth
target=land
auto=destroy
auto=aslongas(*|mygraveyard) damage:1 all(creature,player) >6
text=Destroy target land. -- Threshold - If seven or more cards are in your 
graveyard, instead destroy that land and Rancid Earth deals 1 damage to each 
creature and each player.
mana={1}{B}{B}
type=Sorcery
[/card]

this might be card code related. try splitting

all(creature,player)

into 2 lines.

also provide better explainations about what cards are doing. AKA fillout the 
repro form. thanks.

Original comment by omegabla...@gmail.com on 25 Nov 2010 at 5:25

GoogleCodeExporter commented 9 years ago
auto=aslongas(*|mygraveyard) damage:1 all(creature) >6
auto=aslongas(*|mygraveyard) damage:1 all(players) >6

Original comment by omegabla...@gmail.com on 25 Nov 2010 at 5:27

GoogleCodeExporter commented 9 years ago
I tested the 2-line version and it still refuses to work... .

Original comment by dan.solo...@googlemail.com on 28 Nov 2010 at 2:41

GoogleCodeExporter commented 9 years ago
auto=aslongas(*|mygraveyard) 3/3 >6 --> works

auto=aslongas(*|mygraveyard) damage:1 all(creature) >1 --> does not work.

Original comment by dan.solo...@googlemail.com on 28 Nov 2010 at 2:44

GoogleCodeExporter commented 9 years ago
then lord it.

lord(creature) damage:1 all(this) 

:)

Original comment by omegabla...@gmail.com on 29 Nov 2010 at 12:56

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
The same issue is true for Swirling Sandstorm.

Original comment by dan.solo...@googlemail.com on 12 Dec 2010 at 11:30

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r2812.

Original comment by dan.solo...@googlemail.com on 12 Dec 2010 at 4:18

GoogleCodeExporter commented 9 years ago
Rancid earth's new code is:

[card]
name=Rancid Earth
target=land
auto=destroy
auto=aslongas(*|mygraveyard) lord(creature) damage:1 >1
auto=aslongas(*|mygraveyard) damage:1 controller >1
auto=aslongas(*|mygraveyard) damage:1 opponent >1
text=Destroy target land. -- Threshold - If seven or more cards are in your 
graveyard, instead destroy that land and Rancid Earth deals 1 damage to each 
creature and each player.
mana={1}{B}{B}
type=Sorcery
[/card]

All other versions failed.

Original comment by dan.solo...@googlemail.com on 12 Dec 2010 at 4:23