mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
35 lines
555 B
TypeScript
35 lines
555 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../EX trainer Kit 2 (Plusle)'
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Beldum"
|
|
},
|
|
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Call for Family"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward."
|
|
}
|
|
}, {
|
|
name: {
|
|
en: "Metal Ball"
|
|
},
|
|
|
|
effect: {
|
|
en: "Put 1 damage counter on the Defending Pokémon."
|
|
}
|
|
}]
|
|
}
|
|
|
|
export default card |