Updated Rarities and tags

Fixes #3

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-05-01 23:59:58 +02:00
parent 771c5482af
commit fdc3074118
5 changed files with 35 additions and 55 deletions

View File

@ -2,29 +2,15 @@ import { List } from "./General"
import { CardSimple } from "./Card"
export enum Rarity {
Common,
Uncommon,
Rare,
NONE,
COMMON,
UNCOMMON,
RARE,
// Rare holo
RareHolo,
RareHoloEX,
RareHoloGX,
RareHoloLvX,
// Both RAREULTRA and ULTRARARE are the same until I know the correct name
RAREULTRA = 4,
ULTRARARE = 4
// Rare other
RareUltra,
RarePrime,
RareACE,
RareBREAK,
RareRainbow,
// Other
LEGEND,
// V & Vmax
RareV,
RareVMAX,
}
export default Rarity

View File

@ -65,6 +65,21 @@ enum Tag {
* Card is full art (art is not in the frame)
*/
ISFULLART,
/**
* PRIME Pokemon
*/
PRIME,
/**
* ACE Pokemon
*/
ACE,
/**
* Card is "rainbow"
*/
RAINBOW,
}
export default Tag