import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Skwovet", fr: "Rongourmand" }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", fr: "Morsure" }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, hp: 70, types: ["Colorless"] } export default card