1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

63 lines
1.4 KiB
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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴雪王",
'zh-cn': "暴雪王",
ja: "ユキノオー"
},
illustrator: "kamonabe",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "在萬年積雪的山脈 靜靜生活。會引發 暴風雪來隱藏自己。",
'zh-cn': "在萬年積雪的山脈 靜靜生活。會引發 暴風雪來隱藏自己。",
ja: "万年雪が 積もる 山脈で 静かに 暮らす。 ブリザードを 発生させて 姿を 隠す。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "撞倒",
'zh-cn': "撞倒",
ja: "つきたおし"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "結冰木",
'zh-cn': "結冰木",
ja: "ひょうけつウッド"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有2個以上【草】能量則增加120點傷害。",
'zh-cn': "若這隻寶可夢身上附有2個以上【草】能量則增加120點傷害。",
ja: "このポケモンにエネルギーが2個以上ついているなら、120ダメージ追加。"
},
damage: "120",
cost: ["Water", "Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 4,
regulationMark: "I",
rarity: "Uncommon",
dexId: [460]
}
export default card