[BRO] Implemented Thran Spider

This commit is contained in:
Evan Kranzler 2022-10-31 09:44:25 -04:00
parent 41f7401243
commit b245dd036f
3 changed files with 72 additions and 1 deletions

View file

@ -27,7 +27,11 @@ public class CreateTokenTargetEffect extends OneShotEffect {
}
public CreateTokenTargetEffect(Token token, int amount) {
this(token, StaticValue.get(amount));
this(token, amount, false);
}
public CreateTokenTargetEffect(Token token, int amount, boolean tapped) {
this(token, StaticValue.get(amount), tapped, false);
}
public CreateTokenTargetEffect(Token token, DynamicValue amount) {