mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Converted Demystify; Disenchant; Naturalize & Shatter from code to keyword.
- Added eight LQ pic urls for the newest cards.
This commit is contained in:
@@ -18,6 +18,14 @@ forest.jpg http://resources.wizards.com/magic/cards/unh/en-us/card73946.jpg
|
||||
forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748
|
||||
forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587
|
||||
forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586
|
||||
stasis.jpg http://www.wizards.com/global/images/magic/general/stasis.jpg
|
||||
cosmic_horror.jpg http://www.wizards.com/global/images/magic/general/cosmic_horror.jpg
|
||||
force_of_nature.jpg http://www.wizards.com/global/images/magic/general/force_of_nature.jpg
|
||||
krosan_cloudscraper.jpg http://www.wizards.com/global/images/magic/general/krosan_cloudscraper.jpg
|
||||
kami_of_the_tended_garden.jpg http://www.wizards.com/global/images/magic/general/kami_of_the_tended_garden.jpg
|
||||
junun_efreet.jpg http://www.wizards.com/global/images/magic/general/junun_efreet.jpg
|
||||
hungry_mist.jpg http://www.wizards.com/global/images/magic/general/hungry_mist.jpg
|
||||
child_of_gaea.jpg http://www.wizards.com/global/images/magic/general/child_of_gaea.jpg
|
||||
burning_fields.jpg http://www.wizards.com/global/images/magic/general/burning_fields.jpg
|
||||
searing_flesh.jpg http://www.wizards.com/global/images/magic/general/searing_flesh.jpg
|
||||
eternal_flame.jpg http://www.wizards.com/global/images/magic/general/eternal_flame.jpg
|
||||
|
||||
@@ -8540,6 +8540,7 @@ Shatter
|
||||
1 R
|
||||
Instant
|
||||
Destroy target Artifact.
|
||||
spDestroyTgt:Artifact
|
||||
|
||||
Loxodon Hierarch
|
||||
2 G W
|
||||
@@ -10890,16 +10891,19 @@ Naturalize
|
||||
1 G
|
||||
Instant
|
||||
Destroy target artifact or enchantment.
|
||||
spDestroyTgt:Artifact,Enchantment
|
||||
|
||||
Disenchant
|
||||
1 W
|
||||
Instant
|
||||
Destroy target artifact or enchantment.
|
||||
spDestroyTgt:Artifact,Enchantment
|
||||
|
||||
Demystify
|
||||
W
|
||||
Instant
|
||||
Destroy target enchantment.
|
||||
spDestroyTgt:Enchantment
|
||||
|
||||
Azimaet Drake
|
||||
2 U
|
||||
|
||||
@@ -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: 243
|
||||
program/version=Forge -- official beta: 09/12/14, SVN revision: 245
|
||||
|
||||
tokens--file=AllTokens.txt
|
||||
|
||||
|
||||
@@ -15653,6 +15653,8 @@ public class CardFactory implements NewConstants {
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Shatter"))
|
||||
{
|
||||
@@ -15705,7 +15707,9 @@ public class CardFactory implements NewConstants {
|
||||
spell.setBeforePayMana(runtime);
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
*/
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Disenchant") || cardName.equals("Naturalize"))
|
||||
{
|
||||
@@ -15800,7 +15804,9 @@ public class CardFactory implements NewConstants {
|
||||
spell.setBeforePayMana(runtime);
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
*/
|
||||
|
||||
/*
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Demystify"))
|
||||
{
|
||||
@@ -15848,6 +15854,7 @@ public class CardFactory implements NewConstants {
|
||||
spell.setBeforePayMana(runtime);
|
||||
card.addSpellAbility(spell);
|
||||
}//*************** END ************ END **************************
|
||||
*/
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
|
||||
Reference in New Issue
Block a user