import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Larméléon", en: "Sobble" }, illustrator: "Saya Tsuruta", rarity: "Ultra Rare", category: "Pokemon", hp: 60, types: ["Water"], attacks: [{ name: { fr: "Pistolet à O", en: "Water Gun" }, damage: 20, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "D" } export default card