import { Card } from "../../../interfaces" import Set from "../SCD" const card: Card = { set: Set, name: { 'zh-tw': "小拳石" }, illustrator: "OKACHEKE", category: "Pokemon", hp: 80, types: ["Fighting"], stage: "Basic", attacks: [{ name: { 'zh-tw': "滾動" }, damage: 10, cost: ["Fighting"] }, { name: { 'zh-tw': "打擊" }, damage: 20, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Grass", value: "×2" }], retreat: 3, regulationMark: "E" } export default card