import { Card } from '../../../interfaces' import Set from '../Ancient Origins' const card: Card = { name: { en: "Sliggoo", fr: "Colimucus", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 705, ], hp: 70, types: [ "Dragon", ], evolveFrom: { en: "Goomy", fr: "Mucuscule", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Bubble", fr: "Écume", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }, { cost: [ "Water", "Fairy", ], name: { en: "Melt", fr: "Dissolution", }, damage: 20, }, ], weaknesses: [ { type: "Fairy", value: "×2" }, ], retreat: 3, } export default card