-Reverted hasSecondStrike() for now, even though I'm still not sure why it doesn't work.

-Fixed some issues with Planeswalker's abilities.
-Added a few Ally cards.
-Fixed Ashes to Ashes.
-Fixed some issues with Archon of Justice.
This commit is contained in:
jendave
2011-08-06 02:48:06 +00:00
parent c7e29fa4b0
commit e35672b584
8 changed files with 219 additions and 37 deletions

View File

@@ -5237,8 +5237,8 @@ public class CardFactory implements NewConstants {
public void selectButtonCancel() {stop();}
public void selectCard(Card c, PlayerZone zone)
{
if(! CardUtil.getColor(c).equals(Constant.Color.Colorless) &&
c.isCreature() &&
if(! c.isArtifact() &&
c.isCreature() &&
zone.is(Constant.Zone.Play))
{
target[index[0]] = c;
@@ -16577,14 +16577,14 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
card.clearSpellAbility();
card.addSpellAbility(spell);
}//*************** END ************ END **************************
//*************** START *********** START **************************
//*************** START *********** START **************************
else if (cardName.equals("Door to Nothingness"))
{
Ability_Tap ab1 = new Ability_Tap(card, "G G R R B B U U W W")
{
/**
*
*/
private static final long serialVersionUID = 6665327569823149191L;
public void resolve() {
AllZone.GameAction.getPlayerLife(getTargetPlayer()).setLife(0);