mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Time Reversal.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user