- Removed second copy of text description from the cards.txt file for the following lands: Blinkmoth Nexus; Library of Alexandria; Mossfire Valley; Shadowblood Ridge; Skycloud Expanse; Tower of the Magistrate; Terramorphic Expanse; Sunhome, Fortress of the Legion

- Removed second copy of text description by commenting out a card.setText for Mikokoro, Center of the Sea.
- Moved all text from cards.txt to the CardFactory.java file for Dark Depths
This commit is contained in:
jendave
2011-08-06 02:52:53 +00:00
parent e01a177a09
commit a8bbeb7ba2
2 changed files with 11 additions and 11 deletions

View File

@@ -1956,7 +1956,7 @@ tap: add 1
Mossfire Valley Mossfire Valley
no cost no cost
Land Land
1,tap: add RG no text
1,tap: add RG 1,tap: add RG
Mystic Gate Mystic Gate
@@ -1991,7 +1991,7 @@ tap: add 1
Shadowblood Ridge Shadowblood Ridge
no cost no cost
Land Land
1,tap: add BR no text
1,tap: add BR 1,tap: add BR
Shimmering Grotto Shimmering Grotto
@@ -2008,7 +2008,7 @@ tap: add 1
Skycloud Expanse Skycloud Expanse
no cost no cost
Land Land
1,tap: add WU no text
1,tap: add WU 1,tap: add WU
Sungrass Prairie Sungrass Prairie
@@ -5152,7 +5152,7 @@ Protection from artifacts
Tower of the Magistrate Tower of the Magistrate
no cost no cost
Land Land
1, tap: Target creature gains Protection from artifacts until end of turn. no text
tap: add 1 tap: add 1
TgtKPump 1 T:Protection from artifacts TgtKPump 1 T:Protection from artifacts
@@ -7618,7 +7618,7 @@ no text
Dark Depths Dark Depths
no cost no cost
Legendary Snow Land Legendary Snow Land
Dark Depths comes into play with ten ice counters on it. 3: Remove an ice counter from Dark Depths. When Dark Depths has no ice counters on it, sacrifice it. If you do, put an indestructible legendary 20/20 black Avatar creature token with flying named Marit Lage into play. no text
Font of Mythos Font of Mythos
4 4
@@ -7741,7 +7741,7 @@ RegenerateMe:1 B
Sunhome, Fortress of the Legion Sunhome, Fortress of the Legion
no cost no cost
Land Land
2 R W, tap:Target creature gains Double Strike until end of turn. no text
tap: add 1 tap: add 1
TgtKPump 2 R W T:Double Strike TgtKPump 2 R W T:Double Strike
@@ -12080,7 +12080,7 @@ tap: add 1
Library of Alexandria Library of Alexandria
no cost no cost
Land Land
tap: Draw a card. Play this ability only if you have exactly 7 cards in your hand. no text
tap: add 1 tap: add 1
Tendrils of Corruption Tendrils of Corruption
@@ -14059,12 +14059,12 @@ Flying
Terramorphic Expanse Terramorphic Expanse
no cost no cost
Land Land
Tap, Sacrifice Terramorphic Expanse: Search your library for a basic land card and put it into play tapped. Then shuffle your library. no text
Blinkmoth Nexus Blinkmoth Nexus
no cost no cost
Land Land
1: Blinkmoth Nexus becomes a 1/1 Blinkmoth artifact creature with flying until end of turn. It's still a land. no text
tap: add 1 tap: add 1
Forest Forest

View File

@@ -856,7 +856,7 @@ class CardFactory_Lands {
}// if counters == 0 }// if counters == 0
} }
}; };
ability.setDescription("3: Remove an ice counter from Dark Depths."); ability.setDescription("Dark Depths enters the battlefield with ten ice counters on it.\r\n\r\n3: Remove an ice counter from Dark Depths.\r\n\r\nWhen Dark Depths has no ice counters on it, sacrifice it. If you do, put an indestructible legendary 20/20 black Avatar creature token with flying named Marit Lage onto the battlefield.");
ability.setStackDescription(card.getName() +" - remove an ice counter."); ability.setStackDescription(card.getName() +" - remove an ice counter.");
card.addSpellAbility(ability); card.addSpellAbility(ability);
@@ -1470,7 +1470,7 @@ class CardFactory_Lands {
//not sure what's going on here, maybe because it's a land it doesn't add the ability to the text? //not sure what's going on here, maybe because it's a land it doesn't add the ability to the text?
//anyway, this does the trick: //anyway, this does the trick:
//card.removeIntrinsicKeyword("tap: add 1"); //card.removeIntrinsicKeyword("tap: add 1");
card.setText(card.getSpellText() + "\r\n2, tap: Each player draws a card."); //card.setText(card.getSpellText() + "\r\n2, tap: Each player draws a card.");
//card.addExtrinsicKeyword("tap: add 1"); //card.addExtrinsicKeyword("tap: add 1");
}//*************** END ************ END ************************** }//*************** END ************ END **************************