- Fixed the setStackDescription() for Hatchlings.

- Replace "Computer is thinking" with "An error may have occurred. Please send the STACK REPORT to the Forge forum."
- Added the Eyeblight's Ending spell (uses spDestroyTgt keyword) to cards.txt and added the LQ pic url to cards-pictures.txt.
- Fixed Rappelling Scouts.
- Fixed Karmic Guide.
This commit is contained in:
jendave
2011-08-06 03:11:28 +00:00
parent c6e7e5c045
commit 2344572fa5
5 changed files with 17 additions and 10 deletions

View File

@@ -18,6 +18,7 @@ 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
eyeblights_ending.jpg http://www.wizards.com/global/images/magic/general/eyeblights_ending.jpg
collective_restraint.jpg http://www.wizards.com/global/images/magic/general/collective_restraint.jpg
force_spike.jpg http://www.wizards.com/global/images/magic/general/force_spike.jpg
daze.jpg http://www.wizards.com/global/images/magic/general/daze.jpg

View File

@@ -1,3 +1,9 @@
Eyeblight's Ending
2 B
Tribal Instant Elf
Destroy target non-Elf creature.
spDestroyTgt:Creature.nonElf
Collective Restraint
3 U
Enchantment
@@ -669,11 +675,11 @@ Creature Human Rebel Scout
no text
1/4
Flying
abPump 2 W:Protection from white.
abPump 2 W:Protection from blue.
abPump 2 W:Protection from black.
abPump 2 W:Protection from red.
abPump 2 W:Protection from green.
abPump 2 W:Protection from white
abPump 2 W:Protection from blue
abPump 2 W:Protection from black
abPump 2 W:Protection from red
abPump 2 W:Protection from green
Jodah's Avenger
5 U

View File

@@ -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: 10/01/01, SVN revision: 262
program/version=Forge -- official beta: 10/01/01, SVN revision: 264
tokens--file=AllTokens.txt

View File

@@ -124,7 +124,7 @@ public class CardFactory_Creatures {
AllZone.Stack.add(ability);
}
};
ability.setStackDescription(cardName + "enters the battlefield with four -1/-1 counters on it.");
ability.setStackDescription(cardName + " enters the battlefield with four -1/-1 counters on it.");
card.addComesIntoPlayCommand(intoPlay);
}//*************** END ************ END **************************
@@ -4300,7 +4300,7 @@ public class CardFactory_Creatures {
card.addComesIntoPlayCommand(intoPlay);
}//*************** END ************ END **************************
//*************** START *********** START **************************
//*************** START *********** START **************************
else if(cardName.equals("Karmic Guide"))
{
final SpellAbility ability = new Ability(card, "0")
@@ -4310,7 +4310,7 @@ public class CardFactory_Creatures {
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
if(AllZone.GameAction.isCardInZone(getTargetCard(), grave))
{
PlayerZone play = AllZone.getZone(Constant.Zone.Hand, card.getController());
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
grave.remove(getTargetCard());
play.add(getTargetCard());
}

View File

@@ -5,7 +5,7 @@ public class ComputerAI_StackNotEmpty extends Input
public void showMessage()
{
AllZone.Display.showMessage("Phase: " +AllZone.Phase.getPhase() +"\nComputer is thinking");
AllZone.Display.showMessage("Phase: " +AllZone.Phase.getPhase() + "\nAn error may have occurred. Please send the STACK REPORT to the Forge forum.");
AllZone.Computer.stackNotEmpty();
}
}