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

55 lines
934 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "穿著熊"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "如果牠認定你是牠的夥伴,便會試著擁抱你來表示喜愛。但這會弄碎你的骨頭,非常危險。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "臂錘"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "一擲千斤"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢與附加的卡全部丟棄。"
},
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card