import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "海刺龍" }, illustrator: "313", category: "Pokemon", hp: 90, types: ["Water"], stage: "Stage1", attacks: [{ name: { 'zh-tw': "水槍" }, damage: 40, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "E" } export default card