mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
66 lines
818 B
TypeScript
66 lines
818 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: "base4-129",
|
|
localId: 129,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Psychic Energy",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/base/base4/129/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/base/base4/129/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 11,
|
|
name: "Keiji Kinebuchi"
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.ENERGY,
|
|
|
|
set: {
|
|
name: "Base Set 2",
|
|
code: "base4"
|
|
}
|
|
}
|
|
|
|
export default card
|