-fix issue 239 (skullcage)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-12-13 11:18:55 +00:00
parent cc46be7fbe
commit 86c72b7d15
10 changed files with 14 additions and 4 deletions

View File

@@ -1,24 +0,0 @@
#NAME: Skull Cage 0
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer 2 damage if he has no cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
life:18
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,26 +0,0 @@
#NAME: Skull Cage 1
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer 2 damage if he has 1 card
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest
life:18
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,26 +0,0 @@
#NAME: Skull Cage 2
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer 2 damage if he has 2 cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest,Island
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest,Island
life:18
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,25 +0,0 @@
#NAME: Skull Cage 3
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer no damage if he has 3 cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest,Island,Mountain
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest,Island,Mountain
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,25 +0,0 @@
#NAME: Skull Cage 4
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer no damage if he has 4 cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest,Island,Mountain,Plains
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest,Island,Mountain,Plains
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,26 +0,0 @@
#NAME: Skull Cage 5
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer 2 damage if he has 5 cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest,Island,Mountain,Plains,Swamp
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest,Island,Mountain,Plains,Swamp
life:18
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,26 +0,0 @@
#NAME: Skull Cage 6
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer 2 damage if he has 6 cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest,Island,Mountain,Plains,Swamp,Grizzly Bears
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest,Island,Mountain,Plains,Swamp,Grizzly Bears
life:18
[PLAYER2]
inplay:Skullcage
[END]

View File

@@ -1,26 +0,0 @@
#NAME: Skull Cage 7
#DESC: "At the beginning of each opponent's upkeep,
#DESC: Skullcage deals 2 damage to that player
#DESC: unless he or she has exactly three or
#DESC: exactly four cards in hand."
#DESC: This script tests whether the player will
#DESC: correctly suffer 2 damage if he has 7 cards
#DESC: in hand.
#DESC: http://code.google.com/p/wagic/issues/detail?id=239
[INIT]
untap
[PLAYER1]
hand:Forest,Island,Mountain,Plains,Swamp,Grizzly Bears,Craw Wurm
[PLAYER2]
inplay:Skullcage
[DO]
next
next
[ASSERT]
draw
[PLAYER1]
hand:Forest,Island,Mountain,Plains,Swamp,Grizzly Bears,Craw Wurm
life:18
[PLAYER2]
inplay:Skullcage
[END]