import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Feebas", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 349, ], hp: 30, types: [ "Water", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Submerge", }, effect: { en: "As long as Feebas is on your Bench, prevent all damage done to Feebas by attacks (both yours and your opponent's).", }, }, ], attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Lunge", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card