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