mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +00:00
33 lines
387 B
TypeScript
33 lines
387 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Sword & Shield'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Bede",
|
|
fr: "Travis",
|
|
},
|
|
illustrator: "Naoki Saito",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
en: "Attach a basic Energy card from your hand to 1 of your Benched Pokémon.",
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|