From 190f8128bba0c8d815fa7a1bafc037f41f657546 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 05:38:03 +0000 Subject: [PATCH] Converted the following cards to implemented via keyword and commented out the card object for these cards: Boomerang; Deny Reality; Eye of Nowhere; Rescind; Surging AEther. --- res/cards.txt | 61 +++++++++++++++++++++----------------- src/forge/CardFactory.java | 7 +++-- 2 files changed, 38 insertions(+), 30 deletions(-) diff --git a/res/cards.txt b/res/cards.txt index 2e0644f5025..37a769cc5b1 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,36 @@ +Boomerang +U U +Instant +Return target permanent to its owner's hand. +spBounceTgt:Permanent:Hand + +Deny Reality +3 U B +Instant +Cascade, Return target permanent to its owner's hand. +Cascade +spBounceTgt:Permanent:Hand + +Eye of Nowhere +U U +Sorcery +Return target permanent to its owner's hand. +spBounceTgt:Permanent:Hand + +Rescind +1 U U +Instant +Return target permanent to its owner's hand. +Cycling:2 +spBounceTgt:Permanent:Hand + +Surging AEther +3 U +Instant +Ripple:4, Return target permanent to its owner's hand. +Ripple:4 +spBounceTgt:Permanent:Hand + Mirror Gallery 5 Artifact @@ -1466,18 +1499,6 @@ Cultivate Sorcery Search your library for up to two basic land cards, reveal those cards, and put one onto the battlefield tapped and the other into your hand. Then shuffle your library. -Deny Reality -3 U B -Instant -Return target permanent to its owner's hand. -Cascade - -Rescind -1 U U -Instant -Return target permanent to its owner's hand. -Cycling:2 - Rotting Rats 1 B Creature Zombie Rat @@ -3204,12 +3225,6 @@ Thrumming Stone Legendary Artifact Spells you cast have ripple 4. -Surging AEther -3 U -Instant -Return target permanent to its owner's hand. -Ripple:4 - Surging Flame 1 R Instant @@ -14872,11 +14887,6 @@ Sorcery no text spDrawCards:4:Drawback$YouDiscard/3/AtRandom:Draw four cards, then discard three cards at random.:Goblin Lore - Draw 4 cards, then discard 3 at random. -Eye of Nowhere -U U -Sorcery -Return target permanent to its owner's hand. - Ravages of War 3 W Sorcery @@ -24739,11 +24749,6 @@ Flying. Whenever Zur the Enchanter attacks, you may search your library for an e 1/4 Flying -Boomerang -U U -Instant -Return target permanent to its owner's hand. - Culling Sun 2 W W B Sorcery diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 879cbf2d307..7f4f5e2c892 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -13425,7 +13425,8 @@ public class CardFactory implements NewConstants { card.addSpellAbility(spell); }//*************** END ************ END ************************** - + +/* Converted to keyword //*************** START *********** START ************************** else if(cardName.equals("Boomerang") || cardName.equals("Eye of Nowhere") || cardName.equals("Rescind") || cardName.equals("Surging AEther") || cardName.equals("Deny Reality")) { final SpellAbility spell = new Spell(card) { @@ -13491,7 +13492,9 @@ public class CardFactory implements NewConstants { card.clearSpellAbility(); card.addSpellAbility(spell); }//*************** END ************ END ************************** - +*/ + + //*************** START *********** START ************************** else if(cardName.equals("Momentous Fall")) { final SpellAbility spell = new Spell(card) {