mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Vintage Masters - Added set and already implemented cards.
This commit is contained in:
parent
513b012dc0
commit
c519814f03
203 changed files with 10569 additions and 98 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue