Converted these spells to keyword: Tremor, Needle Storm and Pyroclasm.

This commit is contained in:
jendave
2011-08-06 07:29:23 +00:00
parent 7e21d262a9
commit cf93cdee84
5 changed files with 12 additions and 9 deletions

View File

@@ -4,7 +4,6 @@ Types:Creature Illusion
Text:no text Text:no text
PT:1/5 PT:1/5
K:WheneverKeyword:Attack - Alone:Self:Play:KeywordPumpEOT/Unblockable:Self:ASAP:No_Condition:No Special Condition:Dream Prowler is unblockable as long as it's attacking alone. K:WheneverKeyword:Attack - Alone:Self:Play:KeywordPumpEOT/Unblockable:Self:ASAP:No_Condition:No Special Condition:Dream Prowler is unblockable as long as it's attacking alone.
K:SVar:RemAIDeck:True
K:SVar:Rarity:Uncommon K:SVar:Rarity:Uncommon
K:SVar:Picture:http://www.wizards.com/global/images/magic/general/dream_prowler.jpg K:SVar:Picture:http://www.wizards.com/global/images/magic/general/dream_prowler.jpg
End End

View File

@@ -1,7 +1,8 @@
Name:Needle Storm Name:Needle Storm
ManaCost:2 G ManaCost:2 G
Types:Sorcery Types:Sorcery
Text:Needle Storm deals 4 damage to each creature with flying. Text:no text
K:spDamageAll:Creature.withFlying:4:Needle Storm deals 4 damage to each creature with flying.
K:SVar:Rarity:Uncommon K:SVar:Rarity:Uncommon
K:SVar:Picture:http://resources.wizards.com/magic/cards/po/en-us/card4311.jpg K:SVar:Picture:http://resources.wizards.com/magic/cards/po/en-us/card4311.jpg
End End

View File

@@ -1,7 +1,8 @@
Name:Pyroclasm Name:Pyroclasm
ManaCost:1 R ManaCost:1 R
Types:Sorcery Types:Sorcery
Text:Pyroclasm deals 2 damage to each creature. Text:no text
K:spDamageAll:Creature:2:Pyroclasm deals 2 damage to each creature.
K:SVar:Rarity:Uncommon K:SVar:Rarity:Uncommon
K:SVar:Picture:http://resources.wizards.com/magic/cards/9ed/en-us/card83216.jpg K:SVar:Picture:http://resources.wizards.com/magic/cards/9ed/en-us/card83216.jpg
End End

View File

@@ -1,7 +1,8 @@
Name:Tremor Name:Tremor
ManaCost:R ManaCost:R
Types:Sorcery Types:Sorcery
Text:Tremor deals 1 damage to each creature without flying. Text:no text
K:spDamageAll:Creature.withoutFlying:1:Tremor deals 1 damage to each creature without flying.
K:SVar:Rarity:Common K:SVar:Rarity:Common
K:SVar:Picture:http://resources.wizards.com/magic/cards/p2/en-us/card6592.jpg K:SVar:Picture:http://resources.wizards.com/magic/cards/p2/en-us/card6592.jpg
End End

View File

@@ -530,7 +530,7 @@ public class CardFactory_Sorceries {
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/* converted to keyword
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Tremor")) { else if(cardName.equals("Tremor")) {
SpellAbility spell = new Spell(card) { SpellAbility spell = new Spell(card) {
@@ -574,6 +574,7 @@ public class CardFactory_Sorceries {
card.clearSpellAbility(); card.clearSpellAbility();
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Demonic Tutor") || cardName.equals("Diabolic Tutor") else if(cardName.equals("Demonic Tutor") || cardName.equals("Diabolic Tutor")
@@ -1966,7 +1967,7 @@ public class CardFactory_Sorceries {
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/* Converted to keyword
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Pyroclasm")) { else if(cardName.equals("Pyroclasm")) {
SpellAbility spell = new Spell(card) { SpellAbility spell = new Spell(card) {
@@ -2002,7 +2003,7 @@ public class CardFactory_Sorceries {
card.clearSpellAbility(); card.clearSpellAbility();
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Flamebreak")) { else if(cardName.equals("Flamebreak")) {
@@ -3210,7 +3211,7 @@ public class CardFactory_Sorceries {
/* converted to keyword
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Needle Storm")) { else if(cardName.equals("Needle Storm")) {
SpellAbility spell = new Spell(card) { SpellAbility spell = new Spell(card) {
@@ -3242,7 +3243,7 @@ public class CardFactory_Sorceries {
card.setSVar("PlayMain1", "TRUE"); card.setSVar("PlayMain1", "TRUE");
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/