import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Bounsweet", fr: "Croquine" }, illustrator: "MAHOU", rarity: "Common", category: "Pokemon", hp: 60, types: ["Grass"], attacks: [{ name: { en: "Splash", fr: "Trempette" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fire", value: "×2" }], retreat: 1, regulationMark: "E" } export default card