import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Feebas", fr: "Barpau", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 349, ], hp: 30, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Float On", fr: "Flottaison", }, effect: { en: "Flip a coin. If tails, this Pokémon does 10 damage to itself.", fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige 10 dégâts.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card