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