import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Misty's Tentacool", }, illustrator: "Ken Sugimori", rarity: "Rare Holo", category: "Pokemon", set: Set, dexId: [ 72, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Mysterious Light", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Jellyfish Pod", }, effect: { en: "Search your deck for any number of Pokémon named Tentacool, Tentacruel, Misty's Tentacool, or Misty's Tentacruel. Show those cards to your opponent, then put them into your hand. Shuffle your deck afterward.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card