This commit is contained in:
Psyyringe
2009-10-31 05:14:55 +00:00
parent 9e608d10b1
commit 41012eecde
6 changed files with 202 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#NAME: Bloodhall Ooze i148
#DESC: When a black or green creature is
#DESC: summoned, then the first "Bloodhall
#DESC: Ooze" in the summoning player's
#DESC: battlefield should not get a
#DESC: +1/+1 counter. The Bloodhall Ooze
#DESC: should only get counters during
#DESC: the Upkeep phase.
[INIT]
untap
[PLAYER1]
inplay:swamp,bloodhall ooze,bloodhall ooze
library:muck rats
[PLAYER2]
life:20
[DO]
next
next
next
swamp
muck rats
ai
next
[ASSERT]
untap
[PLAYER1]
inplay:swamp,bloodhall ooze,bloodhall ooze,muck rats
[PLAYER2]
life:18
[END]

View File

@@ -0,0 +1,40 @@
#NAME: Double Strike i145
#DESC: When a creature with double strike kills
#DESC: its blocker with its first strike, then
#DESC: it should not be able to deal damage to
#DESC: the opponent player with its regular
#DESC: strike, unless it has Trample.
#DESC: The following test checks Double Strike
#DESC: with and without Trample. Player1 should
#DESC: lose 7 life from the Fangren Hunter, but
#DESC: none from the Shanodin Dryads.
[INIT]
combatattackers
[PLAYER1]
inplay:shanodin dryads,fangren hunter,rage reflection
graveyard:
[PLAYER2]
inplay:drudge skeletons,walking dead
graveyard:
life:20
[DO]
shanodin dryads
fangren hunter
next
drudge skeletons
walking dead
walking dead
next
next
next
next
[ASSERT]
combatend
[PLAYER1]
inplay:shanodin dryads,fangren hunter,rage reflection
graveyard:
[PLAYER2]
inplay:
graveyard:drudge skeletons,walking dead
life:13
[END]

View File

@@ -0,0 +1,35 @@
#NAME: Exalted i143
#DESC: Tests whether exalted works correctly.
#DESC: If Player1's life is 4 instead of 5,
#DESC: then the exalted Outrider of Jhess
#DESC: erroneously got the +1/+1 bonus although
#DESC: it didn't attack alone. If the Qasali
#DESC: Pridemage survives, then every attacker
#DESC: erroneously got the exalted bonus.
[INIT]
combatattackers
[PLAYER1]
inplay:qasali pridemage,outrider of jhess
graveyard:
[PLAYER2]
inplay:white knight
graveyard:
life:7
[DO]
qasali pridemage
outrider of jhess
next
white knight
next
next
next
[ASSERT]
combatend
[PLAYER1]
inplay:outrider of jhess
graveyard:qasali pridemage
[PLAYER2]
inplay:white knight
graveyard:
life:5
[END]

View File

@@ -0,0 +1,41 @@
#NAME: Fear i147
#DESC: Creatures with fear should be
#DESC: blockable by artifacts and black
#DESC: creatures, but unblockable by others.
[INIT]
combatattackers
[PLAYER1]
inplay:prickly boggart,severed legion,gluttonous zombie,ratcatcher
graveyard:
[PLAYER2]
inplay:scathe zombies,cathodion,gosta dirk,ant queen
graveyard:
life:20
[DO]
prickly boggart
severed legion
gluttonous zombie
ratcatcher
next
scathe zombies
cathodion
cathodion
gosta dirk
gosta dirk
gosta dirk
ant queen
ant queen
ant queen
ant queen
next
next
[ASSERT]
combatend
[PLAYER1]
inplay:gluttonous zombie,ratcatcher
graveyard:prickly boggart,severed legion
[PLAYER2]
inplay:scathe zombies,cathodion,gosta dirk,ant queen
graveyard:
life:13
[END]

View File

@@ -0,0 +1,17 @@
#NAME: Kicker crash i149
#DESC: The Game crashes when AI has Kavu Aggressor in hand
[INIT]
firstmain
[PLAYER1]
inplay:mountain,mountain,mountain
hand:kavu aggressor
[PLAYER2]
[DO]
ai
[ASSERT]
combatblockers
[PLAYER1]
inplay:mountain,mountain,mountain,kavu aggressor
hand:
[PLAYER2]
[END]

View File

@@ -0,0 +1,39 @@
#NAME: Regenerate Wither i146
#DESC: You should not be able to regenerate
#DESC: creatures that haven been dealt lethal
#DESC: damage by -1/-1 counters (Wither).
#DESC: The test checks regeneration of a
#DESC: Drudge Skeletons killed by regular
#DESC: damage (which should work) and a Walking
#DESC: Dead killed by Wither damage (which
#DESC: should not work).
[INIT]
combatbegin
[PLAYER1]
inplay:drudge skeletons,walking dead
graveyard:
manapool:{B}{B}
[PLAYER2]
inplay:boggart ram-gang,hill giant
graveyard:
[DO]
drudge skeletons
walking dead
next
drudge skeletons
walking dead
next
boggart ram-gang
boggart ram-gang
hill giant
next
next
[ASSERT]
combatend
[PLAYER1]
inplay:drudge skeletons
graveyard:walking dead
[PLAYER2]
inplay:boggart ram-gang,hill giant
graveyard:
[END]