mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
32 lines
334 B
TypeScript
32 lines
334 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Ruby & Sapphire'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Psychic Energy",
|
|
fr: "Énergie Psy",
|
|
de: "Psychoenergie"
|
|
},
|
|
illustrator: undefined,
|
|
rarity: "Common",
|
|
category: "Energy",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
energyType: "Normal",
|
|
}
|
|
|
|
export default card
|