import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Tentacool", fr: "Tentacool", }, illustrator: "Mizue", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 72, ], hp: 60, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Ancient Trait", name: { fr: "Régénération α", en: "α Recovery" }, effect: { fr: "Lorsque ce Pokémon est soigné, doublez la quantité de soins.", en: "When this Pokémon is healed, double the amount healed." }, }, ], attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Psyshot", fr: "Piqûre Psy", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card