mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Converted Lorescale Coatl to Trigger.
- Added Apocalypse and Jace's Erasure.
This commit is contained in:
2
.gitattributes
vendored
2
.gitattributes
vendored
@@ -223,6 +223,7 @@ 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.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
|
||||
@@ -2741,6 +2742,7 @@ res/cardsfolder/izzet_signet.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jabaris_banner.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jace_beleren.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jace_the_mind_sculptor.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jaces_erasure.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jaces_ingenuity.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jackal_pup.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/jackalope_herd.txt -text svneol=native#text/plain
|
||||
|
||||
10
res/cardsfolder/apocalypse.txt
Normal file
10
res/cardsfolder/apocalypse.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
Name:Apocalypse
|
||||
ManaCost:2 R R R
|
||||
Types:Sorcery
|
||||
Text:no text
|
||||
A:SP$ChangeZoneAll | Cost$ 2 R R R | ChangeType$ Permanent | Origin$ Battlefield | Destination$ Exile | SubAbility$SVar=DBDiscard | SpellDescription$ Exile all permanents. You discard your hand.
|
||||
SVar:DBDiscard:DB$Discard | Mode$ Hand
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/apocalypse.jpg
|
||||
End
|
||||
9
res/cardsfolder/jaces_erasure.txt
Normal file
9
res/cardsfolder/jaces_erasure.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
Name:Jace's Erasure
|
||||
ManaCost:1 U
|
||||
Types:Enchantment
|
||||
Text:no text
|
||||
T:Mode$ Drawn | ValidCard$ Card.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigMill | TriggerDescription$ Whenever you draw a card, you may have target player put the top card of his or her library into his or her graveyard.
|
||||
SVar:TrigMill:AB$Mill | Cost$ 0 | NumCards$ 1 | ValidTgts$ Player | TgtPrompt$ Choose a player to mill
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/jaces_erasure.jpg
|
||||
End
|
||||
@@ -1,8 +1,10 @@
|
||||
Name:Lorescale Coatl
|
||||
ManaCost:1 G U
|
||||
Types:Creature Snake
|
||||
Text:Whenever you draw a card, you may put a +1/+1 counter on Lorescale Coatl.
|
||||
Text:no text
|
||||
PT:2/2
|
||||
T:Mode$ Drawn | ValidCard$ Card.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigPutCounter | TriggerDescription$ Whenever you draw a card, you may put a +1/+1 counter on Lorescale Coatl.
|
||||
SVar:TrigPutCounter:AB$PutCounter | Cost$ 0 | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/lorescale_coatl.jpg
|
||||
SetInfo:ARB|Uncommon|http://magiccards.info/scans/en/arb/101.jpg
|
||||
|
||||
@@ -2939,7 +2939,7 @@ public class GameActionUtil {
|
||||
DrawCard_Whenever_Parameters[0] = player;
|
||||
AllZone.GameAction.checkWheneverKeyword(AllZone.CardFactory.HumanNullCard,"DrawCard",DrawCard_Whenever_Parameters);
|
||||
drawCardTriggered_Hoofprints_of_the_Stag(player);
|
||||
drawCardTriggered_Lorescale_Coatl(player);
|
||||
//drawCardTriggered_Lorescale_Coatl(player);
|
||||
//drawCardTriggered_Underworld_Dreams(player);
|
||||
drawCardTriggered_Spiteful_Visions(player);
|
||||
}
|
||||
@@ -2989,6 +2989,7 @@ public class GameActionUtil {
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
public static void drawCardTriggered_Lorescale_Coatl(Player player) {
|
||||
PlayerZone playZone = AllZone.getZone(Constant.Zone.Battlefield, player);
|
||||
CardList list = new CardList(playZone.getCards());
|
||||
@@ -2999,7 +3000,7 @@ public class GameActionUtil {
|
||||
Card c = list.get(i);
|
||||
c.addCounter(Counters.P1P1, 1);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
public static void drawCardTriggered_Hoofprints_of_the_Stag(Player player) {
|
||||
PlayerZone playZone = AllZone.getZone(Constant.Zone.Battlefield, player);
|
||||
|
||||
Reference in New Issue
Block a user