import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "可達鴨" }, illustrator: "OKACHEKE", category: "Pokemon", hp: 70, types: ["Water"], stage: "Basic", attacks: [{ name: { 'zh-tw': "潑水" }, damage: 10, cost: ["Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 2, regulationMark: "E" } export default card