import { Card } from "../../../interfaces" import Set from "../SV-P" const card: Card = { set: Set, name: { 'zh-tw': "茸茸羊" }, illustrator: "313", category: "Pokemon", hp: 90, types: ["Lightning"], description: { 'zh-tw': "儲存了過多電力的結果, 造成牠身體表面有些部分 連胎毛都長不出來。" }, stage: "Stage1", attacks: [{ name: { 'zh-tw': "劈哩啪啦" }, damage: 30, cost: ["Lightning"] }, { name: { 'zh-tw': "激電流" }, effect: { 'zh-tw': "選擇1個這隻寶可夢身上附加的能量,將其丟棄。" }, damage: 80, cost: ["Lightning", "Colorless", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 2, regulationMark: "G" } export default card