- Added destroy all(xxx) and bury all(xxx) keywords in _cards.dat
This commit is contained in:
wagic.the.homebrew
2008-11-13 11:36:14 +00:00
parent 443817a83a
commit da1967270c
8 changed files with 99 additions and 87 deletions
+2 -1
View File
@@ -1292,7 +1292,7 @@ mana={G}{G}
[card]
text=Bury all artifacts, creatures, and lands.
id=2631
auto=destroy
auto=bury all(artifact,creature,land)
name=Jokulhaups
rarity=R
type=Sorcery
@@ -1350,6 +1350,7 @@ mana={B}
[/card]
[card]
text=Destroy all white permanents.
auto=destroy all(*[white])
id=2606
name=Anarchy
rarity=U
+6
View File
@@ -69,6 +69,7 @@ mana={2}
[/card]
[card]
text=Destroy all lands.
auto=destroy all(land)
id=1328
name=Armageddon
rarity=R
@@ -737,6 +738,7 @@ subtype=Aura
[card]
text=Destroy all Plains.
id=1293
auto=destroy all(plains)
name=Flashfires
rarity=U
type=Sorcery
@@ -1885,6 +1887,7 @@ mana={1}{R}
[/card]
[card]
text=Destroy all artifacts. They can't be regenerated.
auto=bury all(artifact)
id=1317
name=Shatterstorm
rarity=U
@@ -2089,6 +2092,7 @@ toughness=1
[card]
text=Destroy all enchantments.
id=1270
auto=destroy all(enchantment)
name=Tranquility
rarity=C
type=Sorcery
@@ -2107,6 +2111,7 @@ subtype=Island Forest
[card]
text=Destroy all Islands.
id=1271
auto=destroy all(island)
name=Tsunami
rarity=U
type=Sorcery
@@ -2434,6 +2439,7 @@ mana={1}
[/card]
[card]
text=Destroy all creatures. They can't be regenerated.
auto=bury all(creature)
id=1372
name=Wrath of God
rarity=R
+3 -1
View File
@@ -11,6 +11,7 @@ generic/wither.txt
########################
#Specific Cards
########################
anarchy.txt
animate_dead.txt
animate_dead2.txt
ascendant_evincar.txt
@@ -45,4 +46,5 @@ shock.txt
stasis.txt
terror.txt
volcanic_island.txt
white_knight1.txt
white_knight1.txt
wrath_of_god.txt
+21
View File
@@ -0,0 +1,21 @@
#Does anarchy destroy all white permanents ?
[INIT]
FIRSTMAIN
[PLAYER1]
hand:2606
manapool:{2}{R}{R}
inplay:2672,2718
[PLAYER2]
inplay:2697,2732, 1393, 2771
[DO]
2606
[ASSERT]
FIRSTMAIN
[PLAYER1]
graveyard:2606,2672
inplay:2718
manapool:{0}
[PLAYER2]
graveyard:2732,2697
inplay:1393,2771
[END]
@@ -0,0 +1,21 @@
#Does Wrath of god destroy all creatures ?
[INIT]
FIRSTMAIN
[PLAYER1]
hand:1372
manapool:{2}{W}{W}
inplay:1188,1145,1250,1236,1092,1385
[PLAYER2]
inplay:1323,1268,1151,1393
[DO]
1372
[ASSERT]
FIRSTMAIN
[PLAYER1]
graveyard:1188,1145,1250,1236,1372
inplay:1092,1385
manapool:{0}
[PLAYER2]
graveyard:1323,1268
inplay:1393,1151
[END]