import { Card } from '../../../interfaces' import Set from '../Forbidden Light' const card: Card = { name: { en: "Inkay", fr: "Sepiatop", }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 686, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Hypnosis", fr: "Hypnose", }, effect: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card