import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Feebas", fr: "Barpau", es: "Feebas", it: "Feebas", pt: "Feebas", de: "Barschwa" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 349, ], hp: 30, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Add-a-Dash", fr: "Rallonge", }, effect: { en: "Flip 2 coins. For each heads, draw a card.", fr: "Lancez 2 pièces. Pour chaque côté face, piochez une carte.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card