1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

52 lines
787 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "藏飽栗鼠V"
},
illustrator: "PLANETA Igarashi",
category: "Pokemon",
hp: 200,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "咬碎"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "跟斗重壓"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。"
},
damage: 180,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card