import { Card } from "../../../interfaces" import Set from "../SC2D" const card: Card = { set: Set, name: { 'zh-tw': "稚山雀" }, illustrator: "Hitoshi Ariga", category: "Pokemon", hp: 60, types: ["Colorless"], description: { 'zh-tw': "性情勇敢,無論多強的敵人都勇於挑戰。即使在敵人的反擊中被打敗,也能從中得到鍛鍊。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "啄食" }, effect: { 'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」丟棄。" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "D" } export default card