import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "浮潛鼬" }, illustrator: "AKIRA EGAWA", category: "Pokemon", hp: 110, types: ["Water"], stage: "Stage1", attacks: [{ name: { 'zh-tw': "衝浪" }, damage: 50, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "E" } export default card