diff --git a/res/cards.txt b/res/cards.txt index 723d6a9df16..08571b1f83f 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -4745,6 +4745,7 @@ Sacred Nectar 1 W Sorcery no text +spGainLife:4 Maniacal Rage 1 R @@ -12590,7 +12591,9 @@ Put X 1/1 white Pegasus creature tokens with flying into play, where X is your l Festival of Trokin W Sorcery -For each creature you have in play, you gain 2 life. +no text +spGainLife:X:You gain 2 life for each creature you control.:Festival of Trokin - player gains X life +SVar:X:Count$TypeYouCtrl.Creature/Times.2 Savannah no cost @@ -16786,7 +16789,9 @@ Search your library for two basic land cards, reveal those cards, and put one in Wandering Stream 2 G Sorcery -You gain 2 life for each basic land type among lands you control. +no text +spGainLife:X:Domain - You gain 2 life for each basic land type among lands you control.:Wandering Stream - player gains X life +SVar:X:Count$Domain/Times.2 Aggressive Urge 1 G @@ -17074,7 +17079,8 @@ Tap all nonwhite creatures. Reviving Dose 2 W Instant -You gain 3 life. +no text +spGainLife:3 Draw a card. Angelic Blessing diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index cb53531c89c..217eb4da2ba 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -5067,6 +5067,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** +/* //*************** START *********** START ************************** else if(cardName.equals("Sacred Nectar")) { SpellAbility spell = new Spell(card) { @@ -5091,6 +5092,7 @@ public class CardFactory implements NewConstants { card.addSpellAbility(spell); }//*************** END ************ END ************************** +*/ //*************** START *********** START ************************** @@ -5138,6 +5140,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** +/* //*************** START *********** START ************************** else if(cardName.equals("Reviving Dose")) { SpellAbility spell = new Spell(card) { @@ -5155,7 +5158,9 @@ public class CardFactory implements NewConstants { card.clearSpellAbility(); card.addSpellAbility(spell); }//*************** END ************ END ************************** - +*/ + + //*************** START *********** START ************************** else if(cardName.equals("Swords to Plowshares")) { SpellAbility spell = new Spell(card) { @@ -9092,6 +9097,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** +/* //*************** START *********** START ************************** else if(cardName.equals("Wandering Stream")) { SpellAbility spell = new Spell(card) { @@ -9121,7 +9127,9 @@ public class CardFactory implements NewConstants { card.clearSpellAbility(); card.addSpellAbility(spell); }//*************** END ************ END ************************** - + */ + + //*************** START *********** START ************************** else if(cardName.equals("Worldly Tutor") || cardName.equals("Sylvan Tutor")) { SpellAbility spell = new Spell(card) { @@ -10349,6 +10357,8 @@ public class CardFactory implements NewConstants { card.addSpellAbility(spell); }//*************** END ************ END ************************** + +/* //*************** START *********** START ************************** if(cardName.equals("Festival of Trokin")) { final SpellAbility spell = new Spell(card) { @@ -10387,6 +10397,7 @@ public class CardFactory implements NewConstants { card.clearSpellAbility(); card.addSpellAbility(spell); }//*************** END ************ END ************************** +*/ //*************** START *********** START **************************