mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
65 lines
798 B
TypeScript
65 lines
798 B
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "base3-60",
|
|
localId: 60,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Gambler",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/base/base3/60/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/base/base3/60/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [],
|
|
|
|
illustrator: {
|
|
id: 11,
|
|
name: "Keiji Kinebuchi"
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set: {
|
|
name: "Fossil",
|
|
code: "base3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|