Added Bite of the Black Rose, Cackling Witch, and Orim's Touch. Added Serra Angel and Tariel, Reckoner of Souls FTV: Angels reprints. Removed unused imports on Voidmage Husher.

This commit is contained in:
fireshoes 2015-08-09 22:29:36 -05:00
parent 660f108a2a
commit 90c2ce6b2e
16 changed files with 658 additions and 13 deletions

View file

@ -34,6 +34,7 @@ package mage.counters;
* @author nantuko
*/
public enum CounterType {
AGE("age"),
AIM("aim"),
ARROWHEAD("arrowhead"),
@ -76,6 +77,7 @@ public enum CounterType {
POISON("poison"),
PRESSURE("pressure"),
QUEST("quest"),
SHIELD("shield"),
SLIME("slime"),
SPORE("spore"),
STORAGE("storage"),
@ -84,6 +86,7 @@ public enum CounterType {
TIME("time"),
TOWER("tower"),
VELOCITY("velocity"),
VERSE("verse"),
VILE("vile"),
WISH("wish");
@ -112,7 +115,8 @@ public enum CounterType {
}
/**
* Create instance of counter type with defined amount of counters of the given type.
* Create instance of counter type with defined amount of counters of the
* given type.
*
* @param amount amount of counters of the given type.
* @return
@ -129,4 +133,4 @@ public enum CounterType {
return new Counter(name, amount);
}
}
}
}