import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Inkay", fr: "Sepiatop", es: "Inkay", it: "Inkay", pt: "Inkay", de: "Iscalar" }, illustrator: "5ban Graphics", rarity: "None", category: "Pokemon", set: Set, dexId: [ 686, ], hp: 60, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Peck", fr: "Picpic", es: "Picotazo", it: "Beccata", pt: "Bicada", de: "Schnabel" }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card