- Added Time Reversal.

This commit is contained in:
jendave
2011-08-06 05:13:41 +00:00
parent f969e942a8
commit bedbe67eff
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
Time Reversal
3 U U
Sorcery
Each player shuffles his or her hand and graveyard into his or her library, then draws seven cards. Exile Time Reversal.
Primeval Titan
4 G G
Creature Giant

View File

@@ -4828,7 +4828,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Timetwister")) {
else if(cardName.equals("Timetwister") || cardName.equals("Time Reversal")) {
final SpellAbility spell = new Spell(card) {
private static final long serialVersionUID = 505983020365091226L;
@@ -4836,6 +4836,9 @@ public class CardFactory implements NewConstants {
public void resolve() {
discardDraw7(Constant.Player.Human);
discardDraw7(Constant.Player.Computer);
if (cardName.equals("Time Reversal"))
AllZone.GameAction.removeFromGame(card);
}//resolve()
void discardDraw7(String player) {