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

47 lines
675 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 "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "童偶熊"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "為了保護自己的身體而胡亂揮舞前腳的樣子雖然可愛,威力卻大到能將大樹折斷。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "敲擊"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "滾動"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card