- Umezawa's Jitte is now Legendary, Auramancer a Wizard.

- Fixed an issue with the AI countering spells that trigger on cast (Sigil of the Empty Throne, Standstill, etc.).
- Timetwister shouldn't show up in both graveyards anymore.
- Figure of Destiny's 2nd and 3rd abilities should work if the creature has changeling, plus a check for the prerequisites is performed on resolution.
- Fixed Dryad Arbor / Mutavault / Mishra's Factory summoning sickness issues.
- Fixed Umara Raptor manacost.
- Added Vasiliy's Deck editor filter, and it works now! It's much easier to find cards now with the card text search feature.
- Fetching Bound in Silence with a rebel should be allowed to be attached to any creature.
- Demonic Tutor shouldn't be castable with other spells on the stack anymore.
- Added a property for token images (currently set to 'pics/tokens' - just set to 'pics' to keep it the way it always was).
This commit is contained in:
jendave
2011-08-06 02:51:31 +00:00
parent 6484ce036a
commit ca510897b0
19 changed files with 1227 additions and 90 deletions

View File

@@ -3307,8 +3307,10 @@ public class CardFactory implements NewConstants {
for(int i = 0; i < 7; i++)
AllZone.GameAction.drawCard(player);
library.remove(card);
grave.add(card);
if (card.getController().equals(player)) {
library.remove(card);
grave.add(card);
}
}
// Simple, If computer has two or less playable cards remaining in hand play Timetwister
@@ -5424,7 +5426,7 @@ public class CardFactory implements NewConstants {
PlayerZone library = AllZone.getZone(Constant.Zone.Library, card.getController());
return library.getCards().length != 0 && AllZone.Phase.getActivePlayer().equals(card.getController())
&& !AllZone.Phase.getPhase().equals("End of Turn");
&& !AllZone.Phase.getPhase().equals("End of Turn") && super.canPlay();
}
public boolean canPlayAI()
{