mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-07-15 11:19:51 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
97acf4287f
|
|||
7f0e95d574
|
|||
b7d8fac835
|
@ -25,7 +25,7 @@ export interface CardSingle {
|
|||||||
low: string
|
low: string
|
||||||
high?: string
|
high?: string
|
||||||
}
|
}
|
||||||
tags: Array<TagSimple>
|
tags?: Array<TagSimple>
|
||||||
illustrator?: IllustratorSimple
|
illustrator?: IllustratorSimple
|
||||||
rarity: RaritySimple
|
rarity: RaritySimple
|
||||||
category: CategorySimple
|
category: CategorySimple
|
||||||
@ -89,7 +89,7 @@ type Card = {
|
|||||||
|
|
||||||
evolveFrom?: LangList<string>
|
evolveFrom?: LangList<string>
|
||||||
evolveTo?: Array<LangList<string>>
|
evolveTo?: Array<LangList<string>>
|
||||||
tags: Array<Tag> // made after
|
tags?: Array<Tag> // made after
|
||||||
illustrator?: string
|
illustrator?: string
|
||||||
|
|
||||||
abilities?: Array<Ability>
|
abilities?: Array<Ability>
|
||||||
|
@ -9,7 +9,9 @@ export enum Rarity {
|
|||||||
|
|
||||||
// Both RAREULTRA and ULTRARARE are the same until I know the correct name
|
// Both RAREULTRA and ULTRARARE are the same until I know the correct name
|
||||||
RAREULTRA = 4,
|
RAREULTRA = 4,
|
||||||
ULTRARARE = 4
|
ULTRARARE = 4,
|
||||||
|
|
||||||
|
AMAZING,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tcgdex/sdk",
|
"name": "@tcgdex/sdk",
|
||||||
"version": "1.6.1",
|
"version": "1.7.0",
|
||||||
"main": "./tcgdex.js",
|
"main": "./tcgdex.js",
|
||||||
"types": "./tcgdex.d.ts",
|
"types": "./tcgdex.d.ts",
|
||||||
"repository": "https://github.com/tcgdex/javascript-sdk.git",
|
"repository": "https://github.com/tcgdex/javascript-sdk.git",
|
||||||
|
Reference in New Issue
Block a user