import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Scorbunny", fr: "Flambino", es: "Scorbunny", it: "Scorbunny", pt: "Scorbunny", de: "Hopplo" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", es: "Llama", it: "Fiammata", pt: "Chama", de: "Flackern" }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Flare", fr: "Flamboiement", es: "Placaje", it: "Azione", pt: "Investida", de: "Tackle" }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, description: { en: "A warm-up of running around gets fire energy coursing through this Pokémon's body. Once that happens, it's ready to fight at full power." }, dexId: [813] } export default card