import { Card } from "../../../interfaces" import Set from "../S-P" const card: Card = { set: Set, name: { 'zh-tw': "淚眼蜥" }, illustrator: "Akira Komayama", category: "Pokemon", hp: 60, types: ["Water"], description: { 'zh-tw': "害怕時流下的淚水中含有相當於100顆洋蔥的催淚成分,能讓對手淚流不止。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "叫聲" }, effect: { 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-20」點。" }, cost: ["Colorless"] }, { name: { 'zh-tw': "潑水" }, damage: 10, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1, regulationMark: "D" } export default card