- 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

@@ -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();
}
}