mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Added Aphetto Runecaster.
- Converted to Trigger: Argothian Enchantress, Aven Fisher and Riptide Crab.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
10
res/cardsfolder/aphetto_runecaster.txt
Normal file
10
res/cardsfolder/aphetto_runecaster.txt
Normal 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
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user