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:
@@ -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
|
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
|
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
|
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
|
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
|
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
|
daze.jpg http://www.wizards.com/global/images/magic/general/daze.jpg
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
Eyeblight's Ending
|
||||||
|
2 B
|
||||||
|
Tribal Instant Elf
|
||||||
|
Destroy target non-Elf creature.
|
||||||
|
spDestroyTgt:Creature.nonElf
|
||||||
|
|
||||||
Collective Restraint
|
Collective Restraint
|
||||||
3 U
|
3 U
|
||||||
Enchantment
|
Enchantment
|
||||||
@@ -669,11 +675,11 @@ Creature Human Rebel Scout
|
|||||||
no text
|
no text
|
||||||
1/4
|
1/4
|
||||||
Flying
|
Flying
|
||||||
abPump 2 W:Protection from white.
|
abPump 2 W:Protection from white
|
||||||
abPump 2 W:Protection from blue.
|
abPump 2 W:Protection from blue
|
||||||
abPump 2 W:Protection from black.
|
abPump 2 W:Protection from black
|
||||||
abPump 2 W:Protection from red.
|
abPump 2 W:Protection from red
|
||||||
abPump 2 W:Protection from green.
|
abPump 2 W:Protection from green
|
||||||
|
|
||||||
Jodah's Avenger
|
Jodah's Avenger
|
||||||
5 U
|
5 U
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
program/mail=mtgerror@yahoo.com
|
program/mail=mtgerror@yahoo.com
|
||||||
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
|
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
|
tokens--file=AllTokens.txt
|
||||||
|
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ public class CardFactory_Creatures {
|
|||||||
AllZone.Stack.add(ability);
|
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);
|
card.addComesIntoPlayCommand(intoPlay);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
@@ -4310,7 +4310,7 @@ public class CardFactory_Creatures {
|
|||||||
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
|
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
|
||||||
if(AllZone.GameAction.isCardInZone(getTargetCard(), grave))
|
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());
|
grave.remove(getTargetCard());
|
||||||
play.add(getTargetCard());
|
play.add(getTargetCard());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ public class ComputerAI_StackNotEmpty extends Input
|
|||||||
|
|
||||||
public void showMessage()
|
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();
|
AllZone.Computer.stackNotEmpty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user