import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Tentacool", }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 72, ], hp: 50, types: [ "Water", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Freefloating", }, effect: { en: "If Tentacool has no Energy attached to it, Tentacool's Retreat Cost is 0.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Wrap", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card