1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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

54
data-asia/S/S6H/021.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "雪妖女"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "會吐出零下50度的冷氣凍住獵物,並把牠們帶回自己的巢穴,整齊地擺成一排。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "天狗再見"
},
effect: {
'zh-tw': "將身上放置有傷害指示物的對手的戰鬥寶可夢與附加的卡,全部放回對手的手牌。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "寒冬旋風"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 130,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card