- Converted Dark Banishing; Saltblast; Terminate; & Vindicate from code to keyword.

This commit is contained in:
jendave
2011-08-06 03:09:11 +00:00
parent ae380282d7
commit d83806e57b
3 changed files with 16 additions and 4 deletions

View File

@@ -7829,6 +7829,7 @@ Terminate
B R B R
Instant Instant
Destroy target creature. It can't be regenerated. Destroy target creature. It can't be regenerated.
spDestroyTgt:Creature:NoRegen
Unmake Unmake
WB WB WB WB WB WB
@@ -13800,7 +13801,8 @@ no text
Dark Banishing Dark Banishing
2 B 2 B
Instant 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 Dross Prowler
2 B 2 B
@@ -14195,6 +14197,7 @@ Saltblast
3 W W 3 W W
Sorcery Sorcery
Destroy target nonwhite permanent. Destroy target nonwhite permanent.
spDestroyTgt:Permanent.nonWhite
Sunlance Sunlance
W W
@@ -16538,6 +16541,7 @@ Vindicate
1 W B 1 W B
Sorcery Sorcery
Destroy target permanent. Destroy target permanent.
spDestroyTgt:Permanent
Ardent Militia Ardent Militia
4 W 4 W

View File

@@ -1,6 +1,6 @@
program/mail=mtgerror@yahoo.com program/mail=mtgerror@yahoo.com
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 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 tokens--file=AllTokens.txt

View File

@@ -3478,7 +3478,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//contributed code //contributed code
//*************** START *********** START ************************** //*************** START *********** START **************************
if(cardName.equals("Dark Banishing")) if(cardName.equals("Dark Banishing"))
@@ -3561,6 +3561,7 @@ public class CardFactory implements NewConstants {
spell.setBeforePayMana(target); spell.setBeforePayMana(target);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
@@ -4280,6 +4281,8 @@ public class CardFactory implements NewConstants {
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Terminate")) else if(cardName.equals("Terminate"))
{ {
@@ -4318,7 +4321,7 @@ public class CardFactory implements NewConstants {
spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell)); spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell));
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
/* /*
//*************** START *********** START ************************** //*************** START *********** START **************************
@@ -8031,6 +8034,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Saltblast")) else if(cardName.equals("Saltblast"))
{ {
@@ -8103,6 +8107,7 @@ public class CardFactory implements NewConstants {
spell.setBeforePayMana(target); spell.setBeforePayMana(target);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
@@ -14751,6 +14756,8 @@ public class CardFactory implements NewConstants {
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Vindicate")) else if(cardName.equals("Vindicate"))
{ {
@@ -14806,6 +14813,7 @@ public class CardFactory implements NewConstants {
card.clearSpellAbility(); card.clearSpellAbility();
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************