Added 18 successfully tested cards based on rev2155.

Card list -> first comment

- Added tests for "lifeset" (Biorhythm,Blessed Wind)

- Removed test for Hope Charm.

- Optimized all cards with life payment as activation cost or mana cost.

- Optimized all spells with a must choice.
This commit is contained in:
solo81@web.de
2010-08-08 23:52:34 +00:00
parent ab88dfcda9
commit a3376bf08c
6 changed files with 353 additions and 283 deletions
+2
View File
@@ -127,8 +127,10 @@ behemoth_sledge4.txt
behemoth_sledge5.txt
belligerent_hatchling.txt
benalish_knight.txt
biorhythm.txt
black_market.txt
black_vise.txt
blessed_wind.txt
blessed_wine.txt
blinking_spirit.txt
blinkmoth_nexus.txt
+22
View File
@@ -0,0 +1,22 @@
#NAME: Biorhythm
#DESC: Each player's life total becomes the number of creatures he or she controls.
[INIT]
firstmain
[PLAYER1]
hand:Biorhythm
manapool:{6}{G}{G}
inplay:Llanowar Elves
[PLAYER2]
inplay:Scathe Zombies
[DO]
Biorhythm
[ASSERT]
firstmain
[PLAYER1]
graveyard:Biorhythm
inplay:Llanowar Elves
life:1
[PLAYER2]
inplay:Scathe Zombies
life:1
[END]
@@ -0,0 +1,19 @@
#NAME: Blessed Wind
#DESC: Target player's life total becomes 20.
[INIT]
firstmain
[PLAYER1]
hand:Blessed Wind
manapool:{7}{W}{W}
life:10
[PLAYER2]
[DO]
Blessed Wind
p1
[ASSERT]
firstmain
[PLAYER1]
graveyard:Blessed Wind
life:20
[PLAYER2]
[END]
@@ -1,30 +0,0 @@
#Bug: Hope Charm doesn't give first strike to target creature
[INIT]
COMBATATTACKERS
[PLAYER1]
hand:hope charm
inplay:grizzly bears
manapool:{W}
[PLAYER2]
inplay:hypnotic specter
[DO]
#attackers
hope charm
choice 0
grizzly bears
grizzly bears
next
#blockers
hypnotic specter
next
#damage
next
#end combat
[ASSERT]
COMBATEND
[PLAYER1]
inplay:grizzly bears
graveyard:hope charm
[PLAYER2]
graveyard:hypnotic specter
[END]