mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[TDC] Implement Redoubled Stormsinger
This commit is contained in:
parent
9e6987ab56
commit
f3ffca26fa
3 changed files with 103 additions and 8 deletions
|
|
@ -22,14 +22,7 @@ public class FixedTargets extends TargetPointerImpl {
|
|||
|
||||
final ArrayList<MageObjectReference> targets = new ArrayList<>();
|
||||
|
||||
public FixedTargets(List<Permanent> objects, Game game) {
|
||||
this(objects
|
||||
.stream()
|
||||
.map(o -> new MageObjectReference(o.getId(), game))
|
||||
.collect(Collectors.toList()));
|
||||
}
|
||||
|
||||
public FixedTargets(Set<Card> objects, Game game) {
|
||||
public FixedTargets(Collection<? extends Card> objects, Game game) {
|
||||
this(objects
|
||||
.stream()
|
||||
.map(o -> new MageObjectReference(o.getId(), game))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue