1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

63
data-asia/SV/SV10/027.ts Normal file
View File

@ -0,0 +1,63 @@
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