import { Card } from '../../../interfaces' import Set from '../Team Magma vs Team Aqua' const card: Card = { name: { en: "Team Magma's Baltoy", }, illustrator: "Atsuko Ujiie", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 343, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Double Spin", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card