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