diff --git a/res/cards.txt b/res/cards.txt index f523fd8eb6c..cd8b93f1678 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -7829,6 +7829,7 @@ Terminate B R Instant Destroy target creature. It can't be regenerated. +spDestroyTgt:Creature:NoRegen Unmake WB WB WB @@ -13800,7 +13801,8 @@ no text Dark Banishing 2 B Instant -Destroy target nonblack creature. It can't be regenerated. +Destroy target nonblack creature. It can't be regenerated. +spDestroyTgt:Creature.nonBlack:NoRegen Dross Prowler 2 B @@ -14195,6 +14197,7 @@ Saltblast 3 W W Sorcery Destroy target nonwhite permanent. +spDestroyTgt:Permanent.nonWhite Sunlance W @@ -16538,6 +16541,7 @@ Vindicate 1 W B Sorcery Destroy target permanent. +spDestroyTgt:Permanent Ardent Militia 4 W diff --git a/res/main.properties b/res/main.properties index f2c1b175d3b..b4307c5a3f9 100644 --- a/res/main.properties +++ b/res/main.properties @@ -1,6 +1,6 @@ program/mail=mtgerror@yahoo.com program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 -program/version=Forge -- official beta: 09/12/14, SVN revision: 247 +program/version=Forge -- official beta: 09/12/14, SVN revision: 248 tokens--file=AllTokens.txt diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index fef8318eacf..30a1603b3e5 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -3478,7 +3478,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** - +/* //contributed code //*************** START *********** START ************************** if(cardName.equals("Dark Banishing")) @@ -3561,6 +3561,7 @@ public class CardFactory implements NewConstants { spell.setBeforePayMana(target); }//*************** END ************ END ************************** +*/ //*************** START *********** START ************************** @@ -4280,6 +4281,8 @@ public class CardFactory implements NewConstants { card.addSpellAbility(spell); }//*************** END ************ END ************************** + +/* //*************** START *********** START ************************** else if(cardName.equals("Terminate")) { @@ -4318,7 +4321,7 @@ public class CardFactory implements NewConstants { spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell)); card.addSpellAbility(spell); }//*************** END ************ END ************************** - +*/ /* //*************** START *********** START ************************** @@ -8031,6 +8034,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** +/* //*************** START *********** START ************************** else if(cardName.equals("Saltblast")) { @@ -8103,6 +8107,7 @@ public class CardFactory implements NewConstants { spell.setBeforePayMana(target); }//*************** END ************ END ************************** +*/ //*************** START *********** START ************************** @@ -14751,6 +14756,8 @@ public class CardFactory implements NewConstants { card.addSpellAbility(spell); }//*************** END ************ END ************************** + +/* //*************** START *********** START ************************** else if(cardName.equals("Vindicate")) { @@ -14806,6 +14813,7 @@ public class CardFactory implements NewConstants { card.clearSpellAbility(); card.addSpellAbility(spell); }//*************** END ************ END ************************** +*/ //*************** START *********** START **************************