import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "泥偶小人" }, illustrator: "313", category: "Pokemon", hp: 90, types: ["Psychic"], stage: "Basic", attacks: [{ name: { 'zh-tw': "拍擊" }, damage: 10, cost: ["Psychic"] }, { name: { 'zh-tw': "出拳" }, damage: 30, cost: ["Psychic", "Colorless"] }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 3, regulationMark: "E" } export default card