- Made some changes to the Quest Deck Editor to make it more compatible with the new Look and Feel themes.

- Added Time Vault.
This commit is contained in:
jendave
2011-08-06 03:11:49 +00:00
parent 98e68707c9
commit 95298939de
6 changed files with 108 additions and 27 deletions

View File

@@ -16964,6 +16964,23 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if (cardName.equals("Time Vault"))
{
final Ability_Tap ability = new Ability_Tap(card)
{
private static final long serialVersionUID = 5784473766585071504L;
public void resolve() {
//System.out.println("Turn: " + AllZone.Phase.getTurn());
AllZone.Phase.addExtraTurn(card.getController());
}
};
card.addSpellAbility(ability);
ability.setStackDescription(card +" - take an extra turn after this one.");
ability.setDescription("Tap: Take an extra turn after this one.");
}//*************** END ************ END **************************
//*************** START *********** START **************************
if (cardName.equals("Celestial Purge"))
{
final Spell spell = new Spell(card)