import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Blastoise", }, illustrator: "Hiromichi Sugiyama", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 9, ], hp: 100, types: [ "Water", ], evolveFrom: { en: "Wartortle", }, stage: "Stage2", attacks: [ { cost: [ "Water", ], name: { en: "Bubble", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Double Cannon", }, effect: { en: "Flip 2 coins. This attack does 40 damage times the number of heads.", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card