import { Card } from "../../../interfaces" import Set from "../SCD" const card: Card = { set: Set, name: { 'zh-tw': "天蠍" }, illustrator: "Misa Tsutsui", category: "Pokemon", hp: 70, types: ["Fighting"], stage: "Basic", attacks: [{ name: { 'zh-tw': "毒針" }, effect: { 'zh-tw': "將對手的戰鬥寶可夢【中毒】。" }, cost: ["Fighting"] }, { name: { 'zh-tw': "突刺" }, damage: 30, cost: ["Fighting", "Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 1, regulationMark: "E" } export default card