import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Baltoy", fr: "Balbuto" }, illustrator: "sui", rarity: "Common", category: "Pokemon", hp: 60, types: ["Psychic"], attacks: [{ name: { en: "Self-Destruct", fr: "Destruction" }, effect: { en: "This Pokémon also does 60 damage to itself.", fr: "Ce Pokémon s’inflige aussi 60 dégâts." }, damage: 60, cost: ["Psychic", "Colorless"] }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "E" } export default card