import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Squirtle", fr: "Carapuce" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 7, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bubble", fr: "Écume" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, }, { cost: [ "Water", "Colorless", ], name: { en: "Smash Turn", fr: "Tour fracassant" }, effect: { en: "After your attack, you may switch Squirtle with 1 of your Benched Pokémon.", fr: "Après votre attaque, vous pouvez échanger Carapuce avec 1 des Pokémon de votre Banc." }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card