- Expanded and changed digUntilStackDescription.

- Added Sacred Guide.
This commit is contained in:
Sloth
2011-09-01 12:27:22 +00:00
parent 4ea9d2b4c7
commit 7ed642bf20
4 changed files with 18 additions and 8 deletions

1
.gitattributes vendored
View File

@@ -6360,6 +6360,7 @@ res/cardsfolder/s/sabretooth_tiger.txt svneol=native#text/plain
res/cardsfolder/s/sacellum_archers.txt svneol=native#text/plain
res/cardsfolder/s/sachi_daughter_of_seshiro.txt svneol=native#text/plain
res/cardsfolder/s/sacred_foundry.txt svneol=native#text/plain
res/cardsfolder/s/sacred_guide.txt -text
res/cardsfolder/s/sacred_knight.txt svneol=native#text/plain
res/cardsfolder/s/sacred_nectar.txt svneol=native#text/plain
res/cardsfolder/s/sacred_prey.txt svneol=native#text/plain

View File

@@ -3,7 +3,7 @@ ManaCost:1 G
Types:Creature Human Druid
Text:no text
PT:1/1
A:AB$ DigUntil | Cost$ G T | Valid$ Land.Basic | ValidDescription$ Basic Land | FoundDestination$ Hand | RevealedDestination$ Graveyard | SpellDescription$ Reveal cards from the top of your library until you reveal a basic land card. Put that card into your hand and all other cards revealed this way into your graveyard.
A:AB$ DigUntil | Cost$ G T | Valid$ Land.Basic | ValidDescription$ basic land | FoundDestination$ Hand | RevealedDestination$ Graveyard | SpellDescription$ Reveal cards from the top of your library until you reveal a basic land card. Put that card into your hand and all other cards revealed this way into your graveyard.
SVar:RemRandomDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/hermit_druid.jpg

View File

@@ -0,0 +1,11 @@
Name:Sacred Guide
ManaCost:W
Types:Creature Human Cleric
Text:no text
PT:1/1
A:AB$ DigUntil | Cost$ 1 W Sac<1/CARDNAME> | Valid$ Card.White | ValidDescription$ white | FoundDestination$ Hand | RevealedDestination$ Exile | SpellDescription$ Reveal cards from the top of your library until you reveal a white card. Put that card into your hand and exile all other cards revealed this way.
SVar:RemRandomDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/sacred_guide.jpg
SetInfo:TMP|Rare|http://magiccards.info/scans/en/tp/250.jpg
End

View File

@@ -646,7 +646,7 @@ public final class AbilityFactory_Reveal {
}
sb.append("reveals cards from his or her library until revealing ");
sb.append(untilAmount).append(" ").append(desc);
sb.append(untilAmount).append(" ").append(desc).append(" card");
if (untilAmount != 1) {
sb.append("s");
}
@@ -662,16 +662,14 @@ public final class AbilityFactory_Reveal {
if (found.equals(Constant.Zone.Hand)) {
sb.append("into his or her hand ");
}
sb.append("and all other cards ");
}
else {
sb.append("the revealed cards ");
}
String revealed = params.get("RevealedDestination");
if (revealed.equals(Constant.Zone.Graveyard)) {
sb.append("into his or her graveyard.");
sb.append("and all other cards into his or her graveyard.");
}
if (revealed.equals(Constant.Zone.Exile)) {
sb.append("and exile all other cards revealed this way.");
}
Ability_Sub abSub = sa.getSubAbility();