[J22] Implement Coalborn Entity

This commit is contained in:
Evan Kranzler 2022-11-23 20:14:29 -05:00
parent dd9a07592a
commit 23bd6f6919
3 changed files with 64 additions and 1 deletions

View file

@ -23,13 +23,17 @@ public class TargetPermanentOrPlayer extends TargetImpl {
protected FilterPermanentOrPlayer filter;
public TargetPermanentOrPlayer() {
this(1, 1);
this(1);
}
public TargetPermanentOrPlayer(int numTargets) {
this(numTargets, numTargets);
}
public TargetPermanentOrPlayer(FilterPermanentOrPlayer filter) {
this(1, 1, filter, false);
}
public TargetPermanentOrPlayer(int minNumTargets, int maxNumTargets) {
this(minNumTargets, maxNumTargets, false);
}