import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "拳拳蛸" }, illustrator: "Yuka Morii", category: "Pokemon", hp: 70, types: ["Fighting"], stage: "Basic", attacks: [{ name: { 'zh-tw': "敲擊" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "E" } export default card