1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

50 lines
795 B
TypeScript
Raw 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "滋汁鼴"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 50,
types: ["Darkness"],
description: {
'zh-tw': "雖然性情溫馴,但一旦被激怒,就會用滲入了毒素的尖銳門牙 過來咬住你,讓你全身麻痺不已。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "搜尋樹果"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡在給對手看過後加入手牌。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "抓"
},
damage: 10,
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card