import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Cloyster", fr: "Crustabri", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 91, ], hp: 100, types: [ "Water", ], evolveFrom: { en: "Shellder", fr: "Kokiyas", }, stage: "Stage1", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Clamp Crush", fr: "Pince Broyeuse", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed and discard an Energy attached to that Pokémon.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé, et vous défaussez une Énergie lui étant attachée.", }, damage: 30, }, { cost: [ "Water", "Water", "Colorless", ], name: { en: "Spike Cannon", fr: "Picanon", }, effect: { en: "Flip 5 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 5 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, } export default card