added SP rarity type

This commit is contained in:
magenoxx 2012-07-29 10:32:08 +04:00
parent eefedc03b9
commit 6f43681f6c

View file

@ -96,7 +96,8 @@ public final class Constants {
COMMON ("Common", "common", "C", 1),
UNCOMMON ("Uncommon", "uncommon", "U", 2),
RARE ("Rare", "rare", "R", 3),
MYTHIC ("Mythic", "mythic", "M", 3);
MYTHIC ("Mythic", "mythic", "M", 3),
SPECIAL ("Special", "special", "SP", 3);
private String text;
private String symbolCode;
@ -343,7 +344,7 @@ public final class Constants {
Benefit(true),
Detriment(false),
Neutral(true),
Removal(true);
Removal(false);
private boolean good;
private boolean canTargetAll;