Changed counter names to start with lower case.

This commit is contained in:
LevelX2 2014-11-14 15:11:20 +01:00
parent ac07076c69
commit b2e259422d
4 changed files with 52 additions and 51 deletions

View file

@ -34,54 +34,54 @@ package mage.counters;
* @author nantuko
*/
public enum CounterType {
AGE("Age"),
AIM("Aim"),
ARROWHEAD("Arrowhead"),
AWAKENING("Awakening"),
BLAZE("Blaze"),
BRIBERY("Bribery"),
CHARGE("Charge"),
DELAY("Delay"),
DEPLETION("Depletion"),
DESPAIR("Despair"),
DEVOTION("Devotion"),
DIVINITY("Divinity"),
DOOM("Doom"),
ELIXIR("Elixir"),
EON("Eon"),
EYEBALL("Eyeball"),
FADE("Fade"),
FATE("Fate"),
FEATHER("Feather"),
FUSE("Fuse"),
HATCHLING("Hatchling"),
HOOFPRINT("Hoofprint"),
ICE("Ice"),
KI("Ki"),
LEVEL("Level"),
LORE("Lore"),
LUCK("Luck"),
LOYALTY("Loyalty"),
AGE("age"),
AIM("aim"),
ARROWHEAD("arrowhead"),
AWAKENING("awakening"),
BLAZE("blaze"),
BRIBERY("bribery"),
CHARGE("charge"),
DELAY("delay"),
DEPLETION("depletion"),
DESPAIR("despair"),
DEVOTION("devotion"),
DIVINITY("divinity"),
DOOM("doom"),
ELIXIR("elixir"),
EON("eon"),
EYEBALL("eyeball"),
FADE("fade"),
FATE("fate"),
FEATHER("feather"),
FUSE("fuse"),
HATCHLING("hatchling"),
HOOFPRINT("hoofprint"),
ICE("ice"),
KI("ki"),
LEVEL("level"),
LORE("lore"),
LUCK("luck"),
LOYALTY("loyalty"),
M1M1(new BoostCounter(-1, -1).name),
MINING("Mining"),
MINING("mining"),
P1P1(new BoostCounter(1, 1).name),
PAGE("Page"),
PAIN("Pain"),
PETRIFICATION("Petrification"),
PLAGUE("Plague"),
POISON("Poison"),
PRESSURE("Pressure"),
QUEST("Quest"),
SLIME("Slime"),
SPORE("Spore"),
STORAGE("Storage"),
STUDY("Study"),
THEFT("Theft"),
TIME("Time"),
TOWER("Tower"),
VELOCITY("Velocity"),
VILE("Vile"),
WISH("Wish");
PAGE("page"),
PAIN("pain"),
PETRIFICATION("petrification"),
PLAGUE("plague"),
POISON("poison"),
PRESSURE("pressure"),
QUEST("quest"),
SLIME("slime"),
SPORE("spore"),
STORAGE("storage"),
STUDY("study"),
THEFT("theft"),
TIME("time"),
TOWER("tower"),
VELOCITY("velocity"),
VILE("vile"),
WISH("wish");
private final String name;