import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "催眠貘" }, illustrator: "nagimiso", category: "Pokemon", hp: 70, types: ["Psychic"], stage: "Basic", attacks: [{ name: { 'zh-tw': "拍擊" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 2, regulationMark: "E" } export default card