- 2 new ability keywords: mustattack and cantattack
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-04-05 09:46:02 +00:00
parent 34c139a15d
commit a6c1776a90
12 changed files with 121 additions and 23 deletions
+13
View File
@@ -213,6 +213,19 @@ type=Sorcery
mana={X}{R}
[/card]
[card]
text=Bloodrock Cyclops attacks each turn if able.
abilities=mustattack
id=130384
name=Bloodrock Cyclops
rarity=C
color=Red
type=Creature
mana={2}{R}
power=3
subtype=Cyclops
toughness=3
[/card]
[card]
text=Swampwalk (This creature is unblockable as long as defending player controls a Swamp.)
abilities=swampwalk
id=129491
+1 -12
View File
@@ -195,18 +195,7 @@ power=6
subtype=Giant
toughness=6
[/card]
[card]
text=Bloodrock Cyclops attacks each turn if able.
id=130384
name=Bloodrock Cyclops
rarity=C
color=Red
type=Creature
mana={2}{R}
power=3
subtype=Cyclops
toughness=3
[/card]
[card]
text=When Bogardan Firefiend is put into a graveyard from play, it deals 2 damage to target creature.
id=130534
+13
View File
@@ -796,6 +796,19 @@ subtype=Bird Skeleton
toughness=2
[/card]
[card]
text=Steelclad Serpent can't attack unless you control another artifact.
abilities=cantattack
auto=aslongas(artifact|myinplay) other -cantattack
id=175009
name=Steelclad Serpent
rarity=C
type=Artifact Creature
mana={5}{U}
power=4
subtype=Serpent
toughness=5
[/card]
[card]
text=Vigilance {T}: Add {G} to your mana pool.
abilities=vigilance
auto={T}:Add{G}
+3
View File
@@ -1,6 +1,7 @@
########################
#Generic engine features
########################
generic/attacks_each_turn.txt
generic/first_strike.txt
generic/first_strike2.txt
generic/first_strike3.txt
@@ -92,6 +93,8 @@ shock.txt
spark_elemental.txt
spirit_link.txt
stasis.txt
steelclad_serpent1.txt
steelclad_serpent2.txt
sword_to_plowshares.txt
terror.txt
tranquil_domain.txt
@@ -0,0 +1,24 @@
#Bloodrock Cyclops attacks each turn if able.
[INIT]
FIRSTMAIN
[PLAYER1]
inplay:bloodrock cyclops
[PLAYER2]
[DO]
next
#combat begin
next
#attackers
next
#blockers
next
#damage
next
#combat end
[ASSERT]
COMBATEND
[PLAYER1]
inplay:bloodrock cyclops
[PLAYER2]
life:17
[END]
@@ -0,0 +1,17 @@
#Steelclad serpent can't attack unless you control another artifact
[INIT]
COMBATATTACKERS
[PLAYER1]
inplay:Steelclad Serpent
[PLAYER2]
[DO]
Steelclad Serpent
next
next
next
[ASSERT]
COMBATEND
[PLAYER1]
inplay:Steelclad Serpent
[PLAYER2]
[END]
@@ -0,0 +1,18 @@
#Steelclad serpent can't attack unless you control another artifact
[INIT]
COMBATATTACKERS
[PLAYER1]
inplay:Steelclad Serpent,black vise
[PLAYER2]
[DO]
Steelclad Serpent
next
next
next
[ASSERT]
COMBATEND
[PLAYER1]
inplay:Steelclad Serpent,black vise
[PLAYER2]
life:16
[END]