1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/S/SK/004.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SK"
const card: Card = {
set: Set,
name: {
'zh-tw': "雪妖女",
ja: "ユキメノコ"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "會吐出零下50度的冷氣凍住獵物,並把牠們帶回自己的巢穴,整齊地擺成一排。",
ja: "マイナス50度の 冷気を 吐き 凍らせた 獲物を すみかに 持ち帰り きれいに 並べる。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "降霜",
ja: "しもふらし"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。從自己的棄牌區選擇1張【水】能量卡附於自己的寶可夢身上。",
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。自分のトラッシュからエネルギーを1枚選び、自分のポケモンにつける。"
}
}],
attacks: [{
name: {
'zh-tw': "水晶吐息",
ja: "クリスタルブレス"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
ja: "次の自分の番、このポケモンはワザが使えない。"
},
damage: 90,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
dexId: [478]
}
export default card