import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Embrochet", en: "Arrokuda" }, illustrator: "Shigenori Negishi", rarity: "Ultra Rare", category: "Pokemon", hp: 60, types: ["Water"], attacks: [{ name: { fr: "Pluie Éclaboussante", en: "Rain Splash" }, damage: 20, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "D" } export default card