mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
58 lines
1.1 KiB
TypeScript
58 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S9"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "凍原熊",
|
||
ja: "ツンベアー"
|
||
},
|
||
|
||
illustrator: "Rianti Hidayat",
|
||
category: "Pokemon",
|
||
hp: 140,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
'zh-tw': "吐出的氣息凍結而成的冰牙比鋼鐵還硬。為了尋找食物, 會在寒冷的海裡游動徘徊。",
|
||
ja: "吐息を 凍らせ つくった キバは 鋼より 硬い。 寒い 海を エサを 探して 泳ぎまわる。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "絕對零度",
|
||
ja: "ぜったいれいど"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法使用招式。",
|
||
ja: "次の相手の番、このワザを受けたポケモンは、ワザが使えない。"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Water", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "冰霜粉碎",
|
||
ja: "フロストスマッシュ"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Water", "Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "F",
|
||
rarity: "Uncommon",
|
||
dexId: [614]
|
||
}
|
||
|
||
export default card |