mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
30 lines
285 B
TypeScript
30 lines
285 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unseen Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Boost Energy",
|
|
},
|
|
illustrator: "Shin-ichi Yoshikawa",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
energyType: "Special",
|
|
}
|
|
|
|
export default card
|