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

52 lines
827 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 "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "圈圈熊"
},
illustrator: "Uta",
category: "Pokemon",
hp: 140,
types: ["Colorless"],
description: {
'zh-tw': "據說森林裡到處都是圈圈熊用來收集食物的大樹和小河。每天都會為了收集食物在森林裡走動。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "臂錘"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "利爪劈擊"
},
damage: 120,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card