1) Changed the keyword:

"Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play."

to this new updated form:

"Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield."

2) I updated these cards.txt card entries and moved them to the top of file:


Elvish Farmer
Mycologist
Pallid Mycoderm
Psychotrope Thallid
Sporesower Thallid
Thallid
Thallid Shell-Dweller
This commit is contained in:
jendave
2011-08-06 04:44:32 +00:00
parent 8ec96b8de1
commit f4e06df9c6
2 changed files with 54 additions and 53 deletions

View File

@@ -1,3 +1,53 @@
Elvish Farmer
1 G
Creature Elf
At the beginning of your upkeep, put a spore counter on Elvish Farmer.
0/2
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Mycologist
1 W
Creature Human Druid
At the beginning of your upkeep, put a spore counter on Mycologist.
0/2
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Pallid Mycoderm
3 W
Creature Fungus
At the beginning of your upkeep, put a spore counter on Pallid Mycoderm.
2/4
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Psychotrope Thallid
2 G
Creature Fungus
At the beginning of your upkeep, put a spore counter on Psychotrope Thallid.
1/1
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Sporesower Thallid
2 G G
Creature Fungus
At the beginning of your upkeep, put a spore counter on each Fungus you control.
4/4
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Thallid
G
Creature Fungus
At the beginning of your upkeep, put a spore counter on Thallid.
1/1
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Thallid Shell-Dweller
1 G
Creature Fungus
At the beginning of your upkeep, put a spore counter on Thallid Shell-Dweller.
0/5
Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.
Defender
Bartel Runeaxe Bartel Runeaxe
3 G R B 3 G R B
Legendary Creature Giant Warrior Legendary Creature Giant Warrior
@@ -15218,13 +15268,6 @@ Land
no text no text
tap: add 1 tap: add 1
Sporesower Thallid
2 G G
Creature Fungus
At the beginning of your upkeep, put a spore counter on each Fungus you control.
4/4
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Wall of Mulch Wall of Mulch
1 G 1 G
Creature Wall Creature Wall
@@ -15404,54 +15447,11 @@ no text
tap: add 1 tap: add 1
abDrawCards 2 T:1:Drawback$OppDraw/1:Each player draws a card.:Mikokoro, Center of the Sea - each player draws a card abDrawCards 2 T:1:Drawback$OppDraw/1:Each player draws a card.:Mikokoro, Center of the Sea - each player draws a card
Thallid Shell-Dweller
1 G
Creature Fungus
At the beginning of your upkeep, put a spore counter on Thallid Shell-Dweller.
0/5
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Defender
Thallid
G
Creature Fungus
At the beginning of your upkeep, put a spore counter on Thallid.
1/1
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Psychotrope Thallid
2 G
Creature Fungus
At the beginning of your upkeep, put a spore counter on Psychotrope Thallid.
1/1
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Pallid Mycoderm
3 W
Creature Fungus
At the beginning of your upkeep, put a spore counter on Pallid Mycoderm.
2/4
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Sleight of Hand Sleight of Hand
U U
Sorcery Sorcery
Look at the top two cards of your library. Put one of them into your hand and the other on the bottom of your library. Look at the top two cards of your library. Put one of them into your hand and the other on the bottom of your library.
Mycologist
1 W
Creature Human Druid
At the beginning of your upkeep, put a spore counter on Mycologist.
0/2
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Elvish Farmer
1 G
Creature Elf
At the beginning of your upkeep, put a spore counter on Elvish Farmer.
0/2
Remove three spore counters from this card: Put a 1/1 green Saproling creature token into play.
Vedalken Archmage Vedalken Archmage
2 U U 2 U U
Creature Vedalken Wizard Creature Vedalken Wizard

View File

@@ -875,10 +875,11 @@ public class CardFactoryUtil {
"Creature", "Saproling"}, 1, 1, new String[] {""}); "Creature", "Saproling"}, 1, 1, new String[] {""});
} }
}; };
ability.setDescription("Remove three spore counters from " + sourceCard.getName() ability.setDescription("Remove three spore counters from CARDNAME: Put a 1/1 green Saproling creature token onto the battlefield.");
+ ": Put a 1/1 green Saproling creature token into play."); // ability.setDescription("Remove three spore counters from " + sourceCard.getName()
// + ": Put a 1/1 green Saproling creature token onto the battlefield.");
ability.setStackDescription(sourceCard.getName() ability.setStackDescription(sourceCard.getName()
+ " - put a 1/1 green Saproling creature token into play."); + " - put a 1/1 green Saproling creature token onto the battlefield.");
return ability; return ability;
}//ability_Spore_Saproling() }//ability_Spore_Saproling()