import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Scorbunny", fr: "Flambino", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Flare", fr: "Flamboiement", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card