import { Card } from "../../../interfaces" import Set from "../SVD" const card: Card = { set: Set, name: { 'zh-tw': "三海地鼠" }, illustrator: "Akira Komayama", category: "Pokemon", hp: 90, types: ["Water"], description: { 'zh-tw': "有別於外表,性格非常粗暴。會用長長的身體勒緊獵物, 然後拖進自己的巢穴裡。" }, stage: "Stage1", attacks: [{ name: { 'zh-tw': "纏繞榨取" }, effect: { 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" }, damage: 50, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "G" } export default card