import { Card } from '../../../interfaces' import Set from '../Noble Victories' const card: Card = { name: { en: "Frillish", fr: "Viskuse", es: "Frillish", it: "Frillish", pt: "Frillish", de: "Quabbel" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 592, ], hp: 80, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Rain Splash", fr: "Pluie Éclaboussante", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 2, } export default card