* Vintage Masters - Added set and already implemented cards.

This commit is contained in:
LevelX2 2014-06-25 10:37:07 +02:00
parent 513b012dc0
commit c519814f03
203 changed files with 10569 additions and 98 deletions

View file

@ -6,6 +6,7 @@ package mage.constants;
*/
public enum CardType {
ARTIFACT ("Artifact"),
CONSPIRACY ("Conspiracy"),
CREATURE ("Creature"),
ENCHANTMENT ("Enchantment"),
INSTANT ("Instant"),
@ -14,7 +15,7 @@ public enum CardType {
SORCERY ("Sorcery"),
TRIBAL ("Tribal");
private String text;
private final String text;
CardType(String text) {
this.text = text;

View file

@ -12,12 +12,13 @@ public enum Rarity {
UNCOMMON ("Uncommon", "uncommon", "U", 2),
RARE ("Rare", "rare", "R", 3),
MYTHIC ("Mythic", "mythic", "M", 3),
SPECIAL ("Special", "special", "SP", 3);
SPECIAL ("Special", "special", "Special", 3),
BONUS ("Bonus", "bonus", "Bonus", 3);
private String text;
private String symbolCode;
private String code;
private int rating;
private final String text;
private final String symbolCode;
private final String code;
private final int rating;
Rarity(String text, String symbolCode, String code, int rating) {
this.text = text;