import { Card } from "../../../interfaces" import Set from "../SVD" const card: Card = { set: Set, name: { 'zh-tw': "榛果球" }, illustrator: "Shigenori Negishi", category: "Pokemon", hp: 60, types: ["Grass"], description: { 'zh-tw': "口中吐出的液體是牠用來貼上樹皮的膠水, 一接觸到空氣就會凝固。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "防守壓制" }, effect: { 'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。" }, damage: 10, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fire", value: "×2" }], retreat: 2, regulationMark: "G" } export default card