import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Squirtle", fr: "Carapuce" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 7, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bite", fr: "Morsure" }, damage: 10, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Skull Bash", fr: "Coud'krane" }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card