[BRO] Implemented Splitting the Powerstone

This commit is contained in:
Evan Kranzler 2022-10-28 08:25:18 -04:00
parent acf140193f
commit 59afefd527
4 changed files with 71 additions and 3 deletions

View file

@ -43,6 +43,10 @@ public class CreateTokenEffect extends OneShotEffect {
this(token, amount, false, false);
}
public CreateTokenEffect(Token token, int amount, boolean tapped) {
this(token, amount, tapped, false);
}
public CreateTokenEffect(Token token, int amount, boolean tapped, boolean attacking) {
this(token, StaticValue.get(amount), tapped, attacking);
}