1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

51 lines
835 B
TypeScript
Raw Permalink 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "雪妖女"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 90,
types: ["Water"],
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "降霜"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。從自己的棄牌區選擇1張【水】能量卡附於自己的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "水晶吐息"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 90,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card