mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
added SP rarity type
This commit is contained in:
parent
eefedc03b9
commit
6f43681f6c
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue