- Converted Evil Presence and Tainted Well to script.

This commit is contained in:
Sloth
2011-09-11 11:56:44 +00:00
parent 8440739226
commit 8ddf07823a
3 changed files with 8 additions and 13 deletions

View File

@@ -1,8 +1,10 @@
Name:Evil Presence
ManaCost:B
Types:Enchantment Aura
Text:Enchanted land is a Swamp.
Text:no text
K:Enchant land
A:SP$ Attach | Cost$ 1 B | ValidTgts$ Land | AILogic$ Curse
S:Mode$ Continuous | Affected$ Card.EnchantedBy | AddType$ Swamp | RemoveSubTypes$ True | RemoveAllAbilities$ True | Description$ Enchanted land is a Swamp.
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/evil_presence.jpg
SetInfo:LEA|Uncommon|http://magiccards.info/scans/en/al/16.jpg

View File

@@ -1,8 +1,10 @@
Name:Tainted Well
ManaCost:2 B
Types:Enchantment Aura
Text:Enchanted land is a Swamp.
Text:no text
K:Enchant land
A:SP$ Attach | Cost$ 1 B | ValidTgts$ Land | AILogic$ Curse
S:Mode$ Continuous | Affected$ Card.EnchantedBy | AddType$ Swamp | RemoveSubTypes$ True | RemoveAllAbilities$ True | Description$ Enchanted land is a Swamp.
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigDraw | TriggerDescription$ When CARDNAME enters the battlefield, draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 1
SVar:Rarity:Common

View File

@@ -62,9 +62,8 @@ class CardFactory_Auras {
//*************** START *********** START **************************
if (cardName.equals("Convincing Mirage") || cardName.equals("Phantasmal Terrain")
|| cardName.equals("Spreading Seas") || cardName.equals("Evil Presence")
|| cardName.equals("Lingering Mirage") || cardName.equals("Sea's Claim")
|| cardName.equals("Tainted Well"))
|| cardName.equals("Spreading Seas")
|| cardName.equals("Lingering Mirage") || cardName.equals("Sea's Claim"))
{
final String[] newType = new String[1];
@@ -85,10 +84,6 @@ class CardFactory_Auras {
|| card.getName().equals("Phantasmal Terrain"))
{
newType[0] = "Island";
} else if (card.getName().equals("Evil Presence")
|| card.getName().equals("Tainted Well"))
{
newType[0] = "Swamp";
} else if (card.getName().equals("Convincing Mirage")
|| card.getName().equals("Phantasmal Terrain"))
{
@@ -139,10 +134,6 @@ class CardFactory_Auras {
|| card.getName().equals("Sea's Claim"))
{
newType[0] = "Island";
} else if (card.getName().equals("Evil Presence")
|| card.getName().equals("Tainted Well"))
{
newType[0] = "Swamp";
} else if (card.getName().equals("Convincing Mirage")
|| card.getName().equals("Phantasmal Terrain"))
{