forked from External/mage
21 lines
No EOL
363 B
Java
21 lines
No EOL
363 B
Java
package mage.counters.common;
|
|
|
|
import mage.counters.Counter;
|
|
|
|
/**
|
|
* Fate counter.
|
|
*
|
|
* @author nantuko
|
|
*/
|
|
public class FateCounter extends Counter<FateCounter> {
|
|
|
|
public FateCounter() {
|
|
super("Fate");
|
|
this.count = 1;
|
|
}
|
|
|
|
public FateCounter(int amount) {
|
|
super("Fate");
|
|
this.count = amount;
|
|
}
|
|
} |