import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Squirtle", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 7, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Bubble", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Withdraw", }, effect: { en: "Flip a coin. If heads, prevent all damage done to Squirtle during your opponent's next turn. (Any other effects of attacks still happen.)", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card