import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "烈雀" }, illustrator: "Sekio", category: "Pokemon", hp: 50, types: ["Colorless"], stage: "Basic", attacks: [{ name: { 'zh-tw': "啄" }, damage: 20, cost: ["Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "E" } export default card