mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- 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:
@@ -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());
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user