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