forked from External/mage
Implemented Triumph of Anax
This commit is contained in:
parent
82c7337ec3
commit
9a3d085a81
5 changed files with 103 additions and 22 deletions
|
|
@ -14,11 +14,10 @@ import java.util.Set;
|
|||
*/
|
||||
public class Effects extends ArrayList<Effect> {
|
||||
|
||||
public Effects() {
|
||||
}
|
||||
|
||||
public Effects(Effect effect) {
|
||||
this.add(effect);
|
||||
public Effects(Effect... effects) {
|
||||
for (Effect effect : effects) {
|
||||
this.add(effect);
|
||||
}
|
||||
}
|
||||
|
||||
public Effects(final Effects effects) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue