import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Rongourmand", en: "Skwovet" }, illustrator: "Naoki Saito", rarity: "Ultra Rare", category: "Pokemon", hp: 70, types: ["Colorless"], attacks: [{ name: { fr: "Charge", en: "Tackle" }, damage: 10, cost: ["Colorless"] }, { name: { fr: "Morsure", en: "Bite" }, damage: 20, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1, regulationMark: "D" } export default card