import { Card } from "../../../interfaces" import Set from "../S7R" const card: Card = { set: Set, name: { 'zh-tw': "童偶熊" }, illustrator: "OKACHEKE", category: "Pokemon", hp: 70, types: ["Fighting"], description: { 'zh-tw': "為了保護自己的身體而胡亂揮舞前腳的樣子雖然可愛,威力卻大到能將大樹折斷。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "敲擊" }, damage: 10, cost: ["Colorless"] }, { name: { 'zh-tw': "滾動" }, damage: 30, cost: ["Fighting", "Colorless"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "E" } export default card