[MIC] Implemented Cleaver Skaab

This commit is contained in:
Evan Kranzler 2021-09-18 16:58:59 -04:00
parent 3d0571d5e9
commit affd33c23b
4 changed files with 107 additions and 1 deletions

View file

@ -33,7 +33,7 @@ public class CreateTokenCopyTargetEffect extends OneShotEffect {
private final UUID playerId;
private final CardType additionalCardType;
private boolean hasHaste;
private final int number;
private int number;
private final List<Permanent> addedTokenPermanents;
private SubType additionalSubType;
private SubType onlySubType;
@ -302,6 +302,10 @@ public class CreateTokenCopyTargetEffect extends OneShotEffect {
this.startingLoyalty = startingLoyalty;
}
public void setNumber(int number) {
this.number = number;
}
public void exileTokensCreatedAtNextEndStep(Game game, Ability source) {
for (Permanent tokenPermanent : addedTokenPermanents) {
ExileTargetEffect exileEffect = new ExileTargetEffect(null, "", Zone.BATTLEFIELD);