import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "蓋蓋蟲" }, illustrator: "sowsow", category: "Pokemon", hp: 70, types: ["Grass"], stage: "Basic", attacks: [{ name: { 'zh-tw': "啄" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Fire", value: "×2" }], retreat: 1, regulationMark: "F" } export default card