import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "六尾" }, illustrator: "Megumi Mizutani", category: "Pokemon", hp: 70, types: ["Fire"], stage: "Basic", attacks: [{ name: { 'zh-tw': "踢飛" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Water", value: "×2" }], retreat: 1, regulationMark: "E" } export default card