import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Squirtle", fr: "Carapuce", es: "Squirtle", it: "Squirtle", pt: "Squirtle", de: "Schiggy" }, illustrator: "Naoki Saito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 7, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card