import { Card } from '../../../interfaces' import Set from '../Ancient Origins' const card: Card = { name: { en: "Baltoy", fr: "Balbuto", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 343, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Slap", fr: "Gifle", }, damage: 10, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Spinning Attack", fr: "Attaque Tournante", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card