mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[J22] Implement Coalborn Entity
This commit is contained in:
parent
dd9a07592a
commit
23bd6f6919
3 changed files with 64 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue