import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Raboot", fr: "Lapyro" }, illustrator: "Souichirou Gunjima", rarity: "Uncommon", category: "Pokemon", hp: 90, types: ["Fire"], evolveFrom: { en: "Scorbunny", fr: "Flambino" }, attacks: [{ name: { en: "Volley Kick", fr: "Reprise de Volée" }, effect: { en: "During your next turn, this Pokémon can’t attack.", fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer." }, damage: 60, cost: ["Fire", "Colorless"] }], weaknesses: [{ type: "Water", value: "×2" }], retreat: 1, regulationMark: "E" } export default card