Converted three more spells from code to keyword: Tendrils of Corruption; Corrupt; Psionic Blast.

This commit is contained in:
jendave
2011-08-06 03:03:05 +00:00
parent e98ac0cbeb
commit 6a10b2b194
3 changed files with 15 additions and 6 deletions

View File

@@ -8658,7 +8658,8 @@ When Hatching Plans is put into a graveyard from play, draw three cards.
Corrupt Corrupt
5 B 5 B
Sorcery Sorcery
Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way. no text
spDamageTgtCP:Count$TypeYouCtrl.Swamp:Drawback$YouGainLife/X:Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.:Corrupt deals damage and you gain life.
Sunweb Sunweb
3 W 3 W
@@ -13206,7 +13207,8 @@ tap: add 1
Tendrils of Corruption Tendrils of Corruption
3 B 3 B
Instant Instant
Tendrils of Corruption deals X damage to target creature and you gain X life, where X is the number of Swamps you control. no text
spDamageTgtC:Count$TypeYouCtrl.Swamp:Drawback$YouGainLife/X:Tendrils of Corruption deals X damage to target creature and you gain X life, where X is the number of Swamps you control.:Tendrils of Corruption - deals damage and you gain life.
Ichor Slick Ichor Slick
2 B 2 B
@@ -13593,7 +13595,8 @@ Creature Yeti
Psionic Blast Psionic Blast
2 U 2 U
Instant Instant
Psionic Blast deals 4 damage to target creature or player and 2 damage to you. no text
spDamageTgtCP:4:Drawback$DamageYou/2:Psionic Blast deals 4 damage to target creature or player and 2 damage to you.:Psionic Blast - deals 4 damage and 2 damage to you.
Allied Strategies Allied Strategies
4 U 4 U

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/11/25, SVN revision: 202 program/version=Forge -- official beta: 09/11/25, SVN revision: 203
tokens--file=AllTokens.txt tokens--file=AllTokens.txt

View File

@@ -8299,7 +8299,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/ */
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Psionic Blast")) else if(cardName.equals("Psionic Blast"))
{ {
@@ -8408,6 +8408,7 @@ public class CardFactory implements NewConstants {
}; };
spell.setBeforePayMana(target); spell.setBeforePayMana(target);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
@@ -10967,6 +10968,8 @@ public class CardFactory implements NewConstants {
card.setFlashback(true); card.setFlashback(true);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Tendrils of Corruption")) else if(cardName.equals("Tendrils of Corruption"))
{ {
@@ -11012,7 +11015,7 @@ public class CardFactory implements NewConstants {
card.clearSpellAbility(); card.clearSpellAbility();
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
@@ -16601,6 +16604,8 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
spell.setBeforePayMana(CardFactoryUtil.input_targetPlayer(spell)); spell.setBeforePayMana(CardFactoryUtil.input_targetPlayer(spell));
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
if(cardName.equals("Corrupt")) if(cardName.equals("Corrupt"))
{ {
@@ -16676,6 +16681,7 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
spell.setBeforePayMana(CardFactoryUtil.input_targetCreaturePlayer(spell,true)); spell.setBeforePayMana(CardFactoryUtil.input_targetCreaturePlayer(spell,true));
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************