import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Tentacool", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 72, ], hp: 30, types: [ "Water", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Cowardice", }, effect: { en: "At any time during your turn (before your attack), you may return Tentacool to your hand. (Discard all cards attached to Tentacool.) This power can't be used the turn you put Tentacool into play or if Tentacool is Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Water", ], name: { en: "Acid", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card