- Added Cremate and Fade from Memory.

This commit is contained in:
jendave
2011-08-06 10:56:21 +00:00
parent 136056e86b
commit 20951539a3
4 changed files with 21 additions and 1 deletions

2
.gitattributes vendored
View File

@@ -930,6 +930,7 @@ res/cardsfolder/crazed_skirge.txt -text svneol=native#text/plain
res/cardsfolder/creakwood_liege.txt -text svneol=native#text/plain
res/cardsfolder/creeping_mold.txt -text svneol=native#text/plain
res/cardsfolder/creeping_tar_pit.txt -text svneol=native#text/plain
res/cardsfolder/cremate.txt -text svneol=native#text/plain
res/cardsfolder/crenellated_wall.txt -text svneol=native#text/plain
res/cardsfolder/crevasse.txt -text svneol=native#text/plain
res/cardsfolder/crib_swap.txt -text svneol=native#text/plain
@@ -1487,6 +1488,7 @@ res/cardsfolder/fabricate.txt -text svneol=native#text/plain
res/cardsfolder/faceless_butcher.txt -text svneol=native#text/plain
res/cardsfolder/facevaulter.txt -text svneol=native#text/plain
res/cardsfolder/fact_or_fiction.txt -text svneol=native#text/plain
res/cardsfolder/fade_from_memory.txt -text svneol=native#text/plain
res/cardsfolder/faerie_conclave.txt -text svneol=native#text/plain
res/cardsfolder/faerie_harbinger.txt -text svneol=native#text/plain
res/cardsfolder/faerie_swarm.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,9 @@
Name:Cremate
ManaCost:B
Types:Instant
Text:no text
A:SP$Retrieve | Cost$ B | Destination$ Exile | TgtPrompt$ Choose target card in a graveyard | ValidTgts$ Card | SpellDescription$ Exile target card from a graveyard.
K:Draw a card.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/cremate.jpg
End

View File

@@ -0,0 +1,9 @@
Name:Fade from Memory
ManaCost:B
Types:Instant
Text:no text
A:SP$Retrieve | Cost$ B | Destination$ Exile | TgtPrompt$ Choose target card in a graveyard | ValidTgts$ Card | SpellDescription$ Exile target card from a graveyard.
K:Cycling:B
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/fade_from_memory.jpg
End

View File

@@ -622,7 +622,7 @@ public class AbilityFactory_Fetch {
tgtC.setController(sa.getActivatingPlayer());
}
else if (destination.equals("Exile")){
AllZone.getZone(Constant.Zone.Removed_From_Play, player).add(tgtC);
AllZone.getZone(Constant.Zone.Removed_From_Play, tgtC.getOwner()).add(tgtC);
}
}
String DrawBack = af.getMapParams().get("SubAbility");