import { Card } from "../../../interfaces" import Set from "../SC2b" const card: Card = { set: Set, name: { 'zh-tw': "小箭雀" }, illustrator: "Midori Harada", category: "Pokemon", hp: 60, types: ["Colorless"], description: { 'zh-tw': "和人很親近,所以是易於訓練的寶可夢,但一旦進入戰鬥,就會變得非常兇猛。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "撞擊" }, damage: 20, cost: ["Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "D" } export default card