forked from External/mage
[MIC] Implemented Cleaver Skaab
This commit is contained in:
parent
3d0571d5e9
commit
affd33c23b
4 changed files with 107 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue