mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
51 lines
780 B
TypeScript
51 lines
780 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S7R"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "穿著熊"
|
||
},
|
||
|
||
illustrator: "Shigenori Negishi",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Fighting"],
|
||
|
||
description: {
|
||
'zh-tw': "會用令格鬥家都無地自容的技術把逮住的獵物夾在腋下,帶回自己的住處。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "轉轉拳"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Fighting", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "怪力"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Fighting", "Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |