diff --git a/Mage/src/mage/counters/common/DivineCounter.java b/Mage/src/mage/counters/common/DivineCounter.java new file mode 100644 index 00000000000..1e828d6f928 --- /dev/null +++ b/Mage/src/mage/counters/common/DivineCounter.java @@ -0,0 +1,21 @@ +package mage.counters.common; + +import mage.counters.Counter; + +/** + * Divine counter. + * + * @author Loki + */ +public class DivineCounter extends Counter { + + public DivineCounter() { + super("Divine"); + this.count = 1; + } + + public DivineCounter(int amount) { + super("Divine"); + this.count = amount; + } +} \ No newline at end of file