mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
54 lines
939 B
TypeScript
54 lines
939 B
TypeScript
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 |