mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
67 lines
822 B
TypeScript
67 lines
822 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: "neo1-110",
|
|
localId: 110,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Psychic Energy",
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo1/110/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo1/110/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 11,
|
|
name: "Keiji Kinebuchi"
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.ENERGY,
|
|
|
|
set: {
|
|
name: "Neo Genesis",
|
|
code: "neo1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|