forked from External/mage
[MRD] Oblivion Stone
This commit is contained in:
parent
106e26a4a2
commit
ac70150512
3 changed files with 132 additions and 0 deletions
21
Mage/src/mage/counters/common/FateCounter.java
Normal file
21
Mage/src/mage/counters/common/FateCounter.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue