Added 66 successfully tested cards based on the last revisions. There are several cards groups in this package:

- Phantom creatures (Phantom Centaur, etc.)
- Soratami
- Cards with alternative casting cost (Force of Will) including almost all cards with EVOKE.
- Creatures which let you look at target players hand.


Added tests for several card groups.


Fixed issue148. Bloodhall Ooze works now as it should.
This commit is contained in:
solo81@web.de
2010-09-01 23:37:18 +00:00
parent a789cd4d08
commit d47b6fd4ec
9 changed files with 879 additions and 914 deletions
+4
View File
@@ -150,6 +150,7 @@ brainstorm.txt
bramblewood_paragon.txt
brass_man.txt
brass_man_i161.txt
briarhorn.txt
cage_of_hands.txt
Call_to_Heel_1.txt
Call_to_Heel_2.txt
@@ -229,6 +230,7 @@ fastbond.txt
fastbond2.txt
fault_line.txt
feral_hydra.txt
fieldmist_borderpost.txt
fire_tempest.txt
firebreathing.txt
fists_of_ironwood.txt
@@ -360,6 +362,7 @@ overrun.txt
paralysis.txt
paralysis2.txt
persuasion.txt
phytohydra.txt
plague_rats.txt
plumes_of_peace_i260.txt
pouncing_jaguar_i425.txt
@@ -474,6 +477,7 @@ urzas_lands2.txt
urzas_mine_i287.txt
vampire_bats.txt
vampiric_link.txt
vine_dryad.txt
volcanic_eruption.txt
walking_wall.txt
wall_of_diffusion.txt
+30
View File
@@ -0,0 +1,30 @@
#Testing Evoke (Briarhorn)
[INIT]
COMBATATTACKERS
[PLAYER1]
hand:Briarhorn
inplay:Grizzly Bears
manapool:{G}{G}
[PLAYER2]
life:20
[DO]
Briarhorn
choice 0
Grizzly Bears
Grizzly Bears
next
#blockers
next
#combatdamage 2
next
#endofcombat 2
[ASSERT]
COMBATEND
[PLAYER1]
inplay:Grizzly Bears
graveyard:Briarhorn
manapool:{0}
life:20
[PLAYER2]
life:15
[END]
@@ -0,0 +1,21 @@
#Testing alternative casting cost (Example: Vine Dryad)
[init]
firstmain
[player1]
hand:Fieldmist Borderpost
inplay:Plains
manapool:{1}
[player2]
[do]
Fieldmist Borderpost
choice 0
Plains
[ASSERT]
firstmain
[PLAYER1]
inplay:Fieldmist Borderpost
hand:Plains
manapool:{0}
[PLAYER2]
life:20
[END]
+31
View File
@@ -0,0 +1,31 @@
#Testing prevent:*number* keyword.
[INIT]
FIRSTMAIN
[PLAYER1]
hand:Lightning Bolt
manapool:{R}
inplay:phytohydra
[PLAYER2]
[DO]
Lightning Bolt
phytohydra
next
#begin
next
#attackers
phytohydra
next
#blockers
next
#damage
next
#end combat
[ASSERT]
COMBATEND
[PLAYER1]
life:20
inplay:phytohydra
graveyard:Lightning Bolt
[PLAYER2]
life:16
[END]
+20
View File
@@ -0,0 +1,20 @@
#Testing alternative casting cost (Example: Vine Dryad)
[init]
firstmain
[player1]
hand:Vine Dryad,Grizzly Bears
manapool:{0}
[player2]
[do]
Vine Dryad
choice 0
Grizzly Bears
[ASSERT]
firstmain
[PLAYER1]
inplay:Vine Dryad
exile:Grizzly Bears
manapool:{0}
[PLAYER2]
life:20
[END]