import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Baltoy", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 343, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", }, damage: 10, }, { cost: [ "Colorless", ], name: { en: "Mud Slap", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card