Implemented Zndrsplt's Judgment

This commit is contained in:
Evan Kranzler 2018-05-26 18:51:49 -04:00
parent 9fb0ee42ba
commit 21e834a5a1
3 changed files with 124 additions and 13 deletions

View file

@ -81,19 +81,7 @@ public class CreateTokenCopyTargetEffect extends OneShotEffect {
}
public CreateTokenCopyTargetEffect() {
super(Outcome.PutCreatureInPlay);
this.playerId = null;
this.additionalCardType = null;
this.addedTokenPermanents = new ArrayList<>();
this.number = 1;
this.additionalSubType = null;
this.onlySubType = null;
this.attackedPlayer = null;
this.tokenPower = Integer.MIN_VALUE;
this.tokenToughness = Integer.MIN_VALUE;
this.gainsFlying = false;
this.becomesArtifact = false;
this.color = null;
this((UUID) null);
}
public CreateTokenCopyTargetEffect(UUID playerId) {