import { Card } from "../../../interfaces" import Set from "../SC1D" const card: Card = { set: Set, name: { 'zh-tw': "拳拳蛸" }, illustrator: "Akira Komayama", category: "Pokemon", hp: 80, types: ["Fighting"], description: { 'zh-tw': "會為了尋找食物而登上陸地。擁有旺盛的好奇心,不管看到什麼,都會先用觸手打一打再說。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "出拳" }, damage: 50, cost: ["Fighting", "Fighting"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "D" } export default card