import { Card } from "../../../interfaces" import Set from "../SCD" const card: Card = { set: Set, name: { 'zh-tw': "燒火蚣" }, illustrator: "miki kudo", category: "Pokemon", hp: 80, types: ["Fire"], stage: "Basic", attacks: [{ name: { 'zh-tw': "咬" }, damage: 10, cost: ["Fire"] }, { name: { 'zh-tw': "火花" }, damage: 20, cost: ["Fire", "Colorless"] }], weaknesses: [{ type: "Water", value: "×2" }], retreat: 2, regulationMark: "E" } export default card