mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Converted Dragonstorm, Grapeshot and Tendrils of Agony to keyword.
- Converted Haze of Rage to SP$PumpAll.
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
Name:Dragonstorm
|
Name:Dragonstorm
|
||||||
ManaCost:8 R
|
ManaCost:8 R
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
Text:Search your library for a Dragon permanent card and put it onto the battlefield. Then shuffle your library.
|
Text:no text
|
||||||
|
A:SP$ChangeZone | Cost$ 8 R | Origin$ Library | Destination$ Battlefield | ChangeType$ Permanent.Dragon | ChangeNum$ 1 | SpellDescription$ Search your library for a Dragon permanent card and put it onto the battlefield. Then shuffle your library.
|
||||||
K:Storm
|
K:Storm
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragonstorm.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragonstorm.jpg
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
Name:Grapeshot
|
Name:Grapeshot
|
||||||
ManaCost:1 R
|
ManaCost:1 R
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
Text:Grapeshot deals 1 damage to target creature or player.
|
Text:no text
|
||||||
|
A:SP$DealDamage | Cost$ 1 R | Tgt$ TgtCP | TgtPrompt$ Select target creature or player | NumDmg$ 1 | SpellDescription$ CARDNAME deals 1 damage to target creature or player.
|
||||||
K:Storm
|
K:Storm
|
||||||
SVar:Rarity:Common
|
SVar:Rarity:Common
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/grapeshot.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/grapeshot.jpg
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ Name:Haze of Rage
|
|||||||
ManaCost:1 R
|
ManaCost:1 R
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
Text:no text
|
Text:no text
|
||||||
K:spAllPump:YouCtrl:+1/+0:Creatures you control get +1/+0 until end of turn.:Haze of Rage - Creatures get +1/+0 until EOT
|
A:SP$PumpAll | Cost$ 1 R | ValidCards$ Creature.YouCtrl | NumAtt$ +1 | SpellDescription$ Creatures you control get +1/+0 until end of turn.
|
||||||
SVar:Buyback:2
|
SVar:Buyback:2
|
||||||
K:Storm
|
K:Storm
|
||||||
SVar:Rarity:Uncommon
|
SVar:Rarity:Uncommon
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
Name:Tendrils of Agony
|
Name:Tendrils of Agony
|
||||||
ManaCost:2 B B
|
ManaCost:2 B B
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
Text:Target player loses 2 life and you gain 2 life.
|
Text:no text
|
||||||
|
A:SP$LoseLife | Cost$ 2 B B | ValidTgts$ Player | TgtPrompt$ Select target player | LifeAmount$ 2 | SubAbility$ YouGainLife/2 | SpellDescription$ Target player loses 2 life and you gain 2 life.
|
||||||
K:Storm
|
K:Storm
|
||||||
SVar:Rarity:Uncommon
|
SVar:Rarity:Uncommon
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/tendrils_of_agony.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/tendrils_of_agony.jpg
|
||||||
|
|||||||
@@ -664,7 +664,7 @@ public class CardFactory_Sorceries {
|
|||||||
spell.setBeforePayMana(target);
|
spell.setBeforePayMana(target);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Grapeshot")) {
|
else if(cardName.equals("Grapeshot")) {
|
||||||
final SpellAbility spell = new Spell(card) {
|
final SpellAbility spell = new Spell(card) {
|
||||||
@@ -688,7 +688,7 @@ public class CardFactory_Sorceries {
|
|||||||
spell.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
|
spell.setChooseTargetAI(CardFactoryUtil.AI_targetHuman());
|
||||||
spell.setBeforePayMana(CardFactoryUtil.input_targetCreaturePlayer(spell, true, false));
|
spell.setBeforePayMana(CardFactoryUtil.input_targetCreaturePlayer(spell, true, false));
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Ignite Memories")) {
|
else if(cardName.equals("Ignite Memories")) {
|
||||||
@@ -807,7 +807,7 @@ public class CardFactory_Sorceries {
|
|||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Tendrils of Agony")) {
|
else if(cardName.equals("Tendrils of Agony")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -828,7 +828,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("Roiling Terrain")) {
|
else if(cardName.equals("Roiling Terrain")) {
|
||||||
@@ -1332,7 +1332,7 @@ public class CardFactory_Sorceries {
|
|||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Dragonstorm")) {
|
else if(cardName.equals("Dragonstorm")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
@@ -1407,7 +1407,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("Feudkiller's Verdict")) {
|
else if(cardName.equals("Feudkiller's Verdict")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user