mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Expanded and changed digUntilStackDescription.
- Added Sacred Guide.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
11
res/cardsfolder/s/sacred_guide.txt
Normal file
11
res/cardsfolder/s/sacred_guide.txt
Normal 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
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user