import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Inkay", fr: "Sepiatop" }, illustrator: "Sanosuke Sakuma", rarity: "Common", category: "Pokemon", hp: 50, types: ["Psychic"], attacks: [{ name: { en: "Spinning Attack", fr: "Attaque Tournante" }, damage: 20, cost: ["Psychic"] }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "E" } export default card