- Added Aphetto Runecaster.

- Converted to Trigger: Argothian Enchantress, Aven Fisher and Riptide Crab.
This commit is contained in:
jendave
2011-08-06 15:36:03 +00:00
parent b79643c42a
commit efa10db2af
7 changed files with 23 additions and 7 deletions

1
.gitattributes vendored
View File

@@ -212,6 +212,7 @@ res/cardsfolder/anvil_of_bogardan.txt svneol=native#text/plain
res/cardsfolder/apex_hawks.txt -text svneol=native#text/plain
res/cardsfolder/aphetto_alchemist.txt -text svneol=native#text/plain
res/cardsfolder/aphetto_grifter.txt -text svneol=native#text/plain
res/cardsfolder/aphetto_runecaster.txt -text svneol=native#text/plain
res/cardsfolder/apocalypse_hydra.txt -text svneol=native#text/plain
res/cardsfolder/apothecary_initiate.txt -text svneol=native#text/plain
res/cardsfolder/apprentice_sorcerer.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,10 @@
Name:Aphetto Runecaster
ManaCost:3 U
Types:Creature Human Wizard
Text:no text
PT:2/3
T:Mode$ TurnFaceUp | ValidCard$ Permanent | Execute$ TrigDraw | Optional$ True | TriggerZones$ Battlefield | TriggerDescription$ Whenever a permanent is turned face up, you may draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 1
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/aphetto_runecaster.jpg
End

View File

@@ -1,9 +1,11 @@
Name:Argothian Enchantress
ManaCost:1 G
Types:Creature Human Druid
Text:Whenever you cast an enchantment spell, draw a card.
Text:no text
PT:0/1
K:Shroud
T:Mode$ SpellCast | ValidCard$ Card.Enchantment+YouCtrl | Execute$ TrigDraw | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast an enchantment spell, draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 1
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/argothian_enchantress.jpg
SetInfo:USG|Rare|http://magiccards.info/scans/en/us/234.jpg

View File

@@ -1,8 +1,10 @@
Name:Aven Fisher
ManaCost:3 U
Types:Creature Bird Soldier
Text:When Aven Fisher is put into a graveyard from play, you may draw a card.
Text:no text
PT:2/2
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | Execute$ TrigDraw | TriggerDescription$ When CARDNAME is put into a graveyard from the battlefield, you may draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 1
K:Flying
SVar:Rarity:Common
SVar:Picture:http://resources.wizards.com/magic/cards/9ed/en-us/card82998.jpg

View File

@@ -1,9 +1,11 @@
Name:Riptide Crab
ManaCost:1 W U
Types:Creature Crab
Text:When Riptide Crab is put into a graveyard from play, draw a card.
Text:no text
PT:1/3
K:Vigilance
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | Execute$ TrigDraw | TriggerDescription$ When CARDNAME is put into a graveyard from the battlefield, you may draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 1
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/riptide_crab.jpg
SetInfo:INV|Uncommon|http://magiccards.info/scans/en/in/266.jpg

View File

@@ -2433,7 +2433,7 @@ public class CardFactory_Creatures {
card.addDestroyCommand(destroy);
}//*************** END ************ END **************************
/*
//*************** START *********** START **************************
else if(cardName.equals("Aven Fisher") || cardName.equals("Riptide Crab")) {
final SpellAbility ability = new Ability(card, "0") {
@@ -2457,7 +2457,7 @@ public class CardFactory_Creatures {
};
card.addDestroyCommand(destroy);
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Peregrine Drake")) {

View File

@@ -2616,8 +2616,7 @@ public class GameActionUtil {
list = list.filter(new CardListFilter() {
public boolean addCard(Card crd) {
if (crd.getName().equals("Verduran Enchantress") || crd.getName().equals("Enchantress's Presence")
|| crd.getName().equals("Mesa Enchantress") || crd.getName().equals("Argothian Enchantress")
|| crd.getName().equals("Kor Spiritdancer")) return true;
|| crd.getName().equals("Mesa Enchantress") || crd.getName().equals("Kor Spiritdancer")) return true;
else return false;
}
});