import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Finneon", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 456, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Elegant Swim", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Finneon during your opponent's next turn.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], } export default card