import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Froakie", fr: "Grenousse", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 656, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", fr: "Écras'Face", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card