import { Card } from '../../../interfaces' import Set from '../Power Keepers' const card: Card = { name: { en: "Baltoy", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 343, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Psybeam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Spinning Attack", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card