1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

51 lines
781 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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