- Added remove/add counters as a cost, patch by Salmelo, thanks man!. See primitives/mtg.txt -> Thallid to see how it works
- added test for i286 by salmelo
- added basic display for counters (this needs improvement) by salmelo
This commit is contained in:
wagic.the.homebrew@gmail.com
2010-03-22 04:26:42 +00:00
parent 99db31fe9d
commit 22a35d2265
15 changed files with 334 additions and 20 deletions
+5
View File
@@ -798,6 +798,11 @@ id=1924
rarity=C
[/card]
[card]
primitive=Saproling
id=-1924
rarity=T
[/card]
[card]
primitive=Thallid Devourer
id=1928
rarity=U
+1 -9
View File
@@ -40161,15 +40161,7 @@ auto={T}: Add {U}
text={T}: Add {1} to your mana pool. -- {T}: Add {W} or {U} to your mana pool. Thalakos Lowlands doesn't untap during your next untap step.
type=Land
[/card]
[card]
name=Thallid
text=At the beginning of your upkeep, put a spore counter on Thallid. -- Remove three spore counters from Thallid: Put a 1/1 green Saproling creature token onto the battlefield.
mana={G}
type=Creature
subtype=Fungus
power=1
toughness=1
[/card]
[card]
name=Thallid Devourer
text=At the beginning of your upkeep, put a spore counter on Thallid Devourer. -- Remove three spore counters from Thallid Devourer: Put a 1/1 green Saproling creature token onto the battlefield. -- Sacrifice a Saproling: Thallid Devourer gets +1/+2 until end of turn.
@@ -31887,6 +31887,14 @@ power=5
toughness=5
[/card]
[card]
name=Saproling
type=Creature
subtype=Saproling
power=1
toughness=1
color=green
[/card]
[card]
name=Sapseep Forest
auto=tap
auto={T}:Add {G}
@@ -38996,6 +39004,17 @@ power=1
toughness=2
[/card]
[card]
name=Thallid
text=At the beginning of your upkeep, put a spore counter on Thallid. -- Remove three spore counters from Thallid: Put a 1/1 green Saproling creature token onto the battlefield.
mana={G}
type=Creature
subtype=Fungus
auto=@each my upkeep:counter(0/0,1,Spore)
auto={C(0/0,-3,Spore)}:Token(-1924)
power=1
toughness=1
[/card]
[card]
name=Thaumatog
auto={S(land|myBattlefield)}:1/1
auto={S(enchantment|myBattlefield)}:1/1
+1
View File
@@ -397,6 +397,7 @@ terror.txt
terror2.txt
threaten.txt
throne_of_bone.txt
thallid.txt
titanic_ultimatum.txt
torture.txt
tranquil_domain.txt
@@ -0,0 +1,41 @@
#Checking savage hunger Cycle only bug
[INIT]
FIRSTMAIN
[PLAYER1]
inplay:Craw Wurm
[PLAYER2]
hand:Fog
inplay:Forest,Spore Frog
[DO]
next
#startcombat
next
#declare attackers
Craw Wurm
next
#declare blockers
Spore Frog
choice 1
eot
eot
next
next
next
#First Main
next
next
Craw Wurm
next
next
next
next
[ASSERT]
SECONDMAIN
[PLAYER1]
inplay:Craw Wurm
[PLAYER2]
hand:Fog
inplay:Forest
graveyard:Spore Frog
life:14
[END]
+23
View File
@@ -0,0 +1,23 @@
[INIT]
UNTAP
[PLAYER1]
inplay:Thallid
[PLAYER2]
[DO]
eot
eot
eot
eot
eot
eot
next
next
next
thallid
thallid
[ASSERT]
FIRSTMAIN
[PLAYER1]
inplay:Thallid,Saproling
[PLAYER2]
[END]